@leafygreen-ui/icon 11.11.0-next.2 → 11.11.0-test.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -20
- package/dist/createIconComponent.d.ts +2 -1
- package/dist/createIconComponent.d.ts.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/glyphs/index.d.ts +423 -0
- package/dist/glyphs/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/Icon.story.tsx +33 -7
- package/src/createIconComponent.tsx +2 -1
- package/src/glyphs/index.ts +2 -2
- package/tsconfig.json +3 -4
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,6 @@
|
|
|
1
1
|
# @leafygreen-ui/icon
|
|
2
2
|
|
|
3
|
-
## 11.11.0-
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- 659251a3: Fixes back tsconfig build
|
|
8
|
-
- Updated dependencies [659251a3]
|
|
9
|
-
- @leafygreen-ui/lib@9.5.0-next.2
|
|
10
|
-
|
|
11
|
-
## 11.11.0-next.1
|
|
12
|
-
|
|
13
|
-
### Patch Changes
|
|
14
|
-
|
|
15
|
-
- 87a90f46: Update tsdoc gen and storybook
|
|
16
|
-
- Updated dependencies [87a90f46]
|
|
17
|
-
- @leafygreen-ui/lib@9.5.0-next.1
|
|
18
|
-
|
|
19
|
-
## 11.11.0-next.0
|
|
3
|
+
## 11.11.0-test.0
|
|
20
4
|
|
|
21
5
|
### Minor Changes
|
|
22
6
|
|
|
@@ -24,10 +8,9 @@
|
|
|
24
8
|
|
|
25
9
|
### Patch Changes
|
|
26
10
|
|
|
27
|
-
-
|
|
28
|
-
- Updated dependencies [00a2a281]
|
|
11
|
+
- b29f89fb: Updates components with tsconfig & storybook
|
|
29
12
|
- Updated dependencies [b70fe564]
|
|
30
|
-
- @leafygreen-ui/
|
|
13
|
+
- @leafygreen-ui/emotion@4.0.2-test.0
|
|
31
14
|
|
|
32
15
|
## 11.10.2
|
|
33
16
|
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { LGGlyph } from './types';
|
|
2
2
|
import { Size } from './glyphCommon';
|
|
3
|
+
import { GlyphName } from './glyphs';
|
|
3
4
|
export interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {
|
|
4
|
-
glyph: string;
|
|
5
|
+
glyph: GlyphName | string;
|
|
5
6
|
size?: Size | number;
|
|
6
7
|
}
|
|
7
8
|
declare type GlyphObject = Record<string, LGGlyph.Component>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createIconComponent.d.ts","sourceRoot":"","sources":["../src/createIconComponent.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAGrC,MAAM,WAAW,SAAU,SAAQ,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,MAAM,CAAC;IACrE,KAAK,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"createIconComponent.d.ts","sourceRoot":"","sources":["../src/createIconComponent.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAGrC,MAAM,WAAW,SAAU,SAAQ,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,MAAM,CAAC;IACrE,KAAK,EAAE,SAAS,GAAG,MAAM,CAAC;IAC1B,IAAI,CAAC,EAAE,IAAI,GAAG,MAAM,CAAC;CACtB;AAED,aAAK,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;AAErD;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,CAAC,SAAS,WAAW,GAAG,WAAW,EACrE,MAAM,EAAE,CAAC;yBAEyB,SAAS;;;;EAmB5C"}
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../src/glyphCommon.ts","../../src/createIconComponent.tsx","../../src/createGlyphComponent.tsx","../../src/glyphs/index.ts","../../src/isComponentGlyph.ts","../../src/Icon.tsx"],"sourcesContent":["export const Size = {\n Small: 'small',\n Default: 'default',\n Large: 'large',\n XLarge: 'xlarge',\n} as const;\n\nexport type Size = typeof Size[keyof typeof Size];\n\nexport const sizeMap: Record<Size, number> = {\n small: 14,\n default: 16,\n large: 20,\n xlarge: 24,\n} as const;\n\ninterface AccessibleFunctionParams {\n 'aria-labelledby'?: string;\n 'aria-label'?: string;\n title?: string | null;\n}\n\ntype AccessibleFunctionReturnType =\n | AccessibleFunctionParams\n | { 'aria-hidden': true; alt: '' };\n\nexport function generateAccessibleProps(\n role: 'img' | 'presentation',\n glyphName: string,\n {\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n title,\n }: AccessibleFunctionParams,\n): AccessibleFunctionReturnType {\n switch (role) {\n case 'img':\n if (!ariaLabel && !ariaLabelledby && !title) {\n return { 'aria-label': getGlyphLabel(glyphName) };\n }\n\n return {\n ['aria-labelledby']: ariaLabelledby,\n ['aria-label']: ariaLabel,\n title,\n };\n\n case 'presentation':\n return { 'aria-hidden': true, alt: '' };\n }\n}\n\nexport function getGlyphLabel(name: string) {\n return `${name.replace(/([a-z])([A-Z])/g, '$1 $2')} Icon`;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { LGGlyph } from './types';\nimport { Size } from './glyphCommon';\n\n// We omit size here because we map string values for size to numbers in this component.\nexport interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {\n glyph: string;\n size?: Size | number;\n}\n\ntype GlyphObject = Record<string, LGGlyph.Component>;\n\n/**\n * Returns a single component with a `glyph` prop to select the glyph\n * @param glyphs The set of glyphs\n * @returns Icon component\n */\nexport function createIconComponent<G extends GlyphObject = GlyphObject>(\n glyphs: G,\n) {\n const Icon = ({ glyph, ...rest }: IconProps) => {\n const SVGComponent = glyphs[glyph];\n SVGComponent.isGlyph = true;\n return <SVGComponent {...rest} />;\n };\n\n Icon.displayName = 'Icon';\n\n Icon.isGlyph = true;\n\n Icon.propTypes = {\n glyph: PropTypes.oneOf(Object.keys(glyphs)).isRequired,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n } as any;\n\n return Icon;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { SVGR, LGGlyph } from './types';\nimport { css, cx } from '@leafygreen-ui/emotion';\nimport { generateAccessibleProps, sizeMap, Size } from './glyphCommon';\n\n/**\n * Returns a single glyph component.\n * Process custom glyphs to ensure consistent behavior between custom and built-in icons\n * @param glyphName: string - the display name of the icon\n * @param Glyph: SVGR.Component - the SVG icon component\n * @returns LGGlyph.Component\n */\nexport function createGlyphComponent(\n glyphName: string,\n Glyph: SVGR.Component,\n): LGGlyph.Component {\n const GlyphComponent: LGGlyph.Component = ({\n className,\n size = Size.Default,\n fill,\n title,\n 'aria-labelledby': ariaLabelledby,\n 'aria-label': ariaLabel,\n role = 'img',\n ...rest\n }: LGGlyph.ComponentProps) => {\n const fillStyle = css`\n color: ${fill};\n `;\n\n const renderedSize = typeof size === 'number' ? size : sizeMap[size];\n\n if (!(role === 'img' || role === 'presentation')) {\n console.warn(\n \"Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'.\",\n );\n }\n\n return (\n <Glyph\n className={cx(\n {\n [fillStyle]: fill != null,\n },\n className,\n )}\n height={renderedSize}\n width={renderedSize}\n role={role}\n {...generateAccessibleProps(role, glyphName, {\n title,\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n })}\n {...rest}\n />\n );\n };\n\n GlyphComponent.displayName = glyphName;\n\n GlyphComponent.isGlyph = true;\n\n GlyphComponent.propTypes = {\n fill: PropTypes.string,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n className: PropTypes.string,\n };\n\n return GlyphComponent;\n}\n","import { createGlyphComponent } from '../createGlyphComponent';\nimport { LGGlyph } from '../types';\n\n// Glyphs\nimport ActivityFeed from './ActivityFeed.svg';\nimport AddFile from './AddFile.svg';\nimport Apps from './Apps.svg';\nimport Array from './Array.svg';\nimport ArrowDown from './ArrowDown.svg';\nimport ArrowLeft from './ArrowLeft.svg';\nimport ArrowRight from './ArrowRight.svg';\nimport ArrowUp from './ArrowUp.svg';\nimport Beaker from './Beaker.svg';\nimport Bell from './Bell.svg';\nimport Building from './Building.svg';\nimport Bulb from './Bulb.svg';\nimport Calendar from './Calendar.svg';\nimport CaretDown from './CaretDown.svg';\nimport CaretLeft from './CaretLeft.svg';\nimport CaretRight from './CaretRight.svg';\nimport CaretUp from './CaretUp.svg';\nimport Charts from './Charts.svg';\nimport Checkmark from './Checkmark.svg';\nimport CheckmarkWithCircle from './CheckmarkWithCircle.svg';\nimport ChevronDown from './ChevronDown.svg';\nimport ChevronLeft from './ChevronLeft.svg';\nimport ChevronRight from './ChevronRight.svg';\nimport ChevronUp from './ChevronUp.svg';\nimport Clock from './Clock.svg';\nimport ClockWithArrow from './ClockWithArrow.svg';\nimport Clone from './Clone.svg';\nimport Cloud from './Cloud.svg';\nimport Code from './Code.svg';\nimport Connect from './Connect.svg';\nimport Copy from './Copy.svg';\nimport CreditCard from './CreditCard.svg';\nimport CurlyBraces from './CurlyBraces.svg';\nimport Cursor from './Cursor.svg';\nimport Database from './Database.svg';\nimport Diagram from './Diagram.svg';\nimport Diagram2 from './Diagram2.svg';\nimport Diagram3 from './Diagram3.svg';\nimport Disconnect from './Disconnect.svg';\nimport Download from './Download.svg';\nimport Edit from './Edit.svg';\nimport Ellipsis from './Ellipsis.svg';\nimport Export from './Export.svg';\nimport Favorite from './Favorite.svg';\nimport File from './File.svg';\nimport Filter from './Filter.svg';\nimport FullScreenEnter from './FullScreenEnter.svg';\nimport FullScreenExit from './FullScreenExit.svg';\nimport Folder from './Folder.svg';\nimport GlobeAmericas from './GlobeAmericas.svg';\nimport GovernmentBuilding from './GovernmentBuilding.svg';\nimport Home from './Home.svg';\nimport ImportantWithCircle from './ImportantWithCircle.svg';\nimport InfoWithCircle from './InfoWithCircle.svg';\nimport InviteUser from './InviteUser.svg';\nimport Key from './Key.svg';\nimport Laptop from './Laptop.svg';\nimport Link from './Link.svg';\nimport Lock from './Lock.svg';\nimport MagnifyingGlass from './MagnifyingGlass.svg';\nimport Megaphone from './Megaphone.svg';\nimport Menu from './Menu.svg';\nimport Minus from './Minus.svg';\nimport NotAllowed from './NotAllowed.svg';\nimport Note from './Note.svg';\nimport OpenNewTab from './OpenNewTab.svg';\nimport Pause from './Pause.svg';\nimport Person from './Person.svg';\nimport PersonGroup from './PersonGroup.svg';\nimport PersonWithLock from './PersonWithLock.svg';\nimport Play from './Play.svg';\nimport Plus from './Plus.svg';\nimport PlusWithCircle from './PlusWithCircle.svg';\nimport QuestionMarkWithCircle from './QuestionMarkWithCircle.svg';\nimport Redo from './Redo.svg';\nimport Refresh from './Refresh.svg';\nimport Relationship from './Relationship.svg';\nimport ReplicaSet from './ReplicaSet.svg';\nimport Save from './Save.svg';\nimport Serverless from './Serverless.svg';\nimport ShardedCluster from './ShardedCluster.svg';\nimport Settings from './Settings.svg';\nimport Shell from './Shell.svg';\nimport SortAscending from './SortAscending.svg';\nimport SortDescending from './SortDescending.svg';\nimport SplitHorizontal from './SplitHorizontal.svg';\nimport SplitVertical from './SplitVertical.svg';\nimport Stitch from './Stitch.svg';\nimport Support from './Support.svg';\nimport Sweep from './Sweep.svg';\nimport Table from './Table.svg';\nimport TimeSeries from './TimeSeries.svg';\nimport Trash from './Trash.svg';\nimport Undo from './Undo.svg';\nimport University from './University.svg';\nimport Unlock from './Unlock.svg';\nimport Unsorted from './Unsorted.svg';\nimport UpDownCarets from './UpDownCarets.svg';\nimport Upload from './Upload.svg';\nimport VerticalEllipsis from './VerticalEllipsis.svg';\nimport Visibility from './Visibility.svg';\nimport VisibilityOff from './VisibilityOff.svg';\nimport Warning from './Warning.svg';\nimport X from './X.svg';\nimport XWithCircle from './XWithCircle.svg';\n\nconst _glyphs = {\n ActivityFeed,\n AddFile,\n Apps,\n Array,\n ArrowDown,\n ArrowLeft,\n ArrowRight,\n ArrowUp,\n Beaker,\n Bell,\n Building,\n Bulb,\n Calendar,\n CaretDown,\n CaretLeft,\n CaretRight,\n CaretUp,\n Charts,\n Checkmark,\n CheckmarkWithCircle,\n ChevronDown,\n ChevronLeft,\n ChevronRight,\n ChevronUp,\n Clock,\n ClockWithArrow,\n Clone,\n Cloud,\n Code,\n Connect,\n Copy,\n CreditCard,\n CurlyBraces,\n Cursor,\n Database,\n Diagram,\n Diagram2,\n Diagram3,\n Disconnect,\n Download,\n Edit,\n Ellipsis,\n Export,\n Favorite,\n File,\n Filter,\n FullScreenEnter,\n FullScreenExit,\n Folder,\n GlobeAmericas,\n GovernmentBuilding,\n Home,\n ImportantWithCircle,\n InfoWithCircle,\n InviteUser,\n Key,\n Laptop,\n Link,\n Lock,\n MagnifyingGlass,\n Megaphone,\n Menu,\n Minus,\n NotAllowed,\n Note,\n OpenNewTab,\n Pause,\n Person,\n PersonGroup,\n PersonWithLock,\n Play,\n Plus,\n PlusWithCircle,\n QuestionMarkWithCircle,\n Redo,\n Refresh,\n Relationship,\n ReplicaSet,\n Save,\n Serverless,\n ShardedCluster,\n Settings,\n Shell,\n SortAscending,\n SortDescending,\n SplitHorizontal,\n SplitVertical,\n Stitch,\n Support,\n Sweep,\n Table,\n TimeSeries,\n Trash,\n Undo,\n University,\n Unlock,\n Unsorted,\n UpDownCarets,\n Upload,\n VerticalEllipsis,\n Visibility,\n VisibilityOff,\n Warning,\n X,\n XWithCircle,\n} as const;\n\ntype GlyphName = keyof typeof _glyphs;\n\nconst glyphKeys = Object.keys(_glyphs) as Array<GlyphName>;\n\nexport const glyphs = glyphKeys.reduce((acc, name) => {\n acc[name] = createGlyphComponent(name, _glyphs[name]);\n\n return acc;\n}, {} as Record<GlyphName, LGGlyph.Component>);\n","import { ComponentType, isValidElement, ReactNode } from 'react';\nimport { LGGlyph } from './types';\n\ntype ExtendedComponentType = ComponentType<any> & {\n [key: string]: any;\n};\n/**\n * Helper type to check if element is a LeafyGreen UI Glyph\n * @internal\n */\nfunction isComponentGlyph(node: ReactNode): node is LGGlyph.Element;\nfunction isComponentGlyph(\n component: ExtendedComponentType,\n): component is LGGlyph.Component;\nfunction isComponentGlyph(\n child: ReactNode | ExtendedComponentType,\n): child is LGGlyph.Element | LGGlyph.Component {\n // If we're received a rendered component (i.e. ReactNode)\n if (isValidElement(child)) {\n return (\n child != null &&\n typeof child === 'object' &&\n 'type' in child &&\n (child.type as any).isGlyph === true\n );\n }\n\n // If we've recieved a component function\n return (\n child != null &&\n typeof child === 'function' &&\n 'isGlyph' in child &&\n child.isGlyph === true\n );\n}\n\nexport { isComponentGlyph };\n","import { createIconComponent } from './createIconComponent';\nimport { glyphs } from './glyphs';\n\nexport const Icon = createIconComponent(glyphs);\n"],"names":["Size","Small","Default","Large","XLarge","sizeMap","small","default","large","xlarge","_templateObject","_excluded","createIconComponent","glyphs","Icon","_ref","glyph","rest","_objectWithoutProperties","SVGComponent","isGlyph","___EmotionJSX","displayName","propTypes","PropTypes","oneOf","Object","keys","isRequired","size","oneOfType","values","number","createGlyphComponent","glyphName","Glyph","GlyphComponent","_generateAccessiblePr","className","_ref$size","fill","title","ariaLabelledby","ariaLabel","_ref$role","role","fillStyle","css","renderedSize","console","warn","_extends","cx","_defineProperty","height","width","_ref2","name","concat","replace","alt","generateAccessibleProps","string","_glyphs","ActivityFeed","AddFile","Apps","Array","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Beaker","Bell","Building","Bulb","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","Charts","Checkmark","CheckmarkWithCircle","ChevronDown","ChevronLeft","ChevronRight","ChevronUp","Clock","ClockWithArrow","Clone","Cloud","Code","Connect","Copy","CreditCard","CurlyBraces","Cursor","Database","Diagram","Diagram2","Diagram3","Disconnect","Download","Edit","Ellipsis","Export","Favorite","File","Filter","FullScreenEnter","FullScreenExit","Folder","GlobeAmericas","GovernmentBuilding","Home","ImportantWithCircle","InfoWithCircle","InviteUser","Key","Laptop","Link","Lock","MagnifyingGlass","Megaphone","Menu","Minus","NotAllowed","Note","OpenNewTab","Pause","Person","PersonGroup","PersonWithLock","Play","Plus","PlusWithCircle","QuestionMarkWithCircle","Redo","Refresh","Relationship","ReplicaSet","Save","Serverless","ShardedCluster","Settings","Shell","SortAscending","SortDescending","SplitHorizontal","SplitVertical","Stitch","Support","Sweep","Table","TimeSeries","Trash","Undo","University","Unlock","Unsorted","UpDownCarets","Upload","VerticalEllipsis","Visibility","VisibilityOff","Warning","X","XWithCircle","reduce","acc","isComponentGlyph","child","isValidElement","_typeof","type"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/glyphCommon.ts","../../src/createIconComponent.tsx","../../src/createGlyphComponent.tsx","../../src/glyphs/index.ts","../../src/isComponentGlyph.ts","../../src/Icon.tsx"],"sourcesContent":["export const Size = {\n Small: 'small',\n Default: 'default',\n Large: 'large',\n XLarge: 'xlarge',\n} as const;\n\nexport type Size = typeof Size[keyof typeof Size];\n\nexport const sizeMap: Record<Size, number> = {\n small: 14,\n default: 16,\n large: 20,\n xlarge: 24,\n} as const;\n\ninterface AccessibleFunctionParams {\n 'aria-labelledby'?: string;\n 'aria-label'?: string;\n title?: string | null;\n}\n\ntype AccessibleFunctionReturnType =\n | AccessibleFunctionParams\n | { 'aria-hidden': true; alt: '' };\n\nexport function generateAccessibleProps(\n role: 'img' | 'presentation',\n glyphName: string,\n {\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n title,\n }: AccessibleFunctionParams,\n): AccessibleFunctionReturnType {\n switch (role) {\n case 'img':\n if (!ariaLabel && !ariaLabelledby && !title) {\n return { 'aria-label': getGlyphLabel(glyphName) };\n }\n\n return {\n ['aria-labelledby']: ariaLabelledby,\n ['aria-label']: ariaLabel,\n title,\n };\n\n case 'presentation':\n return { 'aria-hidden': true, alt: '' };\n }\n}\n\nexport function getGlyphLabel(name: string) {\n return `${name.replace(/([a-z])([A-Z])/g, '$1 $2')} Icon`;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { LGGlyph } from './types';\nimport { Size } from './glyphCommon';\nimport { GlyphName } from './glyphs';\n\n// We omit size here because we map string values for size to numbers in this component.\nexport interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {\n glyph: GlyphName | string;\n size?: Size | number;\n}\n\ntype GlyphObject = Record<string, LGGlyph.Component>;\n\n/**\n * Returns a single component with a `glyph` prop to select the glyph\n * @param glyphs The set of glyphs\n * @returns Icon component\n */\nexport function createIconComponent<G extends GlyphObject = GlyphObject>(\n glyphs: G,\n) {\n const Icon = ({ glyph, ...rest }: IconProps) => {\n const SVGComponent = glyphs[glyph];\n SVGComponent.isGlyph = true;\n return <SVGComponent {...rest} />;\n };\n\n Icon.displayName = 'Icon';\n\n Icon.isGlyph = true;\n\n Icon.propTypes = {\n glyph: PropTypes.oneOf(Object.keys(glyphs)).isRequired,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n } as any;\n\n return Icon;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { SVGR, LGGlyph } from './types';\nimport { css, cx } from '@leafygreen-ui/emotion';\nimport { generateAccessibleProps, sizeMap, Size } from './glyphCommon';\n\n/**\n * Returns a single glyph component.\n * Process custom glyphs to ensure consistent behavior between custom and built-in icons\n * @param glyphName: string - the display name of the icon\n * @param Glyph: SVGR.Component - the SVG icon component\n * @returns LGGlyph.Component\n */\nexport function createGlyphComponent(\n glyphName: string,\n Glyph: SVGR.Component,\n): LGGlyph.Component {\n const GlyphComponent: LGGlyph.Component = ({\n className,\n size = Size.Default,\n fill,\n title,\n 'aria-labelledby': ariaLabelledby,\n 'aria-label': ariaLabel,\n role = 'img',\n ...rest\n }: LGGlyph.ComponentProps) => {\n const fillStyle = css`\n color: ${fill};\n `;\n\n const renderedSize = typeof size === 'number' ? size : sizeMap[size];\n\n if (!(role === 'img' || role === 'presentation')) {\n console.warn(\n \"Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'.\",\n );\n }\n\n return (\n <Glyph\n className={cx(\n {\n [fillStyle]: fill != null,\n },\n className,\n )}\n height={renderedSize}\n width={renderedSize}\n role={role}\n {...generateAccessibleProps(role, glyphName, {\n title,\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n })}\n {...rest}\n />\n );\n };\n\n GlyphComponent.displayName = glyphName;\n\n GlyphComponent.isGlyph = true;\n\n GlyphComponent.propTypes = {\n fill: PropTypes.string,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n className: PropTypes.string,\n };\n\n return GlyphComponent;\n}\n","import { createGlyphComponent } from '../createGlyphComponent';\nimport { LGGlyph } from '../types';\n\n// Glyphs\nimport ActivityFeed from './ActivityFeed.svg';\nimport AddFile from './AddFile.svg';\nimport Apps from './Apps.svg';\nimport Array from './Array.svg';\nimport ArrowDown from './ArrowDown.svg';\nimport ArrowLeft from './ArrowLeft.svg';\nimport ArrowRight from './ArrowRight.svg';\nimport ArrowUp from './ArrowUp.svg';\nimport Beaker from './Beaker.svg';\nimport Bell from './Bell.svg';\nimport Building from './Building.svg';\nimport Bulb from './Bulb.svg';\nimport Calendar from './Calendar.svg';\nimport CaretDown from './CaretDown.svg';\nimport CaretLeft from './CaretLeft.svg';\nimport CaretRight from './CaretRight.svg';\nimport CaretUp from './CaretUp.svg';\nimport Charts from './Charts.svg';\nimport Checkmark from './Checkmark.svg';\nimport CheckmarkWithCircle from './CheckmarkWithCircle.svg';\nimport ChevronDown from './ChevronDown.svg';\nimport ChevronLeft from './ChevronLeft.svg';\nimport ChevronRight from './ChevronRight.svg';\nimport ChevronUp from './ChevronUp.svg';\nimport Clock from './Clock.svg';\nimport ClockWithArrow from './ClockWithArrow.svg';\nimport Clone from './Clone.svg';\nimport Cloud from './Cloud.svg';\nimport Code from './Code.svg';\nimport Connect from './Connect.svg';\nimport Copy from './Copy.svg';\nimport CreditCard from './CreditCard.svg';\nimport CurlyBraces from './CurlyBraces.svg';\nimport Cursor from './Cursor.svg';\nimport Database from './Database.svg';\nimport Diagram from './Diagram.svg';\nimport Diagram2 from './Diagram2.svg';\nimport Diagram3 from './Diagram3.svg';\nimport Disconnect from './Disconnect.svg';\nimport Download from './Download.svg';\nimport Edit from './Edit.svg';\nimport Ellipsis from './Ellipsis.svg';\nimport Export from './Export.svg';\nimport Favorite from './Favorite.svg';\nimport File from './File.svg';\nimport Filter from './Filter.svg';\nimport FullScreenEnter from './FullScreenEnter.svg';\nimport FullScreenExit from './FullScreenExit.svg';\nimport Folder from './Folder.svg';\nimport GlobeAmericas from './GlobeAmericas.svg';\nimport GovernmentBuilding from './GovernmentBuilding.svg';\nimport Home from './Home.svg';\nimport ImportantWithCircle from './ImportantWithCircle.svg';\nimport InfoWithCircle from './InfoWithCircle.svg';\nimport InviteUser from './InviteUser.svg';\nimport Key from './Key.svg';\nimport Laptop from './Laptop.svg';\nimport Link from './Link.svg';\nimport Lock from './Lock.svg';\nimport MagnifyingGlass from './MagnifyingGlass.svg';\nimport Megaphone from './Megaphone.svg';\nimport Menu from './Menu.svg';\nimport Minus from './Minus.svg';\nimport NotAllowed from './NotAllowed.svg';\nimport Note from './Note.svg';\nimport OpenNewTab from './OpenNewTab.svg';\nimport Pause from './Pause.svg';\nimport Person from './Person.svg';\nimport PersonGroup from './PersonGroup.svg';\nimport PersonWithLock from './PersonWithLock.svg';\nimport Play from './Play.svg';\nimport Plus from './Plus.svg';\nimport PlusWithCircle from './PlusWithCircle.svg';\nimport QuestionMarkWithCircle from './QuestionMarkWithCircle.svg';\nimport Redo from './Redo.svg';\nimport Refresh from './Refresh.svg';\nimport Relationship from './Relationship.svg';\nimport ReplicaSet from './ReplicaSet.svg';\nimport Save from './Save.svg';\nimport Serverless from './Serverless.svg';\nimport ShardedCluster from './ShardedCluster.svg';\nimport Settings from './Settings.svg';\nimport Shell from './Shell.svg';\nimport SortAscending from './SortAscending.svg';\nimport SortDescending from './SortDescending.svg';\nimport SplitHorizontal from './SplitHorizontal.svg';\nimport SplitVertical from './SplitVertical.svg';\nimport Stitch from './Stitch.svg';\nimport Support from './Support.svg';\nimport Sweep from './Sweep.svg';\nimport Table from './Table.svg';\nimport TimeSeries from './TimeSeries.svg';\nimport Trash from './Trash.svg';\nimport Undo from './Undo.svg';\nimport University from './University.svg';\nimport Unlock from './Unlock.svg';\nimport Unsorted from './Unsorted.svg';\nimport UpDownCarets from './UpDownCarets.svg';\nimport Upload from './Upload.svg';\nimport VerticalEllipsis from './VerticalEllipsis.svg';\nimport Visibility from './Visibility.svg';\nimport VisibilityOff from './VisibilityOff.svg';\nimport Warning from './Warning.svg';\nimport X from './X.svg';\nimport XWithCircle from './XWithCircle.svg';\n\nexport const _glyphs = {\n ActivityFeed,\n AddFile,\n Apps,\n Array,\n ArrowDown,\n ArrowLeft,\n ArrowRight,\n ArrowUp,\n Beaker,\n Bell,\n Building,\n Bulb,\n Calendar,\n CaretDown,\n CaretLeft,\n CaretRight,\n CaretUp,\n Charts,\n Checkmark,\n CheckmarkWithCircle,\n ChevronDown,\n ChevronLeft,\n ChevronRight,\n ChevronUp,\n Clock,\n ClockWithArrow,\n Clone,\n Cloud,\n Code,\n Connect,\n Copy,\n CreditCard,\n CurlyBraces,\n Cursor,\n Database,\n Diagram,\n Diagram2,\n Diagram3,\n Disconnect,\n Download,\n Edit,\n Ellipsis,\n Export,\n Favorite,\n File,\n Filter,\n FullScreenEnter,\n FullScreenExit,\n Folder,\n GlobeAmericas,\n GovernmentBuilding,\n Home,\n ImportantWithCircle,\n InfoWithCircle,\n InviteUser,\n Key,\n Laptop,\n Link,\n Lock,\n MagnifyingGlass,\n Megaphone,\n Menu,\n Minus,\n NotAllowed,\n Note,\n OpenNewTab,\n Pause,\n Person,\n PersonGroup,\n PersonWithLock,\n Play,\n Plus,\n PlusWithCircle,\n QuestionMarkWithCircle,\n Redo,\n Refresh,\n Relationship,\n ReplicaSet,\n Save,\n Serverless,\n ShardedCluster,\n Settings,\n Shell,\n SortAscending,\n SortDescending,\n SplitHorizontal,\n SplitVertical,\n Stitch,\n Support,\n Sweep,\n Table,\n TimeSeries,\n Trash,\n Undo,\n University,\n Unlock,\n Unsorted,\n UpDownCarets,\n Upload,\n VerticalEllipsis,\n Visibility,\n VisibilityOff,\n Warning,\n X,\n XWithCircle,\n} as const;\n\nexport type GlyphName = keyof typeof _glyphs;\n\nconst glyphKeys = Object.keys(_glyphs) as Array<GlyphName>;\n\nexport const glyphs = glyphKeys.reduce((acc, name) => {\n acc[name] = createGlyphComponent(name, _glyphs[name]);\n\n return acc;\n}, {} as Record<GlyphName, LGGlyph.Component>);\n","import { ComponentType, isValidElement, ReactNode } from 'react';\nimport { LGGlyph } from './types';\n\ntype ExtendedComponentType = ComponentType<any> & {\n [key: string]: any;\n};\n/**\n * Helper type to check if element is a LeafyGreen UI Glyph\n * @internal\n */\nfunction isComponentGlyph(node: ReactNode): node is LGGlyph.Element;\nfunction isComponentGlyph(\n component: ExtendedComponentType,\n): component is LGGlyph.Component;\nfunction isComponentGlyph(\n child: ReactNode | ExtendedComponentType,\n): child is LGGlyph.Element | LGGlyph.Component {\n // If we're received a rendered component (i.e. ReactNode)\n if (isValidElement(child)) {\n return (\n child != null &&\n typeof child === 'object' &&\n 'type' in child &&\n (child.type as any).isGlyph === true\n );\n }\n\n // If we've recieved a component function\n return (\n child != null &&\n typeof child === 'function' &&\n 'isGlyph' in child &&\n child.isGlyph === true\n );\n}\n\nexport { isComponentGlyph };\n","import { createIconComponent } from './createIconComponent';\nimport { glyphs } from './glyphs';\n\nexport const Icon = createIconComponent(glyphs);\n"],"names":["Size","Small","Default","Large","XLarge","sizeMap","small","default","large","xlarge","_templateObject","_excluded","createIconComponent","glyphs","Icon","_ref","glyph","rest","_objectWithoutProperties","SVGComponent","isGlyph","___EmotionJSX","displayName","propTypes","PropTypes","oneOf","Object","keys","isRequired","size","oneOfType","values","number","createGlyphComponent","glyphName","Glyph","GlyphComponent","_generateAccessiblePr","className","_ref$size","fill","title","ariaLabelledby","ariaLabel","_ref$role","role","fillStyle","css","renderedSize","console","warn","_extends","cx","_defineProperty","height","width","_ref2","name","concat","replace","alt","generateAccessibleProps","string","_glyphs","ActivityFeed","AddFile","Apps","Array","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Beaker","Bell","Building","Bulb","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","Charts","Checkmark","CheckmarkWithCircle","ChevronDown","ChevronLeft","ChevronRight","ChevronUp","Clock","ClockWithArrow","Clone","Cloud","Code","Connect","Copy","CreditCard","CurlyBraces","Cursor","Database","Diagram","Diagram2","Diagram3","Disconnect","Download","Edit","Ellipsis","Export","Favorite","File","Filter","FullScreenEnter","FullScreenExit","Folder","GlobeAmericas","GovernmentBuilding","Home","ImportantWithCircle","InfoWithCircle","InviteUser","Key","Laptop","Link","Lock","MagnifyingGlass","Megaphone","Menu","Minus","NotAllowed","Note","OpenNewTab","Pause","Person","PersonGroup","PersonWithLock","Play","Plus","PlusWithCircle","QuestionMarkWithCircle","Redo","Refresh","Relationship","ReplicaSet","Save","Serverless","ShardedCluster","Settings","Shell","SortAscending","SortDescending","SplitHorizontal","SplitVertical","Stitch","Support","Sweep","Table","TimeSeries","Trash","Undo","University","Unlock","Unsorted","UpDownCarets","Upload","VerticalEllipsis","Visibility","VisibilityOff","Warning","X","XWithCircle","reduce","acc","isComponentGlyph","child","isValidElement","_typeof","type"],"mappings":"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"}
|
package/dist/glyphs/index.d.ts
CHANGED
|
@@ -1,3 +1,426 @@
|
|
|
1
1
|
import { LGGlyph } from '../types';
|
|
2
|
+
export declare const _glyphs: {
|
|
3
|
+
readonly ActivityFeed: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
4
|
+
title?: string | null | undefined;
|
|
5
|
+
role?: "presentation" | "img" | undefined;
|
|
6
|
+
}>;
|
|
7
|
+
readonly AddFile: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
8
|
+
title?: string | null | undefined;
|
|
9
|
+
role?: "presentation" | "img" | undefined;
|
|
10
|
+
}>;
|
|
11
|
+
readonly Apps: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
12
|
+
title?: string | null | undefined;
|
|
13
|
+
role?: "presentation" | "img" | undefined;
|
|
14
|
+
}>;
|
|
15
|
+
readonly Array: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
16
|
+
title?: string | null | undefined;
|
|
17
|
+
role?: "presentation" | "img" | undefined;
|
|
18
|
+
}>;
|
|
19
|
+
readonly ArrowDown: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
20
|
+
title?: string | null | undefined;
|
|
21
|
+
role?: "presentation" | "img" | undefined;
|
|
22
|
+
}>;
|
|
23
|
+
readonly ArrowLeft: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
24
|
+
title?: string | null | undefined;
|
|
25
|
+
role?: "presentation" | "img" | undefined;
|
|
26
|
+
}>;
|
|
27
|
+
readonly ArrowRight: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
28
|
+
title?: string | null | undefined;
|
|
29
|
+
role?: "presentation" | "img" | undefined;
|
|
30
|
+
}>;
|
|
31
|
+
readonly ArrowUp: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
32
|
+
title?: string | null | undefined;
|
|
33
|
+
role?: "presentation" | "img" | undefined;
|
|
34
|
+
}>;
|
|
35
|
+
readonly Beaker: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
36
|
+
title?: string | null | undefined;
|
|
37
|
+
role?: "presentation" | "img" | undefined;
|
|
38
|
+
}>;
|
|
39
|
+
readonly Bell: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
40
|
+
title?: string | null | undefined;
|
|
41
|
+
role?: "presentation" | "img" | undefined;
|
|
42
|
+
}>;
|
|
43
|
+
readonly Building: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
44
|
+
title?: string | null | undefined;
|
|
45
|
+
role?: "presentation" | "img" | undefined;
|
|
46
|
+
}>;
|
|
47
|
+
readonly Bulb: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
48
|
+
title?: string | null | undefined;
|
|
49
|
+
role?: "presentation" | "img" | undefined;
|
|
50
|
+
}>;
|
|
51
|
+
readonly Calendar: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
52
|
+
title?: string | null | undefined;
|
|
53
|
+
role?: "presentation" | "img" | undefined;
|
|
54
|
+
}>;
|
|
55
|
+
readonly CaretDown: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
56
|
+
title?: string | null | undefined;
|
|
57
|
+
role?: "presentation" | "img" | undefined;
|
|
58
|
+
}>;
|
|
59
|
+
readonly CaretLeft: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
60
|
+
title?: string | null | undefined;
|
|
61
|
+
role?: "presentation" | "img" | undefined;
|
|
62
|
+
}>;
|
|
63
|
+
readonly CaretRight: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
64
|
+
title?: string | null | undefined;
|
|
65
|
+
role?: "presentation" | "img" | undefined;
|
|
66
|
+
}>;
|
|
67
|
+
readonly CaretUp: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
68
|
+
title?: string | null | undefined;
|
|
69
|
+
role?: "presentation" | "img" | undefined;
|
|
70
|
+
}>;
|
|
71
|
+
readonly Charts: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
72
|
+
title?: string | null | undefined;
|
|
73
|
+
role?: "presentation" | "img" | undefined;
|
|
74
|
+
}>;
|
|
75
|
+
readonly Checkmark: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
76
|
+
title?: string | null | undefined;
|
|
77
|
+
role?: "presentation" | "img" | undefined;
|
|
78
|
+
}>;
|
|
79
|
+
readonly CheckmarkWithCircle: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
80
|
+
title?: string | null | undefined;
|
|
81
|
+
role?: "presentation" | "img" | undefined;
|
|
82
|
+
}>;
|
|
83
|
+
readonly ChevronDown: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
84
|
+
title?: string | null | undefined;
|
|
85
|
+
role?: "presentation" | "img" | undefined;
|
|
86
|
+
}>;
|
|
87
|
+
readonly ChevronLeft: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
88
|
+
title?: string | null | undefined;
|
|
89
|
+
role?: "presentation" | "img" | undefined;
|
|
90
|
+
}>;
|
|
91
|
+
readonly ChevronRight: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
92
|
+
title?: string | null | undefined;
|
|
93
|
+
role?: "presentation" | "img" | undefined;
|
|
94
|
+
}>;
|
|
95
|
+
readonly ChevronUp: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
96
|
+
title?: string | null | undefined;
|
|
97
|
+
role?: "presentation" | "img" | undefined;
|
|
98
|
+
}>;
|
|
99
|
+
readonly Clock: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
100
|
+
title?: string | null | undefined;
|
|
101
|
+
role?: "presentation" | "img" | undefined;
|
|
102
|
+
}>;
|
|
103
|
+
readonly ClockWithArrow: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
104
|
+
title?: string | null | undefined;
|
|
105
|
+
role?: "presentation" | "img" | undefined;
|
|
106
|
+
}>;
|
|
107
|
+
readonly Clone: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
108
|
+
title?: string | null | undefined;
|
|
109
|
+
role?: "presentation" | "img" | undefined;
|
|
110
|
+
}>;
|
|
111
|
+
readonly Cloud: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
112
|
+
title?: string | null | undefined;
|
|
113
|
+
role?: "presentation" | "img" | undefined;
|
|
114
|
+
}>;
|
|
115
|
+
readonly Code: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
116
|
+
title?: string | null | undefined;
|
|
117
|
+
role?: "presentation" | "img" | undefined;
|
|
118
|
+
}>;
|
|
119
|
+
readonly Connect: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
120
|
+
title?: string | null | undefined;
|
|
121
|
+
role?: "presentation" | "img" | undefined;
|
|
122
|
+
}>;
|
|
123
|
+
readonly Copy: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
124
|
+
title?: string | null | undefined;
|
|
125
|
+
role?: "presentation" | "img" | undefined;
|
|
126
|
+
}>;
|
|
127
|
+
readonly CreditCard: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
128
|
+
title?: string | null | undefined;
|
|
129
|
+
role?: "presentation" | "img" | undefined;
|
|
130
|
+
}>;
|
|
131
|
+
readonly CurlyBraces: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
132
|
+
title?: string | null | undefined;
|
|
133
|
+
role?: "presentation" | "img" | undefined;
|
|
134
|
+
}>;
|
|
135
|
+
readonly Cursor: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
136
|
+
title?: string | null | undefined;
|
|
137
|
+
role?: "presentation" | "img" | undefined;
|
|
138
|
+
}>;
|
|
139
|
+
readonly Database: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
140
|
+
title?: string | null | undefined;
|
|
141
|
+
role?: "presentation" | "img" | undefined;
|
|
142
|
+
}>;
|
|
143
|
+
readonly Diagram: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
144
|
+
title?: string | null | undefined;
|
|
145
|
+
role?: "presentation" | "img" | undefined;
|
|
146
|
+
}>;
|
|
147
|
+
readonly Diagram2: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
148
|
+
title?: string | null | undefined;
|
|
149
|
+
role?: "presentation" | "img" | undefined;
|
|
150
|
+
}>;
|
|
151
|
+
readonly Diagram3: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
152
|
+
title?: string | null | undefined;
|
|
153
|
+
role?: "presentation" | "img" | undefined;
|
|
154
|
+
}>;
|
|
155
|
+
readonly Disconnect: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
156
|
+
title?: string | null | undefined;
|
|
157
|
+
role?: "presentation" | "img" | undefined;
|
|
158
|
+
}>;
|
|
159
|
+
readonly Download: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
160
|
+
title?: string | null | undefined;
|
|
161
|
+
role?: "presentation" | "img" | undefined;
|
|
162
|
+
}>;
|
|
163
|
+
readonly Edit: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
164
|
+
title?: string | null | undefined;
|
|
165
|
+
role?: "presentation" | "img" | undefined;
|
|
166
|
+
}>;
|
|
167
|
+
readonly Ellipsis: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
168
|
+
title?: string | null | undefined;
|
|
169
|
+
role?: "presentation" | "img" | undefined;
|
|
170
|
+
}>;
|
|
171
|
+
readonly Export: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
172
|
+
title?: string | null | undefined;
|
|
173
|
+
role?: "presentation" | "img" | undefined;
|
|
174
|
+
}>;
|
|
175
|
+
readonly Favorite: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
176
|
+
title?: string | null | undefined;
|
|
177
|
+
role?: "presentation" | "img" | undefined;
|
|
178
|
+
}>;
|
|
179
|
+
readonly File: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
180
|
+
title?: string | null | undefined;
|
|
181
|
+
role?: "presentation" | "img" | undefined;
|
|
182
|
+
}>;
|
|
183
|
+
readonly Filter: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
184
|
+
title?: string | null | undefined;
|
|
185
|
+
role?: "presentation" | "img" | undefined;
|
|
186
|
+
}>;
|
|
187
|
+
readonly FullScreenEnter: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
188
|
+
title?: string | null | undefined;
|
|
189
|
+
role?: "presentation" | "img" | undefined;
|
|
190
|
+
}>;
|
|
191
|
+
readonly FullScreenExit: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
192
|
+
title?: string | null | undefined;
|
|
193
|
+
role?: "presentation" | "img" | undefined;
|
|
194
|
+
}>;
|
|
195
|
+
readonly Folder: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
196
|
+
title?: string | null | undefined;
|
|
197
|
+
role?: "presentation" | "img" | undefined;
|
|
198
|
+
}>;
|
|
199
|
+
readonly GlobeAmericas: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
200
|
+
title?: string | null | undefined;
|
|
201
|
+
role?: "presentation" | "img" | undefined;
|
|
202
|
+
}>;
|
|
203
|
+
readonly GovernmentBuilding: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
204
|
+
title?: string | null | undefined;
|
|
205
|
+
role?: "presentation" | "img" | undefined;
|
|
206
|
+
}>;
|
|
207
|
+
readonly Home: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
208
|
+
title?: string | null | undefined;
|
|
209
|
+
role?: "presentation" | "img" | undefined;
|
|
210
|
+
}>;
|
|
211
|
+
readonly ImportantWithCircle: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
212
|
+
title?: string | null | undefined;
|
|
213
|
+
role?: "presentation" | "img" | undefined;
|
|
214
|
+
}>;
|
|
215
|
+
readonly InfoWithCircle: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
216
|
+
title?: string | null | undefined;
|
|
217
|
+
role?: "presentation" | "img" | undefined;
|
|
218
|
+
}>;
|
|
219
|
+
readonly InviteUser: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
220
|
+
title?: string | null | undefined;
|
|
221
|
+
role?: "presentation" | "img" | undefined;
|
|
222
|
+
}>;
|
|
223
|
+
readonly Key: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
224
|
+
title?: string | null | undefined;
|
|
225
|
+
role?: "presentation" | "img" | undefined;
|
|
226
|
+
}>;
|
|
227
|
+
readonly Laptop: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
228
|
+
title?: string | null | undefined;
|
|
229
|
+
role?: "presentation" | "img" | undefined;
|
|
230
|
+
}>;
|
|
231
|
+
readonly Link: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
232
|
+
title?: string | null | undefined;
|
|
233
|
+
role?: "presentation" | "img" | undefined;
|
|
234
|
+
}>;
|
|
235
|
+
readonly Lock: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
236
|
+
title?: string | null | undefined;
|
|
237
|
+
role?: "presentation" | "img" | undefined;
|
|
238
|
+
}>;
|
|
239
|
+
readonly MagnifyingGlass: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
240
|
+
title?: string | null | undefined;
|
|
241
|
+
role?: "presentation" | "img" | undefined;
|
|
242
|
+
}>;
|
|
243
|
+
readonly Megaphone: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
244
|
+
title?: string | null | undefined;
|
|
245
|
+
role?: "presentation" | "img" | undefined;
|
|
246
|
+
}>;
|
|
247
|
+
readonly Menu: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
248
|
+
title?: string | null | undefined;
|
|
249
|
+
role?: "presentation" | "img" | undefined;
|
|
250
|
+
}>;
|
|
251
|
+
readonly Minus: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
252
|
+
title?: string | null | undefined;
|
|
253
|
+
role?: "presentation" | "img" | undefined;
|
|
254
|
+
}>;
|
|
255
|
+
readonly NotAllowed: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
256
|
+
title?: string | null | undefined;
|
|
257
|
+
role?: "presentation" | "img" | undefined;
|
|
258
|
+
}>;
|
|
259
|
+
readonly Note: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
260
|
+
title?: string | null | undefined;
|
|
261
|
+
role?: "presentation" | "img" | undefined;
|
|
262
|
+
}>;
|
|
263
|
+
readonly OpenNewTab: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
264
|
+
title?: string | null | undefined;
|
|
265
|
+
role?: "presentation" | "img" | undefined;
|
|
266
|
+
}>;
|
|
267
|
+
readonly Pause: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
268
|
+
title?: string | null | undefined;
|
|
269
|
+
role?: "presentation" | "img" | undefined;
|
|
270
|
+
}>;
|
|
271
|
+
readonly Person: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
272
|
+
title?: string | null | undefined;
|
|
273
|
+
role?: "presentation" | "img" | undefined;
|
|
274
|
+
}>;
|
|
275
|
+
readonly PersonGroup: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
276
|
+
title?: string | null | undefined;
|
|
277
|
+
role?: "presentation" | "img" | undefined;
|
|
278
|
+
}>;
|
|
279
|
+
readonly PersonWithLock: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
280
|
+
title?: string | null | undefined;
|
|
281
|
+
role?: "presentation" | "img" | undefined;
|
|
282
|
+
}>;
|
|
283
|
+
readonly Play: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
284
|
+
title?: string | null | undefined;
|
|
285
|
+
role?: "presentation" | "img" | undefined;
|
|
286
|
+
}>;
|
|
287
|
+
readonly Plus: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
288
|
+
title?: string | null | undefined;
|
|
289
|
+
role?: "presentation" | "img" | undefined;
|
|
290
|
+
}>;
|
|
291
|
+
readonly PlusWithCircle: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
292
|
+
title?: string | null | undefined;
|
|
293
|
+
role?: "presentation" | "img" | undefined;
|
|
294
|
+
}>;
|
|
295
|
+
readonly QuestionMarkWithCircle: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
296
|
+
title?: string | null | undefined;
|
|
297
|
+
role?: "presentation" | "img" | undefined;
|
|
298
|
+
}>;
|
|
299
|
+
readonly Redo: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
300
|
+
title?: string | null | undefined;
|
|
301
|
+
role?: "presentation" | "img" | undefined;
|
|
302
|
+
}>;
|
|
303
|
+
readonly Refresh: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
304
|
+
title?: string | null | undefined;
|
|
305
|
+
role?: "presentation" | "img" | undefined;
|
|
306
|
+
}>;
|
|
307
|
+
readonly Relationship: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
308
|
+
title?: string | null | undefined;
|
|
309
|
+
role?: "presentation" | "img" | undefined;
|
|
310
|
+
}>;
|
|
311
|
+
readonly ReplicaSet: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
312
|
+
title?: string | null | undefined;
|
|
313
|
+
role?: "presentation" | "img" | undefined;
|
|
314
|
+
}>;
|
|
315
|
+
readonly Save: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
316
|
+
title?: string | null | undefined;
|
|
317
|
+
role?: "presentation" | "img" | undefined;
|
|
318
|
+
}>;
|
|
319
|
+
readonly Serverless: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
320
|
+
title?: string | null | undefined;
|
|
321
|
+
role?: "presentation" | "img" | undefined;
|
|
322
|
+
}>;
|
|
323
|
+
readonly ShardedCluster: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
324
|
+
title?: string | null | undefined;
|
|
325
|
+
role?: "presentation" | "img" | undefined;
|
|
326
|
+
}>;
|
|
327
|
+
readonly Settings: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
328
|
+
title?: string | null | undefined;
|
|
329
|
+
role?: "presentation" | "img" | undefined;
|
|
330
|
+
}>;
|
|
331
|
+
readonly Shell: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
332
|
+
title?: string | null | undefined;
|
|
333
|
+
role?: "presentation" | "img" | undefined;
|
|
334
|
+
}>;
|
|
335
|
+
readonly SortAscending: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
336
|
+
title?: string | null | undefined;
|
|
337
|
+
role?: "presentation" | "img" | undefined;
|
|
338
|
+
}>;
|
|
339
|
+
readonly SortDescending: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
340
|
+
title?: string | null | undefined;
|
|
341
|
+
role?: "presentation" | "img" | undefined;
|
|
342
|
+
}>;
|
|
343
|
+
readonly SplitHorizontal: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
344
|
+
title?: string | null | undefined;
|
|
345
|
+
role?: "presentation" | "img" | undefined;
|
|
346
|
+
}>;
|
|
347
|
+
readonly SplitVertical: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
348
|
+
title?: string | null | undefined;
|
|
349
|
+
role?: "presentation" | "img" | undefined;
|
|
350
|
+
}>;
|
|
351
|
+
readonly Stitch: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
352
|
+
title?: string | null | undefined;
|
|
353
|
+
role?: "presentation" | "img" | undefined;
|
|
354
|
+
}>;
|
|
355
|
+
readonly Support: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
356
|
+
title?: string | null | undefined;
|
|
357
|
+
role?: "presentation" | "img" | undefined;
|
|
358
|
+
}>;
|
|
359
|
+
readonly Sweep: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
360
|
+
title?: string | null | undefined;
|
|
361
|
+
role?: "presentation" | "img" | undefined;
|
|
362
|
+
}>;
|
|
363
|
+
readonly Table: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
364
|
+
title?: string | null | undefined;
|
|
365
|
+
role?: "presentation" | "img" | undefined;
|
|
366
|
+
}>;
|
|
367
|
+
readonly TimeSeries: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
368
|
+
title?: string | null | undefined;
|
|
369
|
+
role?: "presentation" | "img" | undefined;
|
|
370
|
+
}>;
|
|
371
|
+
readonly Trash: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
372
|
+
title?: string | null | undefined;
|
|
373
|
+
role?: "presentation" | "img" | undefined;
|
|
374
|
+
}>;
|
|
375
|
+
readonly Undo: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
376
|
+
title?: string | null | undefined;
|
|
377
|
+
role?: "presentation" | "img" | undefined;
|
|
378
|
+
}>;
|
|
379
|
+
readonly University: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
380
|
+
title?: string | null | undefined;
|
|
381
|
+
role?: "presentation" | "img" | undefined;
|
|
382
|
+
}>;
|
|
383
|
+
readonly Unlock: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
384
|
+
title?: string | null | undefined;
|
|
385
|
+
role?: "presentation" | "img" | undefined;
|
|
386
|
+
}>;
|
|
387
|
+
readonly Unsorted: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
388
|
+
title?: string | null | undefined;
|
|
389
|
+
role?: "presentation" | "img" | undefined;
|
|
390
|
+
}>;
|
|
391
|
+
readonly UpDownCarets: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
392
|
+
title?: string | null | undefined;
|
|
393
|
+
role?: "presentation" | "img" | undefined;
|
|
394
|
+
}>;
|
|
395
|
+
readonly Upload: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
396
|
+
title?: string | null | undefined;
|
|
397
|
+
role?: "presentation" | "img" | undefined;
|
|
398
|
+
}>;
|
|
399
|
+
readonly VerticalEllipsis: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
400
|
+
title?: string | null | undefined;
|
|
401
|
+
role?: "presentation" | "img" | undefined;
|
|
402
|
+
}>;
|
|
403
|
+
readonly Visibility: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
404
|
+
title?: string | null | undefined;
|
|
405
|
+
role?: "presentation" | "img" | undefined;
|
|
406
|
+
}>;
|
|
407
|
+
readonly VisibilityOff: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
408
|
+
title?: string | null | undefined;
|
|
409
|
+
role?: "presentation" | "img" | undefined;
|
|
410
|
+
}>;
|
|
411
|
+
readonly Warning: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
412
|
+
title?: string | null | undefined;
|
|
413
|
+
role?: "presentation" | "img" | undefined;
|
|
414
|
+
}>;
|
|
415
|
+
readonly X: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
416
|
+
title?: string | null | undefined;
|
|
417
|
+
role?: "presentation" | "img" | undefined;
|
|
418
|
+
}>;
|
|
419
|
+
readonly XWithCircle: import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & {
|
|
420
|
+
title?: string | null | undefined;
|
|
421
|
+
role?: "presentation" | "img" | undefined;
|
|
422
|
+
}>;
|
|
423
|
+
};
|
|
424
|
+
export declare type GlyphName = keyof typeof _glyphs;
|
|
2
425
|
export declare const glyphs: Record<"ActivityFeed" | "AddFile" | "Apps" | "Array" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "Beaker" | "Bell" | "Building" | "Bulb" | "Calendar" | "CaretDown" | "CaretLeft" | "CaretRight" | "CaretUp" | "Charts" | "Checkmark" | "CheckmarkWithCircle" | "ChevronDown" | "ChevronLeft" | "ChevronRight" | "ChevronUp" | "Clock" | "ClockWithArrow" | "Clone" | "Cloud" | "Code" | "Connect" | "Copy" | "CreditCard" | "CurlyBraces" | "Cursor" | "Database" | "Diagram" | "Diagram2" | "Diagram3" | "Disconnect" | "Download" | "Edit" | "Ellipsis" | "Export" | "Favorite" | "File" | "Filter" | "FullScreenEnter" | "FullScreenExit" | "Folder" | "GlobeAmericas" | "GovernmentBuilding" | "Home" | "ImportantWithCircle" | "InfoWithCircle" | "InviteUser" | "Key" | "Laptop" | "Link" | "Lock" | "MagnifyingGlass" | "Megaphone" | "Menu" | "Minus" | "NotAllowed" | "Note" | "OpenNewTab" | "Pause" | "Person" | "PersonGroup" | "PersonWithLock" | "Play" | "Plus" | "PlusWithCircle" | "QuestionMarkWithCircle" | "Redo" | "Refresh" | "Relationship" | "ReplicaSet" | "Save" | "Serverless" | "ShardedCluster" | "Settings" | "Shell" | "SortAscending" | "SortDescending" | "SplitHorizontal" | "SplitVertical" | "Stitch" | "Support" | "Sweep" | "Table" | "TimeSeries" | "Trash" | "Undo" | "University" | "Unlock" | "Unsorted" | "UpDownCarets" | "Upload" | "VerticalEllipsis" | "Visibility" | "VisibilityOff" | "Warning" | "X" | "XWithCircle", LGGlyph.Component>;
|
|
3
426
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/glyphs/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/glyphs/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AA6GnC,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0GV,CAAC;AAEX,oBAAY,SAAS,GAAG,MAAM,OAAO,OAAO,CAAC;AAI7C,eAAO,MAAM,MAAM,06CAI2B,CAAC"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/glyphCommon.ts","../src/createIconComponent.tsx","../src/createGlyphComponent.tsx","../src/glyphs/index.ts","../src/Icon.tsx","../src/isComponentGlyph.ts"],"sourcesContent":["export const Size = {\n Small: 'small',\n Default: 'default',\n Large: 'large',\n XLarge: 'xlarge',\n} as const;\n\nexport type Size = typeof Size[keyof typeof Size];\n\nexport const sizeMap: Record<Size, number> = {\n small: 14,\n default: 16,\n large: 20,\n xlarge: 24,\n} as const;\n\ninterface AccessibleFunctionParams {\n 'aria-labelledby'?: string;\n 'aria-label'?: string;\n title?: string | null;\n}\n\ntype AccessibleFunctionReturnType =\n | AccessibleFunctionParams\n | { 'aria-hidden': true; alt: '' };\n\nexport function generateAccessibleProps(\n role: 'img' | 'presentation',\n glyphName: string,\n {\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n title,\n }: AccessibleFunctionParams,\n): AccessibleFunctionReturnType {\n switch (role) {\n case 'img':\n if (!ariaLabel && !ariaLabelledby && !title) {\n return { 'aria-label': getGlyphLabel(glyphName) };\n }\n\n return {\n ['aria-labelledby']: ariaLabelledby,\n ['aria-label']: ariaLabel,\n title,\n };\n\n case 'presentation':\n return { 'aria-hidden': true, alt: '' };\n }\n}\n\nexport function getGlyphLabel(name: string) {\n return `${name.replace(/([a-z])([A-Z])/g, '$1 $2')} Icon`;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { LGGlyph } from './types';\nimport { Size } from './glyphCommon';\n\n// We omit size here because we map string values for size to numbers in this component.\nexport interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {\n glyph: string;\n size?: Size | number;\n}\n\ntype GlyphObject = Record<string, LGGlyph.Component>;\n\n/**\n * Returns a single component with a `glyph` prop to select the glyph\n * @param glyphs The set of glyphs\n * @returns Icon component\n */\nexport function createIconComponent<G extends GlyphObject = GlyphObject>(\n glyphs: G,\n) {\n const Icon = ({ glyph, ...rest }: IconProps) => {\n const SVGComponent = glyphs[glyph];\n SVGComponent.isGlyph = true;\n return <SVGComponent {...rest} />;\n };\n\n Icon.displayName = 'Icon';\n\n Icon.isGlyph = true;\n\n Icon.propTypes = {\n glyph: PropTypes.oneOf(Object.keys(glyphs)).isRequired,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n } as any;\n\n return Icon;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { SVGR, LGGlyph } from './types';\nimport { css, cx } from '@leafygreen-ui/emotion';\nimport { generateAccessibleProps, sizeMap, Size } from './glyphCommon';\n\n/**\n * Returns a single glyph component.\n * Process custom glyphs to ensure consistent behavior between custom and built-in icons\n * @param glyphName: string - the display name of the icon\n * @param Glyph: SVGR.Component - the SVG icon component\n * @returns LGGlyph.Component\n */\nexport function createGlyphComponent(\n glyphName: string,\n Glyph: SVGR.Component,\n): LGGlyph.Component {\n const GlyphComponent: LGGlyph.Component = ({\n className,\n size = Size.Default,\n fill,\n title,\n 'aria-labelledby': ariaLabelledby,\n 'aria-label': ariaLabel,\n role = 'img',\n ...rest\n }: LGGlyph.ComponentProps) => {\n const fillStyle = css`\n color: ${fill};\n `;\n\n const renderedSize = typeof size === 'number' ? size : sizeMap[size];\n\n if (!(role === 'img' || role === 'presentation')) {\n console.warn(\n \"Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'.\",\n );\n }\n\n return (\n <Glyph\n className={cx(\n {\n [fillStyle]: fill != null,\n },\n className,\n )}\n height={renderedSize}\n width={renderedSize}\n role={role}\n {...generateAccessibleProps(role, glyphName, {\n title,\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n })}\n {...rest}\n />\n );\n };\n\n GlyphComponent.displayName = glyphName;\n\n GlyphComponent.isGlyph = true;\n\n GlyphComponent.propTypes = {\n fill: PropTypes.string,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n className: PropTypes.string,\n };\n\n return GlyphComponent;\n}\n","import { createGlyphComponent } from '../createGlyphComponent';\nimport { LGGlyph } from '../types';\n\n// Glyphs\nimport ActivityFeed from './ActivityFeed.svg';\nimport AddFile from './AddFile.svg';\nimport Apps from './Apps.svg';\nimport Array from './Array.svg';\nimport ArrowDown from './ArrowDown.svg';\nimport ArrowLeft from './ArrowLeft.svg';\nimport ArrowRight from './ArrowRight.svg';\nimport ArrowUp from './ArrowUp.svg';\nimport Beaker from './Beaker.svg';\nimport Bell from './Bell.svg';\nimport Building from './Building.svg';\nimport Bulb from './Bulb.svg';\nimport Calendar from './Calendar.svg';\nimport CaretDown from './CaretDown.svg';\nimport CaretLeft from './CaretLeft.svg';\nimport CaretRight from './CaretRight.svg';\nimport CaretUp from './CaretUp.svg';\nimport Charts from './Charts.svg';\nimport Checkmark from './Checkmark.svg';\nimport CheckmarkWithCircle from './CheckmarkWithCircle.svg';\nimport ChevronDown from './ChevronDown.svg';\nimport ChevronLeft from './ChevronLeft.svg';\nimport ChevronRight from './ChevronRight.svg';\nimport ChevronUp from './ChevronUp.svg';\nimport Clock from './Clock.svg';\nimport ClockWithArrow from './ClockWithArrow.svg';\nimport Clone from './Clone.svg';\nimport Cloud from './Cloud.svg';\nimport Code from './Code.svg';\nimport Connect from './Connect.svg';\nimport Copy from './Copy.svg';\nimport CreditCard from './CreditCard.svg';\nimport CurlyBraces from './CurlyBraces.svg';\nimport Cursor from './Cursor.svg';\nimport Database from './Database.svg';\nimport Diagram from './Diagram.svg';\nimport Diagram2 from './Diagram2.svg';\nimport Diagram3 from './Diagram3.svg';\nimport Disconnect from './Disconnect.svg';\nimport Download from './Download.svg';\nimport Edit from './Edit.svg';\nimport Ellipsis from './Ellipsis.svg';\nimport Export from './Export.svg';\nimport Favorite from './Favorite.svg';\nimport File from './File.svg';\nimport Filter from './Filter.svg';\nimport FullScreenEnter from './FullScreenEnter.svg';\nimport FullScreenExit from './FullScreenExit.svg';\nimport Folder from './Folder.svg';\nimport GlobeAmericas from './GlobeAmericas.svg';\nimport GovernmentBuilding from './GovernmentBuilding.svg';\nimport Home from './Home.svg';\nimport ImportantWithCircle from './ImportantWithCircle.svg';\nimport InfoWithCircle from './InfoWithCircle.svg';\nimport InviteUser from './InviteUser.svg';\nimport Key from './Key.svg';\nimport Laptop from './Laptop.svg';\nimport Link from './Link.svg';\nimport Lock from './Lock.svg';\nimport MagnifyingGlass from './MagnifyingGlass.svg';\nimport Megaphone from './Megaphone.svg';\nimport Menu from './Menu.svg';\nimport Minus from './Minus.svg';\nimport NotAllowed from './NotAllowed.svg';\nimport Note from './Note.svg';\nimport OpenNewTab from './OpenNewTab.svg';\nimport Pause from './Pause.svg';\nimport Person from './Person.svg';\nimport PersonGroup from './PersonGroup.svg';\nimport PersonWithLock from './PersonWithLock.svg';\nimport Play from './Play.svg';\nimport Plus from './Plus.svg';\nimport PlusWithCircle from './PlusWithCircle.svg';\nimport QuestionMarkWithCircle from './QuestionMarkWithCircle.svg';\nimport Redo from './Redo.svg';\nimport Refresh from './Refresh.svg';\nimport Relationship from './Relationship.svg';\nimport ReplicaSet from './ReplicaSet.svg';\nimport Save from './Save.svg';\nimport Serverless from './Serverless.svg';\nimport ShardedCluster from './ShardedCluster.svg';\nimport Settings from './Settings.svg';\nimport Shell from './Shell.svg';\nimport SortAscending from './SortAscending.svg';\nimport SortDescending from './SortDescending.svg';\nimport SplitHorizontal from './SplitHorizontal.svg';\nimport SplitVertical from './SplitVertical.svg';\nimport Stitch from './Stitch.svg';\nimport Support from './Support.svg';\nimport Sweep from './Sweep.svg';\nimport Table from './Table.svg';\nimport TimeSeries from './TimeSeries.svg';\nimport Trash from './Trash.svg';\nimport Undo from './Undo.svg';\nimport University from './University.svg';\nimport Unlock from './Unlock.svg';\nimport Unsorted from './Unsorted.svg';\nimport UpDownCarets from './UpDownCarets.svg';\nimport Upload from './Upload.svg';\nimport VerticalEllipsis from './VerticalEllipsis.svg';\nimport Visibility from './Visibility.svg';\nimport VisibilityOff from './VisibilityOff.svg';\nimport Warning from './Warning.svg';\nimport X from './X.svg';\nimport XWithCircle from './XWithCircle.svg';\n\nconst _glyphs = {\n ActivityFeed,\n AddFile,\n Apps,\n Array,\n ArrowDown,\n ArrowLeft,\n ArrowRight,\n ArrowUp,\n Beaker,\n Bell,\n Building,\n Bulb,\n Calendar,\n CaretDown,\n CaretLeft,\n CaretRight,\n CaretUp,\n Charts,\n Checkmark,\n CheckmarkWithCircle,\n ChevronDown,\n ChevronLeft,\n ChevronRight,\n ChevronUp,\n Clock,\n ClockWithArrow,\n Clone,\n Cloud,\n Code,\n Connect,\n Copy,\n CreditCard,\n CurlyBraces,\n Cursor,\n Database,\n Diagram,\n Diagram2,\n Diagram3,\n Disconnect,\n Download,\n Edit,\n Ellipsis,\n Export,\n Favorite,\n File,\n Filter,\n FullScreenEnter,\n FullScreenExit,\n Folder,\n GlobeAmericas,\n GovernmentBuilding,\n Home,\n ImportantWithCircle,\n InfoWithCircle,\n InviteUser,\n Key,\n Laptop,\n Link,\n Lock,\n MagnifyingGlass,\n Megaphone,\n Menu,\n Minus,\n NotAllowed,\n Note,\n OpenNewTab,\n Pause,\n Person,\n PersonGroup,\n PersonWithLock,\n Play,\n Plus,\n PlusWithCircle,\n QuestionMarkWithCircle,\n Redo,\n Refresh,\n Relationship,\n ReplicaSet,\n Save,\n Serverless,\n ShardedCluster,\n Settings,\n Shell,\n SortAscending,\n SortDescending,\n SplitHorizontal,\n SplitVertical,\n Stitch,\n Support,\n Sweep,\n Table,\n TimeSeries,\n Trash,\n Undo,\n University,\n Unlock,\n Unsorted,\n UpDownCarets,\n Upload,\n VerticalEllipsis,\n Visibility,\n VisibilityOff,\n Warning,\n X,\n XWithCircle,\n} as const;\n\ntype GlyphName = keyof typeof _glyphs;\n\nconst glyphKeys = Object.keys(_glyphs) as Array<GlyphName>;\n\nexport const glyphs = glyphKeys.reduce((acc, name) => {\n acc[name] = createGlyphComponent(name, _glyphs[name]);\n\n return acc;\n}, {} as Record<GlyphName, LGGlyph.Component>);\n","import { createIconComponent } from './createIconComponent';\nimport { glyphs } from './glyphs';\n\nexport const Icon = createIconComponent(glyphs);\n","import { ComponentType, isValidElement, ReactNode } from 'react';\nimport { LGGlyph } from './types';\n\ntype ExtendedComponentType = ComponentType<any> & {\n [key: string]: any;\n};\n/**\n * Helper type to check if element is a LeafyGreen UI Glyph\n * @internal\n */\nfunction isComponentGlyph(node: ReactNode): node is LGGlyph.Element;\nfunction isComponentGlyph(\n component: ExtendedComponentType,\n): component is LGGlyph.Component;\nfunction isComponentGlyph(\n child: ReactNode | ExtendedComponentType,\n): child is LGGlyph.Element | LGGlyph.Component {\n // If we're received a rendered component (i.e. ReactNode)\n if (isValidElement(child)) {\n return (\n child != null &&\n typeof child === 'object' &&\n 'type' in child &&\n (child.type as any).isGlyph === true\n );\n }\n\n // If we've recieved a component function\n return (\n child != null &&\n typeof child === 'function' &&\n 'isGlyph' in child &&\n child.isGlyph === true\n );\n}\n\nexport { isComponentGlyph };\n"],"names":["Size","Small","Default","Large","XLarge","sizeMap","small","default","large","xlarge","_templateObject","_excluded","createIconComponent","glyphs","Icon","_ref","glyph","rest","_objectWithoutProperties","SVGComponent","isGlyph","___EmotionJSX","jsx","displayName","propTypes","PropTypes","oneOf","Object","keys","isRequired","size","oneOfType","values","number","createGlyphComponent","glyphName","Glyph","GlyphComponent","_generateAccessiblePr","className","_ref$size","fill","title","ariaLabelledby","ariaLabel","_ref$role","role","fillStyle","css","renderedSize","console","warn","_extends","cx","_defineProperty","height","width","_ref2","name","concat","replace","alt","generateAccessibleProps","string","_glyphs","ActivityFeed","AddFile","Apps","Array","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Beaker","Bell","Building","Bulb","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","Charts","Checkmark","CheckmarkWithCircle","ChevronDown","ChevronLeft","ChevronRight","ChevronUp","Clock","ClockWithArrow","Clone","Cloud","Code","Connect","Copy","CreditCard","CurlyBraces","Cursor","Database","Diagram","Diagram2","Diagram3","Disconnect","Download","Edit","Ellipsis","Export","Favorite","File","Filter","FullScreenEnter","FullScreenExit","Folder","GlobeAmericas","GovernmentBuilding","Home","ImportantWithCircle","InfoWithCircle","InviteUser","Key","Laptop","Link","Lock","MagnifyingGlass","Megaphone","Menu","Minus","NotAllowed","Note","OpenNewTab","Pause","Person","PersonGroup","PersonWithLock","Play","Plus","PlusWithCircle","QuestionMarkWithCircle","Redo","Refresh","Relationship","ReplicaSet","Save","Serverless","ShardedCluster","Settings","Shell","SortAscending","SortDescending","SplitHorizontal","SplitVertical","Stitch","Support","Sweep","Table","TimeSeries","Trash","Undo","University","Unlock","Unsorted","UpDownCarets","Upload","VerticalEllipsis","Visibility","VisibilityOff","Warning","X","XWithCircle","reduce","acc","child","isValidElement","_typeof","type"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/glyphCommon.ts","../src/createIconComponent.tsx","../src/createGlyphComponent.tsx","../src/glyphs/index.ts","../src/Icon.tsx","../src/isComponentGlyph.ts"],"sourcesContent":["export const Size = {\n Small: 'small',\n Default: 'default',\n Large: 'large',\n XLarge: 'xlarge',\n} as const;\n\nexport type Size = typeof Size[keyof typeof Size];\n\nexport const sizeMap: Record<Size, number> = {\n small: 14,\n default: 16,\n large: 20,\n xlarge: 24,\n} as const;\n\ninterface AccessibleFunctionParams {\n 'aria-labelledby'?: string;\n 'aria-label'?: string;\n title?: string | null;\n}\n\ntype AccessibleFunctionReturnType =\n | AccessibleFunctionParams\n | { 'aria-hidden': true; alt: '' };\n\nexport function generateAccessibleProps(\n role: 'img' | 'presentation',\n glyphName: string,\n {\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n title,\n }: AccessibleFunctionParams,\n): AccessibleFunctionReturnType {\n switch (role) {\n case 'img':\n if (!ariaLabel && !ariaLabelledby && !title) {\n return { 'aria-label': getGlyphLabel(glyphName) };\n }\n\n return {\n ['aria-labelledby']: ariaLabelledby,\n ['aria-label']: ariaLabel,\n title,\n };\n\n case 'presentation':\n return { 'aria-hidden': true, alt: '' };\n }\n}\n\nexport function getGlyphLabel(name: string) {\n return `${name.replace(/([a-z])([A-Z])/g, '$1 $2')} Icon`;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { LGGlyph } from './types';\nimport { Size } from './glyphCommon';\nimport { GlyphName } from './glyphs';\n\n// We omit size here because we map string values for size to numbers in this component.\nexport interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {\n glyph: GlyphName | string;\n size?: Size | number;\n}\n\ntype GlyphObject = Record<string, LGGlyph.Component>;\n\n/**\n * Returns a single component with a `glyph` prop to select the glyph\n * @param glyphs The set of glyphs\n * @returns Icon component\n */\nexport function createIconComponent<G extends GlyphObject = GlyphObject>(\n glyphs: G,\n) {\n const Icon = ({ glyph, ...rest }: IconProps) => {\n const SVGComponent = glyphs[glyph];\n SVGComponent.isGlyph = true;\n return <SVGComponent {...rest} />;\n };\n\n Icon.displayName = 'Icon';\n\n Icon.isGlyph = true;\n\n Icon.propTypes = {\n glyph: PropTypes.oneOf(Object.keys(glyphs)).isRequired,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n } as any;\n\n return Icon;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { SVGR, LGGlyph } from './types';\nimport { css, cx } from '@leafygreen-ui/emotion';\nimport { generateAccessibleProps, sizeMap, Size } from './glyphCommon';\n\n/**\n * Returns a single glyph component.\n * Process custom glyphs to ensure consistent behavior between custom and built-in icons\n * @param glyphName: string - the display name of the icon\n * @param Glyph: SVGR.Component - the SVG icon component\n * @returns LGGlyph.Component\n */\nexport function createGlyphComponent(\n glyphName: string,\n Glyph: SVGR.Component,\n): LGGlyph.Component {\n const GlyphComponent: LGGlyph.Component = ({\n className,\n size = Size.Default,\n fill,\n title,\n 'aria-labelledby': ariaLabelledby,\n 'aria-label': ariaLabel,\n role = 'img',\n ...rest\n }: LGGlyph.ComponentProps) => {\n const fillStyle = css`\n color: ${fill};\n `;\n\n const renderedSize = typeof size === 'number' ? size : sizeMap[size];\n\n if (!(role === 'img' || role === 'presentation')) {\n console.warn(\n \"Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'.\",\n );\n }\n\n return (\n <Glyph\n className={cx(\n {\n [fillStyle]: fill != null,\n },\n className,\n )}\n height={renderedSize}\n width={renderedSize}\n role={role}\n {...generateAccessibleProps(role, glyphName, {\n title,\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n })}\n {...rest}\n />\n );\n };\n\n GlyphComponent.displayName = glyphName;\n\n GlyphComponent.isGlyph = true;\n\n GlyphComponent.propTypes = {\n fill: PropTypes.string,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n className: PropTypes.string,\n };\n\n return GlyphComponent;\n}\n","import { createGlyphComponent } from '../createGlyphComponent';\nimport { LGGlyph } from '../types';\n\n// Glyphs\nimport ActivityFeed from './ActivityFeed.svg';\nimport AddFile from './AddFile.svg';\nimport Apps from './Apps.svg';\nimport Array from './Array.svg';\nimport ArrowDown from './ArrowDown.svg';\nimport ArrowLeft from './ArrowLeft.svg';\nimport ArrowRight from './ArrowRight.svg';\nimport ArrowUp from './ArrowUp.svg';\nimport Beaker from './Beaker.svg';\nimport Bell from './Bell.svg';\nimport Building from './Building.svg';\nimport Bulb from './Bulb.svg';\nimport Calendar from './Calendar.svg';\nimport CaretDown from './CaretDown.svg';\nimport CaretLeft from './CaretLeft.svg';\nimport CaretRight from './CaretRight.svg';\nimport CaretUp from './CaretUp.svg';\nimport Charts from './Charts.svg';\nimport Checkmark from './Checkmark.svg';\nimport CheckmarkWithCircle from './CheckmarkWithCircle.svg';\nimport ChevronDown from './ChevronDown.svg';\nimport ChevronLeft from './ChevronLeft.svg';\nimport ChevronRight from './ChevronRight.svg';\nimport ChevronUp from './ChevronUp.svg';\nimport Clock from './Clock.svg';\nimport ClockWithArrow from './ClockWithArrow.svg';\nimport Clone from './Clone.svg';\nimport Cloud from './Cloud.svg';\nimport Code from './Code.svg';\nimport Connect from './Connect.svg';\nimport Copy from './Copy.svg';\nimport CreditCard from './CreditCard.svg';\nimport CurlyBraces from './CurlyBraces.svg';\nimport Cursor from './Cursor.svg';\nimport Database from './Database.svg';\nimport Diagram from './Diagram.svg';\nimport Diagram2 from './Diagram2.svg';\nimport Diagram3 from './Diagram3.svg';\nimport Disconnect from './Disconnect.svg';\nimport Download from './Download.svg';\nimport Edit from './Edit.svg';\nimport Ellipsis from './Ellipsis.svg';\nimport Export from './Export.svg';\nimport Favorite from './Favorite.svg';\nimport File from './File.svg';\nimport Filter from './Filter.svg';\nimport FullScreenEnter from './FullScreenEnter.svg';\nimport FullScreenExit from './FullScreenExit.svg';\nimport Folder from './Folder.svg';\nimport GlobeAmericas from './GlobeAmericas.svg';\nimport GovernmentBuilding from './GovernmentBuilding.svg';\nimport Home from './Home.svg';\nimport ImportantWithCircle from './ImportantWithCircle.svg';\nimport InfoWithCircle from './InfoWithCircle.svg';\nimport InviteUser from './InviteUser.svg';\nimport Key from './Key.svg';\nimport Laptop from './Laptop.svg';\nimport Link from './Link.svg';\nimport Lock from './Lock.svg';\nimport MagnifyingGlass from './MagnifyingGlass.svg';\nimport Megaphone from './Megaphone.svg';\nimport Menu from './Menu.svg';\nimport Minus from './Minus.svg';\nimport NotAllowed from './NotAllowed.svg';\nimport Note from './Note.svg';\nimport OpenNewTab from './OpenNewTab.svg';\nimport Pause from './Pause.svg';\nimport Person from './Person.svg';\nimport PersonGroup from './PersonGroup.svg';\nimport PersonWithLock from './PersonWithLock.svg';\nimport Play from './Play.svg';\nimport Plus from './Plus.svg';\nimport PlusWithCircle from './PlusWithCircle.svg';\nimport QuestionMarkWithCircle from './QuestionMarkWithCircle.svg';\nimport Redo from './Redo.svg';\nimport Refresh from './Refresh.svg';\nimport Relationship from './Relationship.svg';\nimport ReplicaSet from './ReplicaSet.svg';\nimport Save from './Save.svg';\nimport Serverless from './Serverless.svg';\nimport ShardedCluster from './ShardedCluster.svg';\nimport Settings from './Settings.svg';\nimport Shell from './Shell.svg';\nimport SortAscending from './SortAscending.svg';\nimport SortDescending from './SortDescending.svg';\nimport SplitHorizontal from './SplitHorizontal.svg';\nimport SplitVertical from './SplitVertical.svg';\nimport Stitch from './Stitch.svg';\nimport Support from './Support.svg';\nimport Sweep from './Sweep.svg';\nimport Table from './Table.svg';\nimport TimeSeries from './TimeSeries.svg';\nimport Trash from './Trash.svg';\nimport Undo from './Undo.svg';\nimport University from './University.svg';\nimport Unlock from './Unlock.svg';\nimport Unsorted from './Unsorted.svg';\nimport UpDownCarets from './UpDownCarets.svg';\nimport Upload from './Upload.svg';\nimport VerticalEllipsis from './VerticalEllipsis.svg';\nimport Visibility from './Visibility.svg';\nimport VisibilityOff from './VisibilityOff.svg';\nimport Warning from './Warning.svg';\nimport X from './X.svg';\nimport XWithCircle from './XWithCircle.svg';\n\nexport const _glyphs = {\n ActivityFeed,\n AddFile,\n Apps,\n Array,\n ArrowDown,\n ArrowLeft,\n ArrowRight,\n ArrowUp,\n Beaker,\n Bell,\n Building,\n Bulb,\n Calendar,\n CaretDown,\n CaretLeft,\n CaretRight,\n CaretUp,\n Charts,\n Checkmark,\n CheckmarkWithCircle,\n ChevronDown,\n ChevronLeft,\n ChevronRight,\n ChevronUp,\n Clock,\n ClockWithArrow,\n Clone,\n Cloud,\n Code,\n Connect,\n Copy,\n CreditCard,\n CurlyBraces,\n Cursor,\n Database,\n Diagram,\n Diagram2,\n Diagram3,\n Disconnect,\n Download,\n Edit,\n Ellipsis,\n Export,\n Favorite,\n File,\n Filter,\n FullScreenEnter,\n FullScreenExit,\n Folder,\n GlobeAmericas,\n GovernmentBuilding,\n Home,\n ImportantWithCircle,\n InfoWithCircle,\n InviteUser,\n Key,\n Laptop,\n Link,\n Lock,\n MagnifyingGlass,\n Megaphone,\n Menu,\n Minus,\n NotAllowed,\n Note,\n OpenNewTab,\n Pause,\n Person,\n PersonGroup,\n PersonWithLock,\n Play,\n Plus,\n PlusWithCircle,\n QuestionMarkWithCircle,\n Redo,\n Refresh,\n Relationship,\n ReplicaSet,\n Save,\n Serverless,\n ShardedCluster,\n Settings,\n Shell,\n SortAscending,\n SortDescending,\n SplitHorizontal,\n SplitVertical,\n Stitch,\n Support,\n Sweep,\n Table,\n TimeSeries,\n Trash,\n Undo,\n University,\n Unlock,\n Unsorted,\n UpDownCarets,\n Upload,\n VerticalEllipsis,\n Visibility,\n VisibilityOff,\n Warning,\n X,\n XWithCircle,\n} as const;\n\nexport type GlyphName = keyof typeof _glyphs;\n\nconst glyphKeys = Object.keys(_glyphs) as Array<GlyphName>;\n\nexport const glyphs = glyphKeys.reduce((acc, name) => {\n acc[name] = createGlyphComponent(name, _glyphs[name]);\n\n return acc;\n}, {} as Record<GlyphName, LGGlyph.Component>);\n","import { createIconComponent } from './createIconComponent';\nimport { glyphs } from './glyphs';\n\nexport const Icon = createIconComponent(glyphs);\n","import { ComponentType, isValidElement, ReactNode } from 'react';\nimport { LGGlyph } from './types';\n\ntype ExtendedComponentType = ComponentType<any> & {\n [key: string]: any;\n};\n/**\n * Helper type to check if element is a LeafyGreen UI Glyph\n * @internal\n */\nfunction isComponentGlyph(node: ReactNode): node is LGGlyph.Element;\nfunction isComponentGlyph(\n component: ExtendedComponentType,\n): component is LGGlyph.Component;\nfunction isComponentGlyph(\n child: ReactNode | ExtendedComponentType,\n): child is LGGlyph.Element | LGGlyph.Component {\n // If we're received a rendered component (i.e. ReactNode)\n if (isValidElement(child)) {\n return (\n child != null &&\n typeof child === 'object' &&\n 'type' in child &&\n (child.type as any).isGlyph === true\n );\n }\n\n // If we've recieved a component function\n return (\n child != null &&\n typeof child === 'function' &&\n 'isGlyph' in child &&\n child.isGlyph === true\n );\n}\n\nexport { isComponentGlyph };\n"],"names":["Size","Small","Default","Large","XLarge","sizeMap","small","default","large","xlarge","_templateObject","_excluded","createIconComponent","glyphs","Icon","_ref","glyph","rest","_objectWithoutProperties","SVGComponent","isGlyph","___EmotionJSX","jsx","displayName","propTypes","PropTypes","oneOf","Object","keys","isRequired","size","oneOfType","values","number","createGlyphComponent","glyphName","Glyph","GlyphComponent","_generateAccessiblePr","className","_ref$size","fill","title","ariaLabelledby","ariaLabel","_ref$role","role","fillStyle","css","renderedSize","console","warn","_extends","cx","_defineProperty","height","width","_ref2","name","concat","replace","alt","generateAccessibleProps","string","_glyphs","ActivityFeed","AddFile","Apps","Array","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Beaker","Bell","Building","Bulb","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","Charts","Checkmark","CheckmarkWithCircle","ChevronDown","ChevronLeft","ChevronRight","ChevronUp","Clock","ClockWithArrow","Clone","Cloud","Code","Connect","Copy","CreditCard","CurlyBraces","Cursor","Database","Diagram","Diagram2","Diagram3","Disconnect","Download","Edit","Ellipsis","Export","Favorite","File","Filter","FullScreenEnter","FullScreenExit","Folder","GlobeAmericas","GovernmentBuilding","Home","ImportantWithCircle","InfoWithCircle","InviteUser","Key","Laptop","Link","Lock","MagnifyingGlass","Megaphone","Menu","Minus","NotAllowed","Note","OpenNewTab","Pause","Person","PersonGroup","PersonWithLock","Play","Plus","PlusWithCircle","QuestionMarkWithCircle","Redo","Refresh","Relationship","ReplicaSet","Save","Serverless","ShardedCluster","Settings","Shell","SortAscending","SortDescending","SplitHorizontal","SplitVertical","Stitch","Support","Sweep","Table","TimeSeries","Trash","Undo","University","Unlock","Unsorted","UpDownCarets","Upload","VerticalEllipsis","Visibility","VisibilityOff","Warning","X","XWithCircle","reduce","acc","child","isValidElement","_typeof","type"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafygreen-ui/icon",
|
|
3
|
-
"version": "11.11.0-
|
|
3
|
+
"version": "11.11.0-test.0",
|
|
4
4
|
"description": "LeafyGreen UI Kit Icons",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"xml2json": "^0.11.2"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@leafygreen-ui/
|
|
27
|
+
"@leafygreen-ui/emotion": "^4.0.2-test.0"
|
|
28
28
|
},
|
|
29
29
|
"gitHead": "dd71a2d404218ccec2e657df9c0263dc1c15b9e0",
|
|
30
30
|
"homepage": "https://github.com/mongodb/leafygreen-ui/tree/main/packages/icon",
|
|
@@ -35,4 +35,4 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://jira.mongodb.org/projects/PD/summary"
|
|
37
37
|
}
|
|
38
|
-
}
|
|
38
|
+
}
|
package/src/Icon.story.tsx
CHANGED
|
@@ -4,10 +4,15 @@ import Icon, { glyphs } from '.';
|
|
|
4
4
|
import { css } from '@leafygreen-ui/emotion';
|
|
5
5
|
import { ComponentStory, Meta } from '@storybook/react';
|
|
6
6
|
import { palette } from '@leafygreen-ui/palette';
|
|
7
|
+
import { IconProps } from './createIconComponent';
|
|
8
|
+
import { GlyphName } from './glyphs';
|
|
7
9
|
|
|
8
10
|
export default {
|
|
9
11
|
title: 'Components/Icons',
|
|
10
12
|
component: Icon,
|
|
13
|
+
parameters: {
|
|
14
|
+
default: 'Single',
|
|
15
|
+
},
|
|
11
16
|
} as Meta<typeof Icon>;
|
|
12
17
|
|
|
13
18
|
const containerStyle = css`
|
|
@@ -30,13 +35,34 @@ const textStyle = css`
|
|
|
30
35
|
margin-top: 0.5rem;
|
|
31
36
|
`;
|
|
32
37
|
|
|
33
|
-
export const
|
|
38
|
+
export const Single: ComponentStory<typeof Icon> = (args: IconProps) => {
|
|
39
|
+
if (!args.glyph) {
|
|
40
|
+
args = {
|
|
41
|
+
...args,
|
|
42
|
+
glyph: 'QuestionMarkWithCircle',
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return <Icon {...args} />;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
Single.argTypes = {
|
|
50
|
+
glyph: {
|
|
51
|
+
control: 'select',
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export const AllIcons: ComponentStory<typeof Icon> = (
|
|
56
|
+
args: Omit<IconProps, 'glyph'>,
|
|
57
|
+
) => (
|
|
34
58
|
<>
|
|
35
|
-
{Object.keys(glyphs).map(glyph =>
|
|
36
|
-
|
|
37
|
-
<
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
59
|
+
{Object.keys(glyphs).map(glyph => {
|
|
60
|
+
return (
|
|
61
|
+
<div key={glyph} className={containerStyle}>
|
|
62
|
+
<Icon {...args} glyph={glyph as GlyphName} />
|
|
63
|
+
<div className={textStyle}>{glyph}</div>
|
|
64
|
+
</div>
|
|
65
|
+
);
|
|
66
|
+
})}
|
|
41
67
|
</>
|
|
42
68
|
);
|
|
@@ -2,10 +2,11 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { LGGlyph } from './types';
|
|
4
4
|
import { Size } from './glyphCommon';
|
|
5
|
+
import { GlyphName } from './glyphs';
|
|
5
6
|
|
|
6
7
|
// We omit size here because we map string values for size to numbers in this component.
|
|
7
8
|
export interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {
|
|
8
|
-
glyph: string;
|
|
9
|
+
glyph: GlyphName | string;
|
|
9
10
|
size?: Size | number;
|
|
10
11
|
}
|
|
11
12
|
|
package/src/glyphs/index.ts
CHANGED
|
@@ -108,7 +108,7 @@ import Warning from './Warning.svg';
|
|
|
108
108
|
import X from './X.svg';
|
|
109
109
|
import XWithCircle from './XWithCircle.svg';
|
|
110
110
|
|
|
111
|
-
const _glyphs = {
|
|
111
|
+
export const _glyphs = {
|
|
112
112
|
ActivityFeed,
|
|
113
113
|
AddFile,
|
|
114
114
|
Apps,
|
|
@@ -216,7 +216,7 @@ const _glyphs = {
|
|
|
216
216
|
XWithCircle,
|
|
217
217
|
} as const;
|
|
218
218
|
|
|
219
|
-
type GlyphName = keyof typeof _glyphs;
|
|
219
|
+
export type GlyphName = keyof typeof _glyphs;
|
|
220
220
|
|
|
221
221
|
const glyphKeys = Object.keys(_glyphs) as Array<GlyphName>;
|
|
222
222
|
|
package/tsconfig.json
CHANGED
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.d.ts","../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","./src/types/svgr.ts","./src/types/lgglyph.ts","./src/types/index.ts","./src/glyphcommon.ts","./src/createiconcomponent.tsx","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@emotion/css/node_modules/@emotion/utils/types/index.d.ts","../../node_modules/@emotion/css/node_modules/@emotion/cache/types/index.d.ts","../../node_modules/@emotion/css/node_modules/@emotion/serialize/types/index.d.ts","../../node_modules/@emotion/css/node_modules/@emotion/sheet/types/index.d.ts","../../node_modules/@emotion/css/types/create-instance.d.ts","../emotion/dist/emotion.d.ts","../../node_modules/@emotion/server/node_modules/@emotion/utils/types/index.d.ts","../../node_modules/@emotion/server/types/create-instance.d.ts","../emotion/dist/index.d.ts","./src/createglyphcomponent.tsx","./src/glyphs/index.ts","./src/icon.tsx","./src/iscomponentglyph.ts","./src/index.ts","./src/generated/activityfeed.tsx","./src/generated/addfile.tsx","./src/generated/apps.tsx","./src/generated/array.tsx","./src/generated/arrowdown.tsx","./src/generated/arrowleft.tsx","./src/generated/arrowright.tsx","./src/generated/arrowup.tsx","./src/generated/beaker.tsx","./src/generated/bell.tsx","./src/generated/building.tsx","./src/generated/bulb.tsx","./src/generated/calendar.tsx","./src/generated/caretdown.tsx","./src/generated/caretleft.tsx","./src/generated/caretright.tsx","./src/generated/caretup.tsx","./src/generated/charts.tsx","./src/generated/checkmark.tsx","./src/generated/checkmarkwithcircle.tsx","./src/generated/chevrondown.tsx","./src/generated/chevronleft.tsx","./src/generated/chevronright.tsx","./src/generated/chevronup.tsx","./src/generated/clock.tsx","./src/generated/clockwitharrow.tsx","./src/generated/clone.tsx","./src/generated/cloud.tsx","./src/generated/code.tsx","./src/generated/connect.tsx","./src/generated/copy.tsx","./src/generated/creditcard.tsx","./src/generated/curlybraces.tsx","./src/generated/cursor.tsx","./src/generated/database.tsx","./src/generated/diagram.tsx","./src/generated/diagram2.tsx","./src/generated/diagram3.tsx","./src/generated/disconnect.tsx","./src/generated/download.tsx","./src/generated/edit.tsx","./src/generated/ellipsis.tsx","./src/generated/export.tsx","./src/generated/favorite.tsx","./src/generated/file.tsx","./src/generated/filter.tsx","./src/generated/folder.tsx","./src/generated/fullscreenenter.tsx","./src/generated/fullscreenexit.tsx","./src/generated/globeamericas.tsx","./src/generated/governmentbuilding.tsx","./src/generated/home.tsx","./src/generated/importantwithcircle.tsx","./src/generated/infowithcircle.tsx","./src/generated/inviteuser.tsx","./src/generated/key.tsx","./src/generated/laptop.tsx","./src/generated/link.tsx","./src/generated/lock.tsx","./src/generated/magnifyingglass.tsx","./src/generated/megaphone.tsx","./src/generated/menu.tsx","./src/generated/minus.tsx","./src/generated/notallowed.tsx","./src/generated/note.tsx","./src/generated/opennewtab.tsx","./src/generated/pause.tsx","./src/generated/person.tsx","./src/generated/persongroup.tsx","./src/generated/personwithlock.tsx","./src/generated/play.tsx","./src/generated/plus.tsx","./src/generated/pluswithcircle.tsx","./src/generated/questionmarkwithcircle.tsx","./src/generated/redo.tsx","./src/generated/refresh.tsx","./src/generated/relationship.tsx","./src/generated/replicaset.tsx","./src/generated/save.tsx","./src/generated/serverless.tsx","./src/generated/settings.tsx","./src/generated/shardedcluster.tsx","./src/generated/shell.tsx","./src/generated/sortascending.tsx","./src/generated/sortdescending.tsx","./src/generated/splithorizontal.tsx","./src/generated/splitvertical.tsx","./src/generated/stitch.tsx","./src/generated/support.tsx","./src/generated/sweep.tsx","./src/generated/table.tsx","./src/generated/timeseries.tsx","./src/generated/trash.tsx","./src/generated/undo.tsx","./src/generated/university.tsx","./src/generated/unlock.tsx","./src/generated/unsorted.tsx","./src/generated/updowncarets.tsx","./src/generated/upload.tsx","./src/generated/verticalellipsis.tsx","./src/generated/visibility.tsx","./src/generated/visibilityoff.tsx","./src/generated/warning.tsx","./src/generated/x.tsx","./src/generated/xwithcircle.tsx","./src/types/svg.d.ts","./src/types/svgr.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/eslint-visitor-keys/index.d.ts","../../node_modules/@types/estree-jsx/index.d.ts","../../node_modules/@types/facepaint/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/is-stream/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/difflines.d.ts","../../node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/jest-axe/node_modules/axe-core/axe.d.ts","../../node_modules/@types/jest-axe/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/mdurl/encode.d.ts","../../node_modules/@types/mdurl/decode.d.ts","../../node_modules/@types/mdurl/parse.d.ts","../../node_modules/@types/mdurl/format.d.ts","../../node_modules/@types/mdurl/index.d.ts","../../node_modules/@types/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/minimist-options/index.d.ts","../../node_modules/@types/meow/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/q/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-is/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-transition-group/transition.d.ts","../../node_modules/@types/react-transition-group/csstransition.d.ts","../../node_modules/@types/react-transition-group/transitiongroup.d.ts","../../node_modules/@types/react-transition-group/switchtransition.d.ts","../../node_modules/@types/react-transition-group/config.d.ts","../../node_modules/@types/react-transition-group/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/testing-library__jest-dom/matchers.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/testing-library__react-hooks/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/source.d.ts","../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/xml2json/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"96f7fd25e84591ab3f3fa62c075326ca1f1474784d34e7ae994c095d42c5dc26","affectsGlobalScope":true},"efe30f4da3926cedd04fcb73ec2dd88a9c8af97136e853cefc3ce7090aa17bfb","a2a2aeffca91b03754d28c3669ed091bf7c1642e2eb8ccc2751fca8522c776d2","79ad4ecd3a211f9077b2b5ea116873efefad66b58d5ccc258912045d892f4b38","9ea96b5e932f19c053e87e3c1fc09589887fbe7b385eb1a12721fdf0951c2fe5",{"version":"9f31036a49a20bd70b21a665df946aed36df9b9e4772631958593c2f2b1447ac","signature":"21836111b522f78b01b7816ab4ffa59895186f7304e6204368ae75508d8f7bb9"},"0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","531cd80e4dba2620d86844a50e7d21b89436e56a14e66d6774e99b3759ac69ad","03d59e612afdc3039a83b12d45b026306b291cfc8e2fc72859f7902b8a857caf","93b24ca76698e62732d72800da132367639a4426363c821338bbbd7cf6b64443","d4ee431e583470e6c76473213b7f35811d7bd95699d429534192cd36a267c9be","3e00f8013ccb95d6af68164248a602eb5cfd567343ea4aa4465f256e6cc71b2c","ad402539cf44cfdc9a7b3ae11064fd639951d45582936d52482964172704ba13","531cd80e4dba2620d86844a50e7d21b89436e56a14e66d6774e99b3759ac69ad","bfce884df64c50fa5070f9fa4b55f5ccbbf475d10ad92f75bf2b72bb8b1b6133","aec1b1b71cd5c2c213770843c338e5a9983c3d4aa27598378fca6c61bf12c913",{"version":"d5d789937bc9ebaa2d4bb6ee57396d36509e314e8884845604e35847ff7c56d5","signature":"dd8acbb8e61e7526ce3711a3cbef9431f0bce4ec8948c31b72c8417c7fc83c39"},{"version":"27db8aa4306f84ae43495a52b8b64070bbe2476e36ed90ad5943c38e4cc35030","signature":"b3b485c2653ba97bee0b88bf73ed259e97a2589d2ec5a270fa138985fa156443"},{"version":"b88526c12327741d2ece75911bf048a4bdcf0dbce65e16f45974558401d19ce3","signature":"f962111b1b466ae5f23214d5c7ff5041d6fade1e2343683f15b674bfedac4760"},{"version":"3a210e90bea16d049e4730ed86db9935fc01e89afb797966bf5470b1f516c8e1","signature":"9c24c540c6da81d2079c87291ff4008eae547ae0e16534223b7f30c42c8f04a3"},"3d44a21910a7e66dee1fff3bc4c2e32afa7487efefe7907bc4f32974579adb3d","f421c92183880dbfef647c29fa98dc4a5586c8f64a4ce6e94e71c27baff70492","285daae4e98cedf3e5f42aeaa1c97e00b14dc5aa14a6d76d199daca316c85f95","23743207a7d813b4baaa613bf2a4a3d31e5c84bdba08f2fa74c4355623aca8a0","be83bcbbaec842cebcf691f3cca9ce60958bcce9366d8601efc9c6e815f7f4d0","17cc05550a6199d1031b08cff4ff379dda3f519b062aa440f13a80bf7dea1935","215c4fd50fd96cc9336d5a339cfeb16ca873673548041beb11f05117a211f314","d0684612ae4564b33994b45ca1a9de5c71b4fbed2e3d105529491577b0ce5b79","6b2a2b14fcc136b1be5edd40e54345ea25dd333bb9de29c92ca5d3cd6488e5d4","ca679ed92f89088d5f15c980f7692d9e84f374dada54f2c9f3ae5ba4ec62c96d","42fc51e120e43d88ac68adfb90bb9799740029539c38722a49a4043c2a3ce251","605fbc716ebb52e4d48cba4d9019d110961705390218b59e44f9c834e8682026","59e5052cb6dbfd944b9f20e687f1c5e668ca5fbbaaf67c0d1914386ef4026844","9efa778500eddf78a09d4905cc58bcf56bb27b9856ba0cb4a4e0719d3c0ef4c6","e666d8a6f4839e3f4388802f921b2874c235f6f070d8378cf8ad16192b4146ec","c80af704fbab7909a83b01f160608753e5f46e904e981fbec567a5971ad4901f","d126cf81652cf60a5e54f65f571274eb7954bf5776ccf1a2264d192d6a39e8fe","3099b33aaa463f90b8a90612f3de384b61b6f409ac3ae8b6b6b2d072d19568dc","92e7bbe260c164014e075652689b23396e9bb40bf4afcbaa47ff7bf96f635dd5","660abe3965c67ccea99686b6f567ae1b70ddf655bff0c3ed7f1905e173d3f92a","55a17f9347586d28c27e7b6d3541c698db70e1613b4b6ad757039202aecb861c","83992e58b2b9518693c76344aaaac4ddf539d4ae65dae06d9739bcd4bb2b3de2","9f4ef684e55655ed84e745755a8d9d0ee682e2afa8d3e3f70f91440678a34942","15d8a84874138d72224ffe97b00a3566b866dea18326adbb0254bcd585817fee","25e6cac7a064e0b8299cec0955b20466b604ae6c0fbd566a8c6bbf4697c09d2d","9c18351fbca47699f9806b0a3ad1f78ed778e4f748bb0ef2d903105ce410f788","531db48fd4994a05cd5428fa8d26ea6c7fbd7424248d1b16f7f886d988321125","50f0fc8c74a151026638d11b889c39da60f07121e75da36a78fd14c9f6797492","5db258c2aadd43206da4a33dc4dbdb1e2f9c5678e9f5d4a63a04e820a9465bb5","8021d577c7e4a8b5b634afb716db8ebf867d4eb2f87c2c4cdbd016e216c9d52f","473361e898a55e1bb29ee09804205f28f56209186cc1a5f78e4f493eea8cc894","12b88aae5072f620bec2a92d49202003b0800075b684862b2a7bab2603d44e0d","35ebf1825565b4e54cbb06804f6813aa5e2bda2487be220de329e45770de88e0","210aedc6d4d347eaa662d393036218a41c15b663d171a0cae5d58102a2510fce","23169e39ba3bd78b489919d8a73c655d67fdb38c1e59affc3e1afa62cf59d0f1","06f2b1e4301fedde2e38c26026e1b379a0512995c63bc74e8da4aa17fd9a2e88","ce2da38d200fd4b84410185f19e1aa3ef57f5a5ea684958d4482a44f9709642c","d1483d9cf712acba6bddc30f88709db23154db8996c20f97edab01efdff688f6","7a3ccbb4b0c400c15bad6164655c859d0ab60f52baf32527897ac3811a49d700","ab0190d64342f15008ed4c4c4b37f3b7fa21cd0f19056612d5a5a0dd9ea89cd3","67f234c9fa917629cffbf47c68712209fc8fd73c76a62a3eb57c0251ca045343","e828b2af481d653b0ee5aecaee0190ae34d35089feebcb0fdfbcf0dedd4fbea4","08898f37316459dc4b6eddeb9923b3a599041ed36e00d32874ec87a2eda158fe","4f410bd748404e8b4219cbc963a2e6d6aee6e37b0ac9c027c108803ac290b7aa","30599e2f5202ea91b73b5a4d5b97229743ed91838da9c72e3a2c6e8bd5561244","12827c7362f1f296eb81a57f0dadf4a99faf1f1b6e33788030b98eacff7e145f","f4998440803550b3c5937ed74da275a692fc423527a13eaebf78d89551c2e143","82ee0055531f0833e57c702bd67039af304c5fe312a90b2da6f7ab6353654df6","b11960b89a9085ba42d2b5eaeffb2e1c6173c6da93d1f570b83b6f487b3fc1ba","e62d1ccce0a695632007ba28b628821592a8c6372ad80400df2eb638ec46666b","99fb3b91e9a610e78f186a648ea4728e07c65e577fbb8a4afacd45e0381b8e41","a5055f31417173ad716c7941fe2197d7c53fd49307a52ac5f0bf54cfe425f4b8","18cdd56047b54d7d694323f385e1a788b2c0881fa77ce461fe3810d18dd733f4","db05c196642aadd129efb084f6e5f8c13ed26e154eb0fbc7f9d36d0ae1f9e26c","06d32adb9077789fd5679a29b66c276ea0f96ba48b41c3067e963a5d9721eaae","4655ba13b9ea19791608822ffc2238ddd16cd6f9b028742658febbeeea7debb8","73c17165257d7a389f06dcb0fe4cb09273f1939683a8308b58302b6c8bc4bc7a","89b989072a794d2bccb2e95861f6429244d8fb960dea712908ca35792387141d","294fc272b9b66d7fd2135698405a5749830688d257b5f1cd38417ecd539b2aaa","798fa73ea4a9272e322ed6788d7ea9da2e59d92acba5957fb6116e63708e2bbe","9cce306a449bc91627f7ca55db7547dfce99f6aa5275abd763bacad9ea3e76e2","c685b23ced50d136ea60ebc14dd7c5b6e362116829b4e89288ea9e80e885b5d5","86eb6ffd12f50145c8ac42f5058e2be6bf45afd99d71695a99a93ed1274c86a5","1e7cc45824e01628e535bbf175393cf7e143df2b9a02a6d6277210d197e48821","df81750830ef3cfc32391707ad46e9af5887ba6631d8a542f6535ff6f7528055","f43c6295e38ba9a61b4949618b5fe5d5dd66de3859ad9022ea3edd02939565fe","3cd88d0ac67ffd5c6ffa8ad1340dd961530d8161933a6e2a49ab0aa00171d755","6265c6ccc36d7391154cb1035c266c03149cb75e19a490c23e8d372c3ecf6071","2f199a7e1496cadda6bc858ccb6cad34ae55d96b21d08f1354dbd643ed8146cc","a4802127e40db0cd8950a615f2cd1c15ccba6e68b5ddb5fa07bff179a7ab67dd","a7b47af85dffce08ce2c93200c85d4220142bf69034f9c9f207da2f1b3a1e6e9","dd641aa1e30d7b24a5745bf13a736b74cceca60b6fb1c0e782bbfdd938dc2897","f7a1a93336135ad6fc75bd5f4ce379d1fb456669934d729afa38c11fbf025d26","d2c9d400d786fcf117fdcc18e5a69e5016be7da68af97095d82a13684aa6b8bf","730e6b375bb4efb6676e719e180a41a2053f1a91651f285b532c7aaf5e95ee7a","1f72cdfd68c44447e8da98ffa3f71a26a2ac1d130e2b4f0beb9de05e11984823","b878909588e0d511ada290c2b18785e632713378db0d2a28d354e02a0cae4535","8d1825f1687bbb31d6e52097d49c235c732eddc6482b9902e3d66ea87dd5f33b","bf9e64eeba1bc5a0e60a1ef3448b7795864abed442b92cdba0f8e3d3ac7ff1b0","8869e1ef62c8e04a50868db6d0ab6f27e12ff64875d8b5a6530c03a5c731adce","ad7df016e042573d9a17292cdecb6f6c52d031ebba100f318c1f52824c6202ca","c3ebcd39d0c7a7fdf5fda27cb39f417b3be47602e091afc6db16179d613e42bd","8b6484949b35dda25cd36f7db0338c40081fe1114be8c949a193c380185e41d0","7ddff530561b125bf7d87acd0b2d31af32510da7e97a64c2b65226c1b939c139","a7d9911b837453482ef71b090a09766c74c67af41871de782cd58b5760baeb12","8a87a76c61a45918654d314fb232f99500d42d2de9d438f2b3eae6a848e59003","ba1e97ff3c5f26d968a6369c390c89723019b3cd1688505e96736a59aa7b5d5f","0f10b81fda638355f2d78560f1b56395a1b998480d1a2431e4c2340633e58671","f663e384a2c74b54f42bafeab372aa902a186680afb07306dbee5d9eeee72b0f","f8a0827177a292f5cefad06a8508856c94e6de84936f359bbd11b44c53af4f8b","ad28c08002a5b96f32c5f73fae2f74d79f8e0435a7076779db66c553e3cad01d","151b7af94b3a4c1393de3a42a9d108f74dbdcc7c00832a7719599c6d918a3a67","096b4d94943a2515b32004f0fae8a317cdca656effbadbe9c583cb8ac7774f09","f6c726bea423b82bcf985b97e750b58fc44fd460751773d933285e7319addcd7","85fd79eb6458b6975dced931bef87a4cea4a100344ac44f94e3ebfa1a4aed380","203fcf9b83443db8668b2156757fb0a19ebc0fa31ec820ddd4bb2e4e35a52598","0877cff029827b7322ae5f47ce6878f0d6c9adebdefacd594a1f6d03039e02c9","b1f81bf6a2d9860de41773a7a069d5a19c0547d7a25368815b6530d46aae2ec4","d257631e2647262faed4f25471f625882c20efd3f4ddc70f78d6153be8ce52d7","bba5c4d8c4c00732bc471bdd28caffcfe126500e5fec7e4e90e82fbbfe434707","17060a2c5eb39caeb70c6d0ecb145d201d44141844d6c3194393b4d522a78788","8d2156ef90e988cebde50cec64bfd475106d7d57c5cbe1dc12237a0d58e647db","8529bd8c3babc083aabb1241bf4dad9b67f0260fc5b60b7eaad637903941851f","87df44ca2ad6d9c327202203f873ff43f50f3e32217ef2bf3dce9dd36effc5b6","4df47ae6f5b62e3846ab670d389ea0578664e638df7f4501b135be7be3d1cfb4","0ccdae6d460481d65ad4150c9006089d658b5e5561312fb89d9c8060c473a3e3","fcdf03b410d752e6ebe52f2fe9c9cb71c718bbe0ae9f8fcbd4d7f3cde944fdc2","b5675f0f00591d1a470835641378c3c2b9280d882c2c930282ce331f681b3c33","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","159bda82b67a7aa30cf7dcf0110cad83bcc6620396830efd470890f0caa6c9c0","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8d9d743d7c21d105be24d154834a94557671c0ab0fc7f7329d3076784a80aa93","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","e18414a9b2fc1df7f58e15e774c07bd648280fcbe262b7ba88ecedf16b27d15e","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","913754f9281683f22d98d0ba7796896cee30c302baefa3dda69f61af8de244d8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","dd15bcab1d8a458d0c6d64635efeb03775fb5f9dcaaddf754a28afb98703f783","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"f748b7476f224e3e4032f1f15a2f33c395019b43078e27bd8a43fc57e9111bc8",{"version":"b859a1a1abea5f9ef2ab05c4333c1b98c0747e9de6d523af47fd3c9a413a8fb2","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","fbf60e241aeba45fd45fb650520b562ec2d851424e1ea88874b19f109efb7284","dea028a2cce6e312408e749dca6c629785f6ffe0bc93aa9ffcd91dbd61107707","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","c65157a42bfe2e8cc9b397a36721b44d83fb326d2349ecc1356a79f613267055","36c3e542cb94fc5d3d826a40923ef63bd92bbe03021bc692834af7934d9003ea","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","429b6df7d7b94389bd42cfdf39bccea903acd3628498cec6172302801fbeac89","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","c45d6f4d3a20be54e46237608f537a8d85397f87b9c3318d68ed925c2f1d0b51","06c2fc0bf929858d3ee5fb8c14f0a39b48d91bb8161b6480d833f787df761672",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","92decc8ffcee1e19965486f4c7440ab3fee1d6dfde4054eb308fc57b466cc12a","1429ac61feca4fdc074f60eb9b07f8b9e2c0ef9335c26e18d05f8ab67653f72b","e0db728e68cfb650b729496d5b1cb436930f593b6bf5b4ad692c18ebe40e9ee0","9155a57743465e6540e3e81a73f3d0c0630a5c5ff80e1be6232fbd46bcb6dc90","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","bd0f4458d57115491a1dd9fe522fa1d6ffe45a85b12bbd463967f90b50e43c29",{"version":"06279f0df6f368af41fe267319e90b5af9d89ad489d1662164b94ce30a797c79","affectsGlobalScope":true},"59bc581cd42d639c92920d7a9e27dd1eb2a18af81fb4fcb7c3e29eca54036103","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","c6c1427ba1efa270964d61564a3d99b59c0865a51dd55e4beb9f50e5c9aa8b51","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"e0c29cf48f8c3f7c96d9638c60ce6a68e4e2875760eca40a6e0f314c1e6c0997","affectsGlobalScope":true},"947c3cb2b57ac9f81472e89a9fdf70cbe4ef2ac38f45bb5811fb64cf5756e689","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./dist","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":false,"jsx":2,"module":99,"noUnusedLocals":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"target":1},"fileIdsList":[[96,228],[96],[96,104],[44,96,104],[96,105,106,107],[96,103,104],[96,225],[96,228,229,230,231,232],[96,228,230],[96,234],[96,235,236],[96,235],[96,238],[96,225,242],[96,225,240,241],[68,69,96,103,247],[69,96,103],[96,250],[96,253],[85,96,103],[96,257],[96,258],[96,267,268],[96,264,266],[96,271,273,274,275,276,277,278,279,280,281,282,283],[96,271,272,274,275,276,277,278,279,280,281,282,283],[96,272,273,274,275,276,277,278,279,280,281,282,283],[96,271,272,273,275,276,277,278,279,280,281,282,283],[96,271,272,273,274,276,277,278,279,280,281,282,283],[96,271,272,273,274,275,277,278,279,280,281,282,283],[96,271,272,273,274,275,276,278,279,280,281,282,283],[96,271,272,273,274,275,276,277,279,280,281,282,283],[96,271,272,273,274,275,276,277,278,280,281,282,283],[96,271,272,273,274,275,276,277,278,279,281,282,283],[96,271,272,273,274,275,276,277,278,279,280,282,283],[96,271,272,273,274,275,276,277,278,279,280,281,283],[96,271,272,273,274,275,276,277,278,279,280,281,282],[96,289],[96,285,286,287,288],[96,290,291],[96,293],[71,95,96,103,295,296],[53,96],[56,96],[57,62,96],[58,68,69,76,85,95,96],[58,59,68,76,96],[60,96],[61,62,69,77,96],[62,85,92,96],[63,65,68,76,96],[64,96],[65,66,96],[67,68,96],[68,96],[68,69,70,85,95,96],[68,69,70,85,96],[71,76,85,95,96],[68,69,71,72,76,85,92,95,96],[71,73,85,92,95,96],[53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],[68,74,96],[75,95,96],[65,68,76,85,96],[77,96],[78,96],[56,79,96],[80,94,96,100],[81,96],[82,96],[68,83,96],[83,84,96,98],[68,85,86,87,96],[85,87,96],[85,86,96],[88,96],[89,96],[68,90,91,96],[90,91,96],[62,76,85,92,96],[93,96],[76,94,96],[57,71,82,95,96],[62,96],[85,96,97],[96,98],[96,99],[57,62,68,70,79,85,95,96,98,100],[85,96,101],[47,96],[47,96,309],[47,96,311],[96,311,312,313,314,315],[43,44,45,46,96],[96,103],[96,267,324],[96,310],[96,327],[96,103,331,332,333,334,335,336,337,338,339,340,341],[96,330,331,340],[96,331,340],[96,321,330,331,340],[96,330,331,332,333,334,335,336,337,338,339,341],[96,331],[62,96,330,340],[62,96,103,323,327,328,329,342],[96,346],[71,85,96,103],[96,260,261],[96,260,261,262,263],[96,292],[96,265],[96,108],[96,103,108,109,111],[45,47,50,51,96,112],[45,47,50,51,96],[50,96,113,223],[52,96,114],[50,51,52,96,113,114,115,116],[47,50,96],[48,49,96],[47,48,96],[50],[50,51],[52],[50,51,52,113,114,115,116],[47,50]],"referencedMap":[[230,1],[228,2],[105,3],[106,4],[107,2],[104,2],[108,5],[110,2],[111,6],[226,7],[227,2],[233,8],[229,1],[231,9],[232,1],[235,10],[237,11],[236,12],[234,2],[239,13],[243,14],[244,2],[240,2],[242,15],[245,7],[225,2],[246,2],[248,16],[249,17],[251,18],[252,2],[254,19],[255,2],[256,20],[257,2],[258,21],[259,22],[269,23],[268,2],[267,24],[241,2],[270,2],[272,25],[273,26],[271,27],[274,28],[275,29],[276,30],[277,31],[278,32],[279,33],[280,34],[281,35],[282,36],[283,37],[284,18],[286,2],[285,2],[288,38],[289,39],[287,38],[291,40],[290,2],[294,41],[247,2],[292,2],[238,2],[296,2],[297,42],[53,43],[54,43],[56,44],[57,45],[58,46],[59,47],[60,48],[61,49],[62,50],[63,51],[64,52],[65,53],[66,53],[67,54],[68,55],[69,56],[70,57],[55,2],[102,2],[71,58],[72,59],[73,60],[103,61],[74,62],[75,63],[76,64],[77,65],[78,66],[79,67],[80,68],[81,69],[82,70],[83,71],[84,72],[85,73],[87,74],[86,75],[88,76],[89,77],[90,78],[91,79],[92,80],[93,81],[94,82],[95,83],[96,84],[97,85],[98,86],[99,87],[100,88],[101,89],[298,2],[299,55],[300,2],[301,2],[302,2],[303,2],[304,2],[45,2],[305,2],[306,2],[307,90],[308,90],[309,91],[310,90],[315,2],[312,92],[316,93],[314,90],[311,90],[313,92],[43,2],[47,94],[317,95],[318,2],[319,2],[46,2],[320,2],[321,2],[322,2],[323,2],[325,96],[324,2],[326,97],[328,98],[250,2],[344,2],[342,99],[341,100],[332,101],[333,102],[340,103],[334,102],[335,101],[336,101],[337,101],[338,104],[331,105],[339,100],[330,2],[343,106],[345,95],[346,2],[347,107],[329,2],[253,2],[44,2],[295,108],[260,2],[262,109],[264,110],[263,109],[261,2],[293,111],[266,112],[265,2],[327,2],[1,2],[9,2],[13,2],[12,2],[3,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[4,2],[5,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[6,2],[29,2],[30,2],[31,2],[32,2],[7,2],[33,2],[34,2],[35,2],[36,2],[8,2],[41,2],[37,2],[38,2],[39,2],[40,2],[2,2],[42,2],[11,2],[10,2],[109,113],[112,114],[113,115],[52,116],[118,115],[119,115],[120,115],[121,115],[122,115],[123,115],[124,115],[125,115],[126,115],[127,115],[128,115],[129,115],[130,115],[131,115],[132,115],[133,115],[134,115],[135,115],[136,115],[137,115],[138,115],[139,115],[140,115],[141,115],[142,115],[143,115],[144,115],[145,115],[146,115],[147,115],[148,115],[149,115],[150,115],[151,115],[152,115],[153,115],[154,115],[155,115],[156,115],[157,115],[158,115],[159,115],[160,115],[161,115],[162,115],[163,115],[164,115],[165,115],[166,115],[167,115],[168,115],[169,115],[170,115],[171,115],[172,115],[173,115],[174,115],[175,115],[176,115],[177,115],[178,115],[179,115],[180,115],[181,115],[182,115],[183,115],[184,115],[185,115],[186,115],[187,115],[188,115],[189,115],[190,115],[191,115],[192,115],[193,115],[194,115],[195,115],[196,115],[197,115],[198,115],[199,115],[200,115],[201,115],[202,115],[203,115],[204,115],[205,115],[206,115],[207,115],[208,115],[209,115],[210,115],[211,115],[212,115],[213,115],[214,115],[215,115],[216,115],[217,115],[218,115],[219,115],[220,115],[221,115],[222,115],[51,2],[114,117],[115,118],[117,119],[116,120],[50,121],[49,122],[223,2],[224,2],[48,90]],"exportedModulesMap":[[230,1],[228,2],[105,3],[106,4],[107,2],[104,2],[108,5],[110,2],[111,6],[226,7],[227,2],[233,8],[229,1],[231,9],[232,1],[235,10],[237,11],[236,12],[234,2],[239,13],[243,14],[244,2],[240,2],[242,15],[245,7],[225,2],[246,2],[248,16],[249,17],[251,18],[252,2],[254,19],[255,2],[256,20],[257,2],[258,21],[259,22],[269,23],[268,2],[267,24],[241,2],[270,2],[272,25],[273,26],[271,27],[274,28],[275,29],[276,30],[277,31],[278,32],[279,33],[280,34],[281,35],[282,36],[283,37],[284,18],[286,2],[285,2],[288,38],[289,39],[287,38],[291,40],[290,2],[294,41],[247,2],[292,2],[238,2],[296,2],[297,42],[53,43],[54,43],[56,44],[57,45],[58,46],[59,47],[60,48],[61,49],[62,50],[63,51],[64,52],[65,53],[66,53],[67,54],[68,55],[69,56],[70,57],[55,2],[102,2],[71,58],[72,59],[73,60],[103,61],[74,62],[75,63],[76,64],[77,65],[78,66],[79,67],[80,68],[81,69],[82,70],[83,71],[84,72],[85,73],[87,74],[86,75],[88,76],[89,77],[90,78],[91,79],[92,80],[93,81],[94,82],[95,83],[96,84],[97,85],[98,86],[99,87],[100,88],[101,89],[298,2],[299,55],[300,2],[301,2],[302,2],[303,2],[304,2],[45,2],[305,2],[306,2],[307,90],[308,90],[309,91],[310,90],[315,2],[312,92],[316,93],[314,90],[311,90],[313,92],[43,2],[47,94],[317,95],[318,2],[319,2],[46,2],[320,2],[321,2],[322,2],[323,2],[325,96],[324,2],[326,97],[328,98],[250,2],[344,2],[342,99],[341,100],[332,101],[333,102],[340,103],[334,102],[335,101],[336,101],[337,101],[338,104],[331,105],[339,100],[330,2],[343,106],[345,95],[346,2],[347,107],[329,2],[253,2],[44,2],[295,108],[260,2],[262,109],[264,110],[263,109],[261,2],[293,111],[266,112],[265,2],[327,2],[1,2],[9,2],[13,2],[12,2],[3,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[4,2],[5,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[6,2],[29,2],[30,2],[31,2],[32,2],[7,2],[33,2],[34,2],[35,2],[36,2],[8,2],[41,2],[37,2],[38,2],[39,2],[40,2],[2,2],[42,2],[11,2],[10,2],[109,113],[112,114],[113,123],[52,124],[118,115],[119,115],[120,115],[121,115],[122,115],[123,115],[124,115],[125,115],[126,115],[127,115],[128,115],[129,115],[130,115],[131,115],[132,115],[133,115],[134,115],[135,115],[136,115],[137,115],[138,115],[139,115],[140,115],[141,115],[142,115],[143,115],[144,115],[145,115],[146,115],[147,115],[148,115],[149,115],[150,115],[151,115],[152,115],[153,115],[154,115],[155,115],[156,115],[157,115],[158,115],[159,115],[160,115],[161,115],[162,115],[163,115],[164,115],[165,115],[166,115],[167,115],[168,115],[169,115],[170,115],[171,115],[172,115],[173,115],[174,115],[175,115],[176,115],[177,115],[178,115],[179,115],[180,115],[181,115],[182,115],[183,115],[184,115],[185,115],[186,115],[187,115],[188,115],[189,115],[190,115],[191,115],[192,115],[193,115],[194,115],[195,115],[196,115],[197,115],[198,115],[199,115],[200,115],[201,115],[202,115],[203,115],[204,115],[205,115],[206,115],[207,115],[208,115],[209,115],[210,115],[211,115],[212,115],[213,115],[214,115],[215,115],[216,115],[217,115],[218,115],[219,115],[220,115],[221,115],[222,115],[51,2],[114,123],[115,125],[117,126],[116,127],[50,121],[49,122],[223,2],[224,2],[48,90]],"semanticDiagnosticsPerFile":[230,228,105,106,107,104,108,110,111,226,227,233,229,231,232,235,237,236,234,239,243,244,240,242,245,225,246,248,249,251,252,254,255,256,257,258,259,269,268,267,241,270,272,273,271,274,275,276,277,278,279,280,281,282,283,284,286,285,288,289,287,291,290,294,247,292,238,296,297,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,55,102,71,72,73,103,74,75,76,77,78,79,80,81,82,83,84,85,87,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,298,299,300,301,302,303,304,45,305,306,307,308,309,310,315,312,316,314,311,313,43,47,317,318,319,46,320,321,322,323,325,324,326,328,250,344,342,341,332,333,340,334,335,336,337,338,331,339,330,343,345,346,347,329,253,44,295,260,262,264,263,261,293,266,265,327,1,9,13,12,3,14,15,16,17,18,19,20,21,4,5,25,22,23,24,26,27,28,6,29,30,31,32,7,33,34,35,36,8,41,37,38,39,40,2,42,11,10,109,112,113,52,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,51,114,115,117,116,50,49,223,224,48]},"version":"4.6.3"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.d.ts","../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","./src/types/svgr.ts","./src/types/lgglyph.ts","./src/types/index.ts","./src/glyphcommon.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@emotion/css/node_modules/@emotion/utils/types/index.d.ts","../../node_modules/@emotion/css/node_modules/@emotion/cache/types/index.d.ts","../../node_modules/@emotion/css/node_modules/@emotion/serialize/types/index.d.ts","../../node_modules/@emotion/css/node_modules/@emotion/sheet/types/index.d.ts","../../node_modules/@emotion/css/types/create-instance.d.ts","../emotion/dist/emotion.d.ts","../../node_modules/@emotion/server/node_modules/@emotion/utils/types/index.d.ts","../../node_modules/@emotion/server/types/create-instance.d.ts","../emotion/dist/index.d.ts","./src/createglyphcomponent.tsx","./src/glyphs/index.ts","./src/createiconcomponent.tsx","./src/icon.tsx","./src/iscomponentglyph.ts","./src/index.ts","./src/generated/activityfeed.tsx","./src/generated/addfile.tsx","./src/generated/apps.tsx","./src/generated/array.tsx","./src/generated/arrowdown.tsx","./src/generated/arrowleft.tsx","./src/generated/arrowright.tsx","./src/generated/arrowup.tsx","./src/generated/beaker.tsx","./src/generated/bell.tsx","./src/generated/building.tsx","./src/generated/bulb.tsx","./src/generated/calendar.tsx","./src/generated/caretdown.tsx","./src/generated/caretleft.tsx","./src/generated/caretright.tsx","./src/generated/caretup.tsx","./src/generated/charts.tsx","./src/generated/checkmark.tsx","./src/generated/checkmarkwithcircle.tsx","./src/generated/chevrondown.tsx","./src/generated/chevronleft.tsx","./src/generated/chevronright.tsx","./src/generated/chevronup.tsx","./src/generated/clock.tsx","./src/generated/clockwitharrow.tsx","./src/generated/clone.tsx","./src/generated/cloud.tsx","./src/generated/code.tsx","./src/generated/connect.tsx","./src/generated/copy.tsx","./src/generated/creditcard.tsx","./src/generated/curlybraces.tsx","./src/generated/cursor.tsx","./src/generated/database.tsx","./src/generated/diagram.tsx","./src/generated/diagram2.tsx","./src/generated/diagram3.tsx","./src/generated/disconnect.tsx","./src/generated/download.tsx","./src/generated/edit.tsx","./src/generated/ellipsis.tsx","./src/generated/export.tsx","./src/generated/favorite.tsx","./src/generated/file.tsx","./src/generated/filter.tsx","./src/generated/folder.tsx","./src/generated/fullscreenenter.tsx","./src/generated/fullscreenexit.tsx","./src/generated/globeamericas.tsx","./src/generated/governmentbuilding.tsx","./src/generated/home.tsx","./src/generated/importantwithcircle.tsx","./src/generated/infowithcircle.tsx","./src/generated/inviteuser.tsx","./src/generated/key.tsx","./src/generated/laptop.tsx","./src/generated/link.tsx","./src/generated/lock.tsx","./src/generated/magnifyingglass.tsx","./src/generated/megaphone.tsx","./src/generated/menu.tsx","./src/generated/minus.tsx","./src/generated/notallowed.tsx","./src/generated/note.tsx","./src/generated/opennewtab.tsx","./src/generated/pause.tsx","./src/generated/person.tsx","./src/generated/persongroup.tsx","./src/generated/personwithlock.tsx","./src/generated/play.tsx","./src/generated/plus.tsx","./src/generated/pluswithcircle.tsx","./src/generated/questionmarkwithcircle.tsx","./src/generated/redo.tsx","./src/generated/refresh.tsx","./src/generated/relationship.tsx","./src/generated/replicaset.tsx","./src/generated/save.tsx","./src/generated/serverless.tsx","./src/generated/settings.tsx","./src/generated/shardedcluster.tsx","./src/generated/shell.tsx","./src/generated/sortascending.tsx","./src/generated/sortdescending.tsx","./src/generated/splithorizontal.tsx","./src/generated/splitvertical.tsx","./src/generated/stitch.tsx","./src/generated/support.tsx","./src/generated/sweep.tsx","./src/generated/table.tsx","./src/generated/timeseries.tsx","./src/generated/trash.tsx","./src/generated/undo.tsx","./src/generated/university.tsx","./src/generated/unlock.tsx","./src/generated/unsorted.tsx","./src/generated/updowncarets.tsx","./src/generated/upload.tsx","./src/generated/verticalellipsis.tsx","./src/generated/visibility.tsx","./src/generated/visibilityoff.tsx","./src/generated/warning.tsx","./src/generated/x.tsx","./src/generated/xwithcircle.tsx","./src/types/svg.d.ts","./src/types/svgr.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/eslint-visitor-keys/index.d.ts","../../node_modules/@types/estree-jsx/index.d.ts","../../node_modules/@types/facepaint/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/is-stream/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/jest-axe/node_modules/axe-core/axe.d.ts","../../node_modules/@types/jest-axe/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/mdurl/encode.d.ts","../../node_modules/@types/mdurl/decode.d.ts","../../node_modules/@types/mdurl/parse.d.ts","../../node_modules/@types/mdurl/format.d.ts","../../node_modules/@types/mdurl/index.d.ts","../../node_modules/@types/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/minimist-options/index.d.ts","../../node_modules/@types/meow/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/q/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-is/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-transition-group/transition.d.ts","../../node_modules/@types/react-transition-group/csstransition.d.ts","../../node_modules/@types/react-transition-group/transitiongroup.d.ts","../../node_modules/@types/react-transition-group/switchtransition.d.ts","../../node_modules/@types/react-transition-group/config.d.ts","../../node_modules/@types/react-transition-group/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/testing-library__jest-dom/matchers.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/testing-library__react-hooks/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/source.d.ts","../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/xml2json/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"96f7fd25e84591ab3f3fa62c075326ca1f1474784d34e7ae994c095d42c5dc26","affectsGlobalScope":true},"efe30f4da3926cedd04fcb73ec2dd88a9c8af97136e853cefc3ce7090aa17bfb","a2a2aeffca91b03754d28c3669ed091bf7c1642e2eb8ccc2751fca8522c776d2","79ad4ecd3a211f9077b2b5ea116873efefad66b58d5ccc258912045d892f4b38","9ea96b5e932f19c053e87e3c1fc09589887fbe7b385eb1a12721fdf0951c2fe5","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","531cd80e4dba2620d86844a50e7d21b89436e56a14e66d6774e99b3759ac69ad","03d59e612afdc3039a83b12d45b026306b291cfc8e2fc72859f7902b8a857caf","93b24ca76698e62732d72800da132367639a4426363c821338bbbd7cf6b64443","d4ee431e583470e6c76473213b7f35811d7bd95699d429534192cd36a267c9be","3e00f8013ccb95d6af68164248a602eb5cfd567343ea4aa4465f256e6cc71b2c","ad402539cf44cfdc9a7b3ae11064fd639951d45582936d52482964172704ba13","531cd80e4dba2620d86844a50e7d21b89436e56a14e66d6774e99b3759ac69ad","bfce884df64c50fa5070f9fa4b55f5ccbbf475d10ad92f75bf2b72bb8b1b6133","aec1b1b71cd5c2c213770843c338e5a9983c3d4aa27598378fca6c61bf12c913",{"version":"d5d789937bc9ebaa2d4bb6ee57396d36509e314e8884845604e35847ff7c56d5","signature":"dd8acbb8e61e7526ce3711a3cbef9431f0bce4ec8948c31b72c8417c7fc83c39"},{"version":"46409cf61042ef2c4776e00f7999dcee9d59cba32eafebfec9d0433c6d386013","signature":"4ce6eb5f3ca720eb03ac32e4289d993c3ff71623cc97656e2c7968f24d220c3f"},{"version":"c809875b8895179c4b0a670b7a98abe8eaf120d72f7aa59948e213110164cf4a","signature":"22837761424e67b45d77cb6b77e2305ded790c4a487c326c39bf977ec86362eb"},{"version":"b88526c12327741d2ece75911bf048a4bdcf0dbce65e16f45974558401d19ce3","signature":"f962111b1b466ae5f23214d5c7ff5041d6fade1e2343683f15b674bfedac4760"},{"version":"3a210e90bea16d049e4730ed86db9935fc01e89afb797966bf5470b1f516c8e1","signature":"9c24c540c6da81d2079c87291ff4008eae547ae0e16534223b7f30c42c8f04a3"},"3d44a21910a7e66dee1fff3bc4c2e32afa7487efefe7907bc4f32974579adb3d","f421c92183880dbfef647c29fa98dc4a5586c8f64a4ce6e94e71c27baff70492","285daae4e98cedf3e5f42aeaa1c97e00b14dc5aa14a6d76d199daca316c85f95","23743207a7d813b4baaa613bf2a4a3d31e5c84bdba08f2fa74c4355623aca8a0","be83bcbbaec842cebcf691f3cca9ce60958bcce9366d8601efc9c6e815f7f4d0","17cc05550a6199d1031b08cff4ff379dda3f519b062aa440f13a80bf7dea1935","215c4fd50fd96cc9336d5a339cfeb16ca873673548041beb11f05117a211f314","d0684612ae4564b33994b45ca1a9de5c71b4fbed2e3d105529491577b0ce5b79","6b2a2b14fcc136b1be5edd40e54345ea25dd333bb9de29c92ca5d3cd6488e5d4","ca679ed92f89088d5f15c980f7692d9e84f374dada54f2c9f3ae5ba4ec62c96d","42fc51e120e43d88ac68adfb90bb9799740029539c38722a49a4043c2a3ce251","605fbc716ebb52e4d48cba4d9019d110961705390218b59e44f9c834e8682026","59e5052cb6dbfd944b9f20e687f1c5e668ca5fbbaaf67c0d1914386ef4026844","9efa778500eddf78a09d4905cc58bcf56bb27b9856ba0cb4a4e0719d3c0ef4c6","e666d8a6f4839e3f4388802f921b2874c235f6f070d8378cf8ad16192b4146ec","c80af704fbab7909a83b01f160608753e5f46e904e981fbec567a5971ad4901f","d126cf81652cf60a5e54f65f571274eb7954bf5776ccf1a2264d192d6a39e8fe","3099b33aaa463f90b8a90612f3de384b61b6f409ac3ae8b6b6b2d072d19568dc","92e7bbe260c164014e075652689b23396e9bb40bf4afcbaa47ff7bf96f635dd5","660abe3965c67ccea99686b6f567ae1b70ddf655bff0c3ed7f1905e173d3f92a","55a17f9347586d28c27e7b6d3541c698db70e1613b4b6ad757039202aecb861c","83992e58b2b9518693c76344aaaac4ddf539d4ae65dae06d9739bcd4bb2b3de2","9f4ef684e55655ed84e745755a8d9d0ee682e2afa8d3e3f70f91440678a34942","15d8a84874138d72224ffe97b00a3566b866dea18326adbb0254bcd585817fee","25e6cac7a064e0b8299cec0955b20466b604ae6c0fbd566a8c6bbf4697c09d2d","9c18351fbca47699f9806b0a3ad1f78ed778e4f748bb0ef2d903105ce410f788","531db48fd4994a05cd5428fa8d26ea6c7fbd7424248d1b16f7f886d988321125","50f0fc8c74a151026638d11b889c39da60f07121e75da36a78fd14c9f6797492","5db258c2aadd43206da4a33dc4dbdb1e2f9c5678e9f5d4a63a04e820a9465bb5","8021d577c7e4a8b5b634afb716db8ebf867d4eb2f87c2c4cdbd016e216c9d52f","473361e898a55e1bb29ee09804205f28f56209186cc1a5f78e4f493eea8cc894","12b88aae5072f620bec2a92d49202003b0800075b684862b2a7bab2603d44e0d","35ebf1825565b4e54cbb06804f6813aa5e2bda2487be220de329e45770de88e0","210aedc6d4d347eaa662d393036218a41c15b663d171a0cae5d58102a2510fce","23169e39ba3bd78b489919d8a73c655d67fdb38c1e59affc3e1afa62cf59d0f1","06f2b1e4301fedde2e38c26026e1b379a0512995c63bc74e8da4aa17fd9a2e88","ce2da38d200fd4b84410185f19e1aa3ef57f5a5ea684958d4482a44f9709642c","d1483d9cf712acba6bddc30f88709db23154db8996c20f97edab01efdff688f6","7a3ccbb4b0c400c15bad6164655c859d0ab60f52baf32527897ac3811a49d700","ab0190d64342f15008ed4c4c4b37f3b7fa21cd0f19056612d5a5a0dd9ea89cd3","67f234c9fa917629cffbf47c68712209fc8fd73c76a62a3eb57c0251ca045343","e828b2af481d653b0ee5aecaee0190ae34d35089feebcb0fdfbcf0dedd4fbea4","08898f37316459dc4b6eddeb9923b3a599041ed36e00d32874ec87a2eda158fe","4f410bd748404e8b4219cbc963a2e6d6aee6e37b0ac9c027c108803ac290b7aa","30599e2f5202ea91b73b5a4d5b97229743ed91838da9c72e3a2c6e8bd5561244","12827c7362f1f296eb81a57f0dadf4a99faf1f1b6e33788030b98eacff7e145f","f4998440803550b3c5937ed74da275a692fc423527a13eaebf78d89551c2e143","82ee0055531f0833e57c702bd67039af304c5fe312a90b2da6f7ab6353654df6","b11960b89a9085ba42d2b5eaeffb2e1c6173c6da93d1f570b83b6f487b3fc1ba","e62d1ccce0a695632007ba28b628821592a8c6372ad80400df2eb638ec46666b","99fb3b91e9a610e78f186a648ea4728e07c65e577fbb8a4afacd45e0381b8e41","a5055f31417173ad716c7941fe2197d7c53fd49307a52ac5f0bf54cfe425f4b8","18cdd56047b54d7d694323f385e1a788b2c0881fa77ce461fe3810d18dd733f4","db05c196642aadd129efb084f6e5f8c13ed26e154eb0fbc7f9d36d0ae1f9e26c","06d32adb9077789fd5679a29b66c276ea0f96ba48b41c3067e963a5d9721eaae","4655ba13b9ea19791608822ffc2238ddd16cd6f9b028742658febbeeea7debb8","73c17165257d7a389f06dcb0fe4cb09273f1939683a8308b58302b6c8bc4bc7a","89b989072a794d2bccb2e95861f6429244d8fb960dea712908ca35792387141d","294fc272b9b66d7fd2135698405a5749830688d257b5f1cd38417ecd539b2aaa","798fa73ea4a9272e322ed6788d7ea9da2e59d92acba5957fb6116e63708e2bbe","9cce306a449bc91627f7ca55db7547dfce99f6aa5275abd763bacad9ea3e76e2","c685b23ced50d136ea60ebc14dd7c5b6e362116829b4e89288ea9e80e885b5d5","86eb6ffd12f50145c8ac42f5058e2be6bf45afd99d71695a99a93ed1274c86a5","1e7cc45824e01628e535bbf175393cf7e143df2b9a02a6d6277210d197e48821","df81750830ef3cfc32391707ad46e9af5887ba6631d8a542f6535ff6f7528055","f43c6295e38ba9a61b4949618b5fe5d5dd66de3859ad9022ea3edd02939565fe","3cd88d0ac67ffd5c6ffa8ad1340dd961530d8161933a6e2a49ab0aa00171d755","6265c6ccc36d7391154cb1035c266c03149cb75e19a490c23e8d372c3ecf6071","2f199a7e1496cadda6bc858ccb6cad34ae55d96b21d08f1354dbd643ed8146cc","a4802127e40db0cd8950a615f2cd1c15ccba6e68b5ddb5fa07bff179a7ab67dd","a7b47af85dffce08ce2c93200c85d4220142bf69034f9c9f207da2f1b3a1e6e9","dd641aa1e30d7b24a5745bf13a736b74cceca60b6fb1c0e782bbfdd938dc2897","f7a1a93336135ad6fc75bd5f4ce379d1fb456669934d729afa38c11fbf025d26","d2c9d400d786fcf117fdcc18e5a69e5016be7da68af97095d82a13684aa6b8bf","730e6b375bb4efb6676e719e180a41a2053f1a91651f285b532c7aaf5e95ee7a","1f72cdfd68c44447e8da98ffa3f71a26a2ac1d130e2b4f0beb9de05e11984823","b878909588e0d511ada290c2b18785e632713378db0d2a28d354e02a0cae4535","8d1825f1687bbb31d6e52097d49c235c732eddc6482b9902e3d66ea87dd5f33b","bf9e64eeba1bc5a0e60a1ef3448b7795864abed442b92cdba0f8e3d3ac7ff1b0","8869e1ef62c8e04a50868db6d0ab6f27e12ff64875d8b5a6530c03a5c731adce","ad7df016e042573d9a17292cdecb6f6c52d031ebba100f318c1f52824c6202ca","c3ebcd39d0c7a7fdf5fda27cb39f417b3be47602e091afc6db16179d613e42bd","8b6484949b35dda25cd36f7db0338c40081fe1114be8c949a193c380185e41d0","7ddff530561b125bf7d87acd0b2d31af32510da7e97a64c2b65226c1b939c139","a7d9911b837453482ef71b090a09766c74c67af41871de782cd58b5760baeb12","8a87a76c61a45918654d314fb232f99500d42d2de9d438f2b3eae6a848e59003","ba1e97ff3c5f26d968a6369c390c89723019b3cd1688505e96736a59aa7b5d5f","0f10b81fda638355f2d78560f1b56395a1b998480d1a2431e4c2340633e58671","f663e384a2c74b54f42bafeab372aa902a186680afb07306dbee5d9eeee72b0f","f8a0827177a292f5cefad06a8508856c94e6de84936f359bbd11b44c53af4f8b","ad28c08002a5b96f32c5f73fae2f74d79f8e0435a7076779db66c553e3cad01d","151b7af94b3a4c1393de3a42a9d108f74dbdcc7c00832a7719599c6d918a3a67","096b4d94943a2515b32004f0fae8a317cdca656effbadbe9c583cb8ac7774f09","f6c726bea423b82bcf985b97e750b58fc44fd460751773d933285e7319addcd7","85fd79eb6458b6975dced931bef87a4cea4a100344ac44f94e3ebfa1a4aed380","203fcf9b83443db8668b2156757fb0a19ebc0fa31ec820ddd4bb2e4e35a52598","0877cff029827b7322ae5f47ce6878f0d6c9adebdefacd594a1f6d03039e02c9","b1f81bf6a2d9860de41773a7a069d5a19c0547d7a25368815b6530d46aae2ec4","d257631e2647262faed4f25471f625882c20efd3f4ddc70f78d6153be8ce52d7","bba5c4d8c4c00732bc471bdd28caffcfe126500e5fec7e4e90e82fbbfe434707","17060a2c5eb39caeb70c6d0ecb145d201d44141844d6c3194393b4d522a78788","8d2156ef90e988cebde50cec64bfd475106d7d57c5cbe1dc12237a0d58e647db","8529bd8c3babc083aabb1241bf4dad9b67f0260fc5b60b7eaad637903941851f","87df44ca2ad6d9c327202203f873ff43f50f3e32217ef2bf3dce9dd36effc5b6","4df47ae6f5b62e3846ab670d389ea0578664e638df7f4501b135be7be3d1cfb4","0ccdae6d460481d65ad4150c9006089d658b5e5561312fb89d9c8060c473a3e3","fcdf03b410d752e6ebe52f2fe9c9cb71c718bbe0ae9f8fcbd4d7f3cde944fdc2","b5675f0f00591d1a470835641378c3c2b9280d882c2c930282ce331f681b3c33","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","159bda82b67a7aa30cf7dcf0110cad83bcc6620396830efd470890f0caa6c9c0","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8d9d743d7c21d105be24d154834a94557671c0ab0fc7f7329d3076784a80aa93","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","e18414a9b2fc1df7f58e15e774c07bd648280fcbe262b7ba88ecedf16b27d15e","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","913754f9281683f22d98d0ba7796896cee30c302baefa3dda69f61af8de244d8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","dd15bcab1d8a458d0c6d64635efeb03775fb5f9dcaaddf754a28afb98703f783","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"f748b7476f224e3e4032f1f15a2f33c395019b43078e27bd8a43fc57e9111bc8",{"version":"b859a1a1abea5f9ef2ab05c4333c1b98c0747e9de6d523af47fd3c9a413a8fb2","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","fbf60e241aeba45fd45fb650520b562ec2d851424e1ea88874b19f109efb7284","dea028a2cce6e312408e749dca6c629785f6ffe0bc93aa9ffcd91dbd61107707","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","c65157a42bfe2e8cc9b397a36721b44d83fb326d2349ecc1356a79f613267055","36c3e542cb94fc5d3d826a40923ef63bd92bbe03021bc692834af7934d9003ea","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","429b6df7d7b94389bd42cfdf39bccea903acd3628498cec6172302801fbeac89","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","c45d6f4d3a20be54e46237608f537a8d85397f87b9c3318d68ed925c2f1d0b51","06c2fc0bf929858d3ee5fb8c14f0a39b48d91bb8161b6480d833f787df761672",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","92decc8ffcee1e19965486f4c7440ab3fee1d6dfde4054eb308fc57b466cc12a","1429ac61feca4fdc074f60eb9b07f8b9e2c0ef9335c26e18d05f8ab67653f72b","e0db728e68cfb650b729496d5b1cb436930f593b6bf5b4ad692c18ebe40e9ee0","9155a57743465e6540e3e81a73f3d0c0630a5c5ff80e1be6232fbd46bcb6dc90","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","bd0f4458d57115491a1dd9fe522fa1d6ffe45a85b12bbd463967f90b50e43c29",{"version":"06279f0df6f368af41fe267319e90b5af9d89ad489d1662164b94ce30a797c79","affectsGlobalScope":true},"59bc581cd42d639c92920d7a9e27dd1eb2a18af81fb4fcb7c3e29eca54036103","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","c6c1427ba1efa270964d61564a3d99b59c0865a51dd55e4beb9f50e5c9aa8b51","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"e0c29cf48f8c3f7c96d9638c60ce6a68e4e2875760eca40a6e0f314c1e6c0997","affectsGlobalScope":true},"947c3cb2b57ac9f81472e89a9fdf70cbe4ef2ac38f45bb5811fb64cf5756e689","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./dist","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":false,"jsx":2,"module":99,"noUnusedLocals":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"target":1},"fileIdsList":[[95,228],[95],[95,103],[44,95,103],[95,104,105,106],[95,102,103],[95,225],[95,228,229,230,231,232],[95,228,230],[95,234],[95,235,236],[95,235],[95,238],[95,225,242],[95,225,240,241],[67,68,95,102,247],[68,95,102],[95,250],[95,253],[84,95,102],[95,257],[95,258],[95,269,270],[95,263,268],[95,261,264],[95,261,264,265,266],[95,263],[95,260,267],[95,262],[95,273,275,276,277,278,279,280,281,282,283,284,285],[95,273,274,276,277,278,279,280,281,282,283,284,285],[95,274,275,276,277,278,279,280,281,282,283,284,285],[95,273,274,275,277,278,279,280,281,282,283,284,285],[95,273,274,275,276,278,279,280,281,282,283,284,285],[95,273,274,275,276,277,279,280,281,282,283,284,285],[95,273,274,275,276,277,278,280,281,282,283,284,285],[95,273,274,275,276,277,278,279,281,282,283,284,285],[95,273,274,275,276,277,278,279,280,282,283,284,285],[95,273,274,275,276,277,278,279,280,281,283,284,285],[95,273,274,275,276,277,278,279,280,281,282,284,285],[95,273,274,275,276,277,278,279,280,281,282,283,285],[95,273,274,275,276,277,278,279,280,281,282,283,284],[95,291],[95,287,288,289,290],[95,292,293],[95,295],[70,94,95,102,297,298],[52,95],[55,95],[56,61,95],[57,67,68,75,84,94,95],[57,58,67,75,95],[59,95],[60,61,68,76,95],[61,84,91,95],[62,64,67,75,95],[63,95],[64,65,95],[66,67,95],[67,95],[67,68,69,84,94,95],[67,68,69,84,95],[70,75,84,94,95],[67,68,70,71,75,84,91,94,95],[70,72,84,91,94,95],[52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],[67,73,95],[74,94,95],[64,67,75,84,95],[76,95],[77,95],[55,78,95],[79,93,95,99],[80,95],[81,95],[67,82,95],[82,83,95,97],[67,84,85,86,95],[84,86,95],[84,85,95],[87,95],[88,95],[67,89,90,95],[89,90,95],[61,75,84,91,95],[92,95],[75,93,95],[56,70,81,94,95],[61,95],[84,95,96],[95,97],[95,98],[56,61,67,69,78,84,94,95,97,99],[84,95,100],[47,95],[47,95,311],[47,95,313],[95,313,314,315,316,317],[43,44,45,46,95],[95,102],[95,269,326],[95,312],[95,329],[95,102,333,334,335,336,337,338,339,340,341,342,343],[95,332,333,342],[95,333,342],[95,323,332,333,342],[95,332,333,334,335,336,337,338,339,340,341,343],[95,333],[61,95,332,342],[61,95,102,325,329,330,331,344],[95,348],[70,84,95,102],[95,294],[95,107],[95,102,107,108,110],[45,47,50,51,95,111],[45,47,50,51,95,113],[50,95,112,223],[95,113,114],[50,51,95,112,113,114,115,116],[47,50,95],[48,49,95],[47,48,95],[50],[50,51,113],[47,50],[114],[50,51,112,113,114,115,116]],"referencedMap":[[230,1],[228,2],[104,3],[105,4],[106,2],[103,2],[107,5],[109,2],[110,6],[226,7],[227,2],[233,8],[229,1],[231,9],[232,1],[235,10],[237,11],[236,12],[234,2],[239,13],[243,14],[244,2],[240,2],[242,15],[245,7],[225,2],[246,2],[248,16],[249,17],[251,18],[252,2],[254,19],[255,2],[256,20],[257,2],[258,21],[259,22],[271,23],[270,2],[269,24],[261,2],[265,25],[267,26],[266,25],[264,27],[268,28],[263,29],[262,2],[241,2],[272,2],[274,30],[275,31],[273,32],[276,33],[277,34],[278,35],[279,36],[280,37],[281,38],[282,39],[283,40],[284,41],[285,42],[286,18],[288,2],[287,2],[290,43],[291,44],[289,43],[293,45],[292,2],[296,46],[247,2],[294,2],[238,2],[298,2],[299,47],[52,48],[53,48],[55,49],[56,50],[57,51],[58,52],[59,53],[60,54],[61,55],[62,56],[63,57],[64,58],[65,58],[66,59],[67,60],[68,61],[69,62],[54,2],[101,2],[70,63],[71,64],[72,65],[102,66],[73,67],[74,68],[75,69],[76,70],[77,71],[78,72],[79,73],[80,74],[81,75],[82,76],[83,77],[84,78],[86,79],[85,80],[87,81],[88,82],[89,83],[90,84],[91,85],[92,86],[93,87],[94,88],[95,89],[96,90],[97,91],[98,92],[99,93],[100,94],[300,2],[301,60],[302,2],[303,2],[304,2],[305,2],[306,2],[45,2],[307,2],[308,2],[309,95],[310,95],[311,96],[312,95],[317,2],[314,97],[318,98],[316,95],[313,95],[315,97],[43,2],[47,99],[319,100],[320,2],[321,2],[46,2],[322,2],[323,2],[324,2],[325,2],[327,101],[326,2],[328,102],[330,103],[250,2],[346,2],[344,104],[343,105],[334,106],[335,107],[342,108],[336,107],[337,106],[338,106],[339,106],[340,109],[333,110],[341,105],[332,2],[345,111],[347,100],[348,2],[349,112],[331,2],[260,2],[253,2],[44,2],[297,113],[295,114],[329,2],[1,2],[9,2],[13,2],[12,2],[3,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[4,2],[5,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[6,2],[29,2],[30,2],[31,2],[32,2],[7,2],[33,2],[34,2],[35,2],[36,2],[8,2],[41,2],[37,2],[38,2],[39,2],[40,2],[2,2],[42,2],[11,2],[10,2],[108,115],[111,116],[112,117],[114,118],[118,117],[119,117],[120,117],[121,117],[122,117],[123,117],[124,117],[125,117],[126,117],[127,117],[128,117],[129,117],[130,117],[131,117],[132,117],[133,117],[134,117],[135,117],[136,117],[137,117],[138,117],[139,117],[140,117],[141,117],[142,117],[143,117],[144,117],[145,117],[146,117],[147,117],[148,117],[149,117],[150,117],[151,117],[152,117],[153,117],[154,117],[155,117],[156,117],[157,117],[158,117],[159,117],[160,117],[161,117],[162,117],[163,117],[164,117],[165,117],[166,117],[167,117],[168,117],[169,117],[170,117],[171,117],[172,117],[173,117],[174,117],[175,117],[176,117],[177,117],[178,117],[179,117],[180,117],[181,117],[182,117],[183,117],[184,117],[185,117],[186,117],[187,117],[188,117],[189,117],[190,117],[191,117],[192,117],[193,117],[194,117],[195,117],[196,117],[197,117],[198,117],[199,117],[200,117],[201,117],[202,117],[203,117],[204,117],[205,117],[206,117],[207,117],[208,117],[209,117],[210,117],[211,117],[212,117],[213,117],[214,117],[215,117],[216,117],[217,117],[218,117],[219,117],[220,117],[221,117],[222,117],[51,2],[113,119],[115,120],[117,121],[116,122],[50,123],[49,124],[223,2],[224,2],[48,95]],"exportedModulesMap":[[230,1],[228,2],[104,3],[105,4],[106,2],[103,2],[107,5],[109,2],[110,6],[226,7],[227,2],[233,8],[229,1],[231,9],[232,1],[235,10],[237,11],[236,12],[234,2],[239,13],[243,14],[244,2],[240,2],[242,15],[245,7],[225,2],[246,2],[248,16],[249,17],[251,18],[252,2],[254,19],[255,2],[256,20],[257,2],[258,21],[259,22],[271,23],[270,2],[269,24],[261,2],[265,25],[267,26],[266,25],[264,27],[268,28],[263,29],[262,2],[241,2],[272,2],[274,30],[275,31],[273,32],[276,33],[277,34],[278,35],[279,36],[280,37],[281,38],[282,39],[283,40],[284,41],[285,42],[286,18],[288,2],[287,2],[290,43],[291,44],[289,43],[293,45],[292,2],[296,46],[247,2],[294,2],[238,2],[298,2],[299,47],[52,48],[53,48],[55,49],[56,50],[57,51],[58,52],[59,53],[60,54],[61,55],[62,56],[63,57],[64,58],[65,58],[66,59],[67,60],[68,61],[69,62],[54,2],[101,2],[70,63],[71,64],[72,65],[102,66],[73,67],[74,68],[75,69],[76,70],[77,71],[78,72],[79,73],[80,74],[81,75],[82,76],[83,77],[84,78],[86,79],[85,80],[87,81],[88,82],[89,83],[90,84],[91,85],[92,86],[93,87],[94,88],[95,89],[96,90],[97,91],[98,92],[99,93],[100,94],[300,2],[301,60],[302,2],[303,2],[304,2],[305,2],[306,2],[45,2],[307,2],[308,2],[309,95],[310,95],[311,96],[312,95],[317,2],[314,97],[318,98],[316,95],[313,95],[315,97],[43,2],[47,99],[319,100],[320,2],[321,2],[46,2],[322,2],[323,2],[324,2],[325,2],[327,101],[326,2],[328,102],[330,103],[250,2],[346,2],[344,104],[343,105],[334,106],[335,107],[342,108],[336,107],[337,106],[338,106],[339,106],[340,109],[333,110],[341,105],[332,2],[345,111],[347,100],[348,2],[349,112],[331,2],[260,2],[253,2],[44,2],[297,113],[295,114],[329,2],[1,2],[9,2],[13,2],[12,2],[3,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[4,2],[5,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[6,2],[29,2],[30,2],[31,2],[32,2],[7,2],[33,2],[34,2],[35,2],[36,2],[8,2],[41,2],[37,2],[38,2],[39,2],[40,2],[2,2],[42,2],[11,2],[10,2],[108,115],[111,116],[112,125],[114,126],[118,117],[119,117],[120,117],[121,117],[122,117],[123,117],[124,117],[125,117],[126,117],[127,117],[128,117],[129,117],[130,117],[131,117],[132,117],[133,117],[134,117],[135,117],[136,117],[137,117],[138,117],[139,117],[140,117],[141,117],[142,117],[143,117],[144,117],[145,117],[146,117],[147,117],[148,117],[149,117],[150,117],[151,117],[152,117],[153,117],[154,117],[155,117],[156,117],[157,117],[158,117],[159,117],[160,117],[161,117],[162,117],[163,117],[164,117],[165,117],[166,117],[167,117],[168,117],[169,117],[170,117],[171,117],[172,117],[173,117],[174,117],[175,117],[176,117],[177,117],[178,117],[179,117],[180,117],[181,117],[182,117],[183,117],[184,117],[185,117],[186,117],[187,117],[188,117],[189,117],[190,117],[191,117],[192,117],[193,117],[194,117],[195,117],[196,117],[197,117],[198,117],[199,117],[200,117],[201,117],[202,117],[203,117],[204,117],[205,117],[206,117],[207,117],[208,117],[209,117],[210,117],[211,117],[212,117],[213,117],[214,117],[215,117],[216,117],[217,117],[218,117],[219,117],[220,117],[221,117],[222,117],[51,2],[113,127],[115,128],[117,129],[116,127],[50,123],[49,124],[223,2],[224,2],[48,95]],"semanticDiagnosticsPerFile":[230,228,104,105,106,103,107,109,110,226,227,233,229,231,232,235,237,236,234,239,243,244,240,242,245,225,246,248,249,251,252,254,255,256,257,258,259,271,270,269,261,265,267,266,264,268,263,262,241,272,274,275,273,276,277,278,279,280,281,282,283,284,285,286,288,287,290,291,289,293,292,296,247,294,238,298,299,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,54,101,70,71,72,102,73,74,75,76,77,78,79,80,81,82,83,84,86,85,87,88,89,90,91,92,93,94,95,96,97,98,99,100,300,301,302,303,304,305,306,45,307,308,309,310,311,312,317,314,318,316,313,315,43,47,319,320,321,46,322,323,324,325,327,326,328,330,250,346,344,343,334,335,342,336,337,338,339,340,333,341,332,345,347,348,349,331,260,253,44,297,295,329,1,9,13,12,3,14,15,16,17,18,19,20,21,4,5,25,22,23,24,26,27,28,6,29,30,31,32,7,33,34,35,36,8,41,37,38,39,40,2,42,11,10,108,111,112,114,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,51,113,115,117,116,50,49,223,224,48]},"version":"4.6.3"}
|