@cambly/syntax-core 1.19.0 → 2.1.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.
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../node_modules/classnames/index.js","../src/Avatar/Avatar.tsx","css-module:./Avatar.module.css#css-module","../src/Button/Button.tsx","css-module:./colors.module.css#css-module","../src/colors/backgroundColor.ts","../src/colors/foregroundColor.ts","../src/ButtonGroup/ButtonGroupContext.tsx","css-module:./Button.module.css#css-module","../src/ButtonGroup/ButtonGroup.tsx","css-module:./ButtonGroup.module.css#css-module","css-module:./Card.module.css#css-module","../src/Card/Card.tsx","css-module:./Divider.module.css#css-module","../src/Divider/Divider.tsx","../src/Typography/Typography.tsx","css-module:./Typography.module.css#css-module","css-module:../colors/colors.module.css#css-module","../src/Heading/Heading.tsx","../src/IconButton/IconButton.tsx","css-module:./IconButton.module.css#css-module","../src/LabeledCheckbox/LabeledCheckbox.tsx","css-module:./LabeledCheckbox.module.css#css-module","css-module:./MiniActionCard.module.css#css-module","../src/MiniActionCard/MiniActionCard.tsx","../src/RadioButton/RadioButton.tsx","css-module:./RadioButton.module.css#css-module"],"sourcesContent":["/*!\n\tCopyright (c) 2018 Jed Watson.\n\tLicensed under the MIT License (MIT), see\n\thttp://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\tvar nativeCodeString = '[native code]';\n\n\tfunction classNames() {\n\t\tvar classes = [];\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (!arg) continue;\n\n\t\t\tvar argType = typeof arg;\n\n\t\t\tif (argType === 'string' || argType === 'number') {\n\t\t\t\tclasses.push(arg);\n\t\t\t} else if (Array.isArray(arg)) {\n\t\t\t\tif (arg.length) {\n\t\t\t\t\tvar inner = classNames.apply(null, arg);\n\t\t\t\t\tif (inner) {\n\t\t\t\t\t\tclasses.push(inner);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if (argType === 'object') {\n\t\t\t\tif (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {\n\t\t\t\t\tclasses.push(arg.toString());\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tfor (var key in arg) {\n\t\t\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\t\t\tclasses.push(key);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn classes.join(' ');\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n","import classNames from \"classnames\";\nimport styles from \"./Avatar.module.css\";\n\n/**\n * Avatar is a circular image that represents a user.\n */\nconst Avatar = ({\n src,\n accessibilityLabel,\n size = \"md\",\n}: {\n /**\n * URL of the image to display as the avatar.\n */\n src: string;\n /**\n * Alt text to use for the image.\n * This should describe the image to people using screen readers.\n */\n accessibilityLabel: string;\n /**\n * Size of the avatar.\n *\n * * `sm`: 24px\n * * `md`: 40px\n * * `lg`: 72px\n * * `xl`: 128px\n *\n * @defaultValue `md`\n */\n size?: \"sm\" | \"md\" | \"lg\" | \"xl\";\n}): JSX.Element => {\n return (\n <img\n alt={accessibilityLabel}\n src={src}\n className={classNames(styles.avatar, styles[size])}\n />\n );\n};\n\nexport default Avatar;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Avatar/Avatar.module.css\"; export default {\"avatar\":\"_avatar_1s8z7_1\",\"sm\":\"_sm_1s8z7_8\",\"md\":\"_md_1s8z7_13\",\"lg\":\"_lg_1s8z7_18\",\"xl\":\"_xl_1s8z7_23\"}","import classNames from \"classnames\";\nimport backgroundColor from \"../colors//backgroundColor\";\nimport foregroundColor from \"../colors/foregroundColor\";\nimport React, { useContext, ReactElement } from \"react\";\nimport { Color, Size } from \"../constants\";\nimport ButtonGroupContext from \"../ButtonGroup/ButtonGroupContext\";\nimport styles from \"./Button.module.css\";\n\nconst textVariant = {\n // Replace with `Typography` once it lands in `syntax-core`\n [\"sm\"]: styles.buttonTextSmall,\n [\"md\"]: styles.buttonTextMedium,\n [\"lg\"]: styles.buttonTextLarge,\n} as const;\n\nconst loadingIconSize = {\n [\"sm\"]: 16,\n [\"md\"]: 20,\n [\"lg\"]: 24,\n};\n\nconst iconSize = {\n [\"sm\"]: styles.smIcon,\n [\"md\"]: styles.mdIcon,\n [\"lg\"]: styles.lgIcon,\n};\n\n/**\n * Button is a clickable element that is used to perform an action.\n */\nconst Button = ({\n text,\n loadingText,\n color = \"primary\",\n size: sizeProp = \"md\",\n accessibilityLabel,\n disabled: disabledProp = false,\n loading = false,\n fullWidth: fullWidthProp = false,\n startIcon: StartIcon,\n endIcon: EndIcon,\n onClick,\n tooltip,\n}: {\n /**\n * The text to be displayed inside the button\n */\n text: string;\n /**\n * The text to be displayed inside the button when it is in a loading state\n */\n loadingText?: string;\n /**\n * The color of the button\n *\n * @defaultValue \"primary\"\n */\n color?: (typeof Color)[number];\n /**\n * The size of the button\n *\n * * `sm`: 32px\n * * `md`: 40px\n * * `lg`: 48px\n *\n * @defaultValue \"md\"\n */\n size?: (typeof Size)[number];\n /**\n * The label to be used for accessibility\n */\n accessibilityLabel?: string;\n /**\n * If `true`, the button will be disabled\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * If `true`, the button will be in a loading state\n *\n * @defaultValue false\n */\n loading?: boolean;\n /**\n * If `true`, the button will take up the full width of its container\n *\n * @defaultValue false\n */\n fullWidth?: boolean;\n /**\n * The icon to be displayed at the start of the button. Please use a [Rounded Material Icon](https://material.io/resources/icons/?style=round)\n */\n startIcon?: React.ComponentType<{ className: string }>;\n /**\n * The icon to be displayed at the end of the button. Please use a [Rounded Material Icon](https://material.io/resources/icons/?style=round)\n */\n endIcon?: React.ComponentType<{ className: string }>;\n /**\n * The callback to be called when the button is clicked\n */\n onClick: React.MouseEventHandler<HTMLButtonElement>;\n /**\n * The tooltip to be displayed when the user hovers over the button\n */\n tooltip?: string;\n}): ReactElement => {\n const contextProps = useContext(ButtonGroupContext);\n\n const size = contextProps?.size || sizeProp;\n const disabled = contextProps?.disabled || disabledProp;\n const fullWidth = contextProps?.fullWidth || fullWidthProp;\n\n return (\n <button\n aria-label={accessibilityLabel}\n type=\"button\"\n title={tooltip}\n disabled={disabled || loading}\n onClick={onClick}\n className={classNames(\n styles.button,\n foregroundColor(color),\n backgroundColor(color),\n styles[size],\n {\n [styles.fullWidth]: fullWidth,\n [styles.buttonGap]: size === \"lg\" || size === \"md\",\n },\n )}\n >\n {!loading && StartIcon && (\n <StartIcon className={classNames(styles.icon, iconSize[size])} />\n )}\n {((loading && loadingText) || (!loading && text)) && (\n <div className={styles.textContainer}>\n {/* Replace with `Typography` once it lands in `syntax-core` */}\n <div className={classNames(styles.buttonText, textVariant[size])}>\n {loading ? loadingText : text}\n </div>\n </div>\n )}\n {!loading && EndIcon && (\n <EndIcon className={classNames(styles.icon, iconSize[size])} />\n )}\n {loading && (\n <svg\n className={classNames(styles.loading, foregroundColor(color))}\n viewBox=\"22 22 44 44\"\n width={loadingIconSize[size]}\n height={loadingIconSize[size]}\n >\n <circle\n className={styles.loadingCircle}\n cx=\"44\"\n cy=\"44\"\n r=\"20.2\"\n fill=\"none\"\n strokeWidth=\"3.6\"\n />\n </svg>\n )}\n </button>\n );\n};\n\nexport default Button;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/colors/colors.module.css\"; export default {\"inheritColor\":\"_inheritColor_j1pwm_2\",\"destructive700Color\":\"_destructive700Color_j1pwm_6\",\"gray700Color\":\"_gray700Color_j1pwm_10\",\"gray900Color\":\"_gray900Color_j1pwm_14\",\"primary700Color\":\"_primary700Color_j1pwm_18\",\"whiteColor\":\"_whiteColor_j1pwm_22\",\"blackBackgroundColor\":\"_blackBackgroundColor_j1pwm_27\",\"destructive100BackgroundColor\":\"_destructive100BackgroundColor_j1pwm_31\",\"destructive200BackgroundColor\":\"_destructive200BackgroundColor_j1pwm_35\",\"destructive300BackgroundColor\":\"_destructive300BackgroundColor_j1pwm_39\",\"destructive700BackgroundColor\":\"_destructive700BackgroundColor_j1pwm_43\",\"destructive800BackgroundColor\":\"_destructive800BackgroundColor_j1pwm_47\",\"destructive900BackgroundColor\":\"_destructive900BackgroundColor_j1pwm_51\",\"gray10BackgroundColor\":\"_gray10BackgroundColor_j1pwm_55\",\"gray30BackgroundColor\":\"_gray30BackgroundColor_j1pwm_59\",\"gray80BackgroundColor\":\"_gray80BackgroundColor_j1pwm_63\",\"gray100BackgroundColor\":\"_gray100BackgroundColor_j1pwm_67\",\"gray200BackgroundColor\":\"_gray200BackgroundColor_j1pwm_71\",\"gray300BackgroundColor\":\"_gray300BackgroundColor_j1pwm_75\",\"gray700BackgroundColor\":\"_gray700BackgroundColor_j1pwm_79\",\"gray800BackgroundColor\":\"_gray800BackgroundColor_j1pwm_83\",\"gray900BackgroundColor\":\"_gray900BackgroundColor_j1pwm_87\",\"orange100BackgroundColor\":\"_orange100BackgroundColor_j1pwm_91\",\"orange200BackgroundColor\":\"_orange200BackgroundColor_j1pwm_95\",\"orange300BackgroundColor\":\"_orange300BackgroundColor_j1pwm_99\",\"orange700BackgroundColor\":\"_orange700BackgroundColor_j1pwm_103\",\"orange800BackgroundColor\":\"_orange800BackgroundColor_j1pwm_107\",\"orange900BackgroundColor\":\"_orange900BackgroundColor_j1pwm_111\",\"primary100BackgroundColor\":\"_primary100BackgroundColor_j1pwm_115\",\"primary200BackgroundColor\":\"_primary200BackgroundColor_j1pwm_119\",\"primary300BackgroundColor\":\"_primary300BackgroundColor_j1pwm_123\",\"primary700BackgroundColor\":\"_primary700BackgroundColor_j1pwm_127\",\"primary800BackgroundColor\":\"_primary800BackgroundColor_j1pwm_131\",\"primary900BackgroundColor\":\"_primary900BackgroundColor_j1pwm_135\",\"success100BackgroundColor\":\"_success100BackgroundColor_j1pwm_139\",\"success200BackgroundColor\":\"_success200BackgroundColor_j1pwm_143\",\"success300BackgroundColor\":\"_success300BackgroundColor_j1pwm_147\",\"success700BackgroundColor\":\"_success700BackgroundColor_j1pwm_151\",\"success800BackgroundColor\":\"_success800BackgroundColor_j1pwm_155\",\"success900BackgroundColor\":\"_success900BackgroundColor_j1pwm_159\",\"purple100BackgroundColor\":\"_purple100BackgroundColor_j1pwm_163\",\"purple200BackgroundColor\":\"_purple200BackgroundColor_j1pwm_167\",\"purple300BackgroundColor\":\"_purple300BackgroundColor_j1pwm_171\",\"purple700BackgroundColor\":\"_purple700BackgroundColor_j1pwm_175\",\"purple800BackgroundColor\":\"_purple800BackgroundColor_j1pwm_179\",\"purple900BackgroundColor\":\"_purple900BackgroundColor_j1pwm_183\",\"whiteBackgroundColor\":\"_whiteBackgroundColor_j1pwm_187\",\"yellow100BackgroundColor\":\"_yellow100BackgroundColor_j1pwm_191\",\"yellow200BackgroundColor\":\"_yellow200BackgroundColor_j1pwm_195\",\"yellow300BackgroundColor\":\"_yellow300BackgroundColor_j1pwm_199\",\"yellow700BackgroundColor\":\"_yellow700BackgroundColor_j1pwm_203\",\"yellow800BackgroundColor\":\"_yellow800BackgroundColor_j1pwm_207\",\"yellow900BackgroundColor\":\"_yellow900BackgroundColor_j1pwm_211\"}","import { Color } from \"../constants\";\nimport styles from \"./colors.module.css\";\n\nexport default function backgroundColor(color: (typeof Color)[number]): string {\n switch (color) {\n case \"secondary\":\n return styles.primary100BackgroundColor;\n case \"destructive-primary\":\n return styles.destructive700BackgroundColor;\n case \"destructive-secondary\":\n return styles.destructive100BackgroundColor;\n case \"success\":\n return styles.success700BackgroundColor;\n case \"tertiary\":\n case \"destructive-tertiary\":\n return styles.whiteBackgroundColor;\n case \"branded\":\n return styles.yellow700BackgroundColor;\n default:\n return styles.primary700BackgroundColor;\n }\n}\n","import { Color } from \"../constants\";\nimport styles from \"./colors.module.css\";\n\nexport default function foregroundColor(color: (typeof Color)[number]): string {\n switch (color) {\n case \"secondary\":\n case \"tertiary\":\n return styles.primary700Color;\n case \"destructive-secondary\":\n case \"destructive-tertiary\":\n return styles.destructive700Color;\n case \"branded\":\n return styles.gray900Color;\n default:\n return styles.whiteColor;\n }\n}\n","import { Size } from \"../constants\";\nimport React from \"react\";\n\ninterface ButtonGroupContextType {\n size?: (typeof Size)[number];\n disabled?: boolean;\n fullWidth?: boolean;\n}\n\nconst ButtonGroupContext = React.createContext<ButtonGroupContextType | null>(\n {},\n);\n\nButtonGroupContext.displayName = \"ButtonGroupContext\";\n\nexport default ButtonGroupContext;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Button/Button.module.css\"; export default {\"button\":\"_button_1p2nl_1\",\"buttonGap\":\"_buttonGap_1p2nl_9\",\"fullWidth\":\"_fullWidth_1p2nl_50\",\"sm\":\"_sm_1p2nl_54\",\"md\":\"_md_1p2nl_61\",\"lg\":\"_lg_1p2nl_68\",\"icon\":\"_icon_1p2nl_75\",\"smIcon\":\"_smIcon_1p2nl_79\",\"mdIcon\":\"_mdIcon_1p2nl_86\",\"lgIcon\":\"_lgIcon_1p2nl_93\",\"textContainer\":\"_textContainer_1p2nl_100\",\"loading\":\"_loading_1p2nl_115\",\"syntaxButtonLoadingRotate\":\"_syntaxButtonLoadingRotate_1p2nl_1\",\"loadingCircle\":\"_loadingCircle_1p2nl_119\",\"buttonText\":\"_buttonText_1p2nl_127\",\"buttonTextSmall\":\"_buttonTextSmall_1p2nl_134\",\"buttonTextMedium\":\"_buttonTextMedium_1p2nl_138\",\"buttonTextLarge\":\"_buttonTextLarge_1p2nl_142\"}","import { useMemo, ReactElement, ReactNode } from \"react\";\nimport styles from \"./ButtonGroup.module.css\";\nimport { Size } from \"../constants\";\nimport ButtonGroupContext from \"./ButtonGroupContext\";\nimport classNames from \"classnames\";\n\nconst gap = {\n [\"sm\"]: styles.smallGap,\n [\"md\"]: styles.mediumGap,\n [\"lg\"]: styles.largeGap,\n} as const;\n\n/**\n * Group buttons to render them in a row or column with consistent spacing in between each button\n */\nconst ButtonGroup = ({\n disabled = false,\n fullWidth = false,\n orientation = \"horizontal\",\n size = \"md\",\n children,\n}: {\n /**\n * If `true`, all buttons will be disabled.\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * If `true`, all buttons will be full width.\n *\n * @defaultValue false\n */\n fullWidth?: boolean;\n /**\n * The orientation of the button group\n *\n * @defaultValue \"horizontal\"\n */\n orientation?: \"horizontal\" | \"vertical\";\n /**\n * The size of the button group\n *\n * * `sm`: 32px\n * * `md`: 40px\n * * `lg`: 48px\n *\n * @defaultValue \"md\"\n */\n size?: (typeof Size)[number];\n /**\n * Buttons to be rendered inside the button group\n */\n children?: ReactNode;\n}): ReactElement => {\n const context = useMemo(\n () => ({ disabled, fullWidth, size }),\n [disabled, fullWidth, size],\n );\n\n const classnames = classNames(styles.buttonGroup, gap[size], {\n [styles.horizontal]: orientation === \"horizontal\",\n [styles.vertical]: orientation === \"vertical\",\n });\n\n return (\n <ButtonGroupContext.Provider value={context}>\n <div className={classnames}>{children}</div>\n </ButtonGroupContext.Provider>\n );\n};\n\nexport default ButtonGroup;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/ButtonGroup/ButtonGroup.module.css\"; export default {\"buttonGroup\":\"_buttonGroup_184aa_1\",\"horizontal\":\"_horizontal_184aa_6\",\"vertical\":\"_vertical_184aa_10\",\"smallGap\":\"_smallGap_184aa_14\",\"mediumGap\":\"_mediumGap_184aa_18\",\"largeGap\":\"_largeGap_184aa_22\"}","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Card/Card.module.css\"; export default {\"card\":\"_card_hvz2b_1\"}","import styles from \"./Card.module.css\";\n\n/**\n * Card is a basic container component to apply consistent styling and render child components.\n */\nconst Card = ({\n children,\n}: {\n /**\n * The child components to render within Card.\n */\n children: JSX.Element;\n}): JSX.Element => <div className={styles.card}>{children}</div>;\n\nexport default Card;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Divider/Divider.module.css\"; export default {\"divider\":\"_divider_1ddgq_1\"}","import styles from \"./Divider.module.css\";\n\n/**\n * Divider is a thin horizontal line to group content in lists and layouts.\n */\nexport default function Divider({}: Record<string, never>) {\n return <hr className={styles.divider} />;\n}\n\nDivider.displayName = \"Divider\";\n","import classNames from \"classnames\";\nimport { ReactElement, ReactNode } from \"react\";\nimport { Color } from \"../constants\";\nimport styles from \"./Typography.module.css\";\nimport colorStyles from \"../colors/colors.module.css\";\n\nfunction textColor(color: (typeof Color)[number]): string {\n switch (color) {\n case \"gray700\":\n return colorStyles.gray700Color;\n case \"white\":\n return colorStyles.whiteColor;\n case \"inherit\":\n return colorStyles.inheritColor;\n case \"primary\":\n return colorStyles.primary700Color;\n case \"destructive-primary\":\n return colorStyles.destructive700Color;\n default:\n return colorStyles.gray900Color;\n }\n}\n\n/**\n * Typography is a component that renders text.\n */\nconst Typography = ({\n align = \"start\",\n as = \"div\",\n children,\n color = \"gray900\",\n inline = false,\n size = 200,\n tooltip,\n transform = \"none\",\n underline = false,\n weight = \"regular\",\n}: {\n /**\n * Aligns the text to the left, right, or center of the container.\n * * `start` and `end` will align the text to the left or right of the container depending on the locale.\n * * `forceLeft` and `forceRight` will align the text to the left or right of the container regardless of the locale (should be used sparingly).\n *\n * @defaultValue \"start\"\n */\n align?: \"start\" | \"end\" | \"forceLeft\" | \"center\" | \"forceRight\";\n /**\n * DOM element to render as.\n *\n * @defaultValue \"div\"\n */\n as?: \"div\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\";\n /**\n * The text to be rendered\n */\n children?: ReactNode;\n /**\n * The color of the text.\n *\n * @defaultValue \"gray900\"\n */\n color?: (typeof Color)[number];\n /**\n * Whether the text should flow inline with other elements.\n *\n * @defaultValue false\n */\n inline?: boolean;\n /**\n * Size of the text.\n *\n * * `100`: 12px\n * * `200`: 14px\n * * `300`: 16px\n * * `500`: 20px\n * * `600`: 28px\n * * `700`: 40px\n * * `800`: 64px\n *\n * @defaultValue 200\n */\n size?: 100 | 200 | 300 | 500 | 600 | 700 | 800;\n /**\n * The tooltip to be displayed when the user hovers the text\n */\n tooltip?: string;\n /**\n * Whether the text should be transformed to uppercase.\n *\n * @defaultValue \"none\"\n */\n transform?: \"none\" | \"uppercase\";\n /**\n * Whether the text has an underline.\n *\n * @defaultValue false\n */\n underline?: boolean;\n /**\n * Indicates the boldness of the text.\n *\n * @defaultValue \"regular\"\n */\n weight?: \"regular\" | \"semiBold\" | \"bold\" | \"heavy\";\n}): ReactElement => {\n const Tag = as;\n\n return (\n <Tag\n className={classNames(\n styles.typography,\n styles[align],\n styles[weight],\n textColor(color),\n inline && styles.inline,\n styles[`size${size}`],\n transform === \"uppercase\" && styles.uppercase,\n underline && styles.underline,\n )}\n title={tooltip}\n >\n {children}\n </Tag>\n );\n};\n\nexport default Typography;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Typography/Typography.module.css\"; export default {\"typography\":\"_typography_1krnf_1\",\"size100\":\"_size100_1krnf_8\",\"size200\":\"_size200_1krnf_12\",\"size300\":\"_size300_1krnf_16\",\"size500\":\"_size500_1krnf_20\",\"size600\":\"_size600_1krnf_24\",\"size700\":\"_size700_1krnf_28\",\"size800\":\"_size800_1krnf_32\",\"center\":\"_center_1krnf_37\",\"forceLeft\":\"_forceLeft_1krnf_41\",\"forceRight\":\"_forceRight_1krnf_45\",\"start\":\"_start_1krnf_49\",\"end\":\"_end_1krnf_53\",\"bold\":\"_bold_1krnf_58\",\"regular\":\"_regular_1krnf_62\",\"semiBold\":\"_semiBold_1krnf_66\",\"heavy\":\"_heavy_1krnf_70\",\"underline\":\"_underline_1krnf_74\",\"inline\":\"_inline_1krnf_78\",\"uppercase\":\"_uppercase_1krnf_82\"}","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/colors/colors.module.css\"; export default {\"inheritColor\":\"_inheritColor_j1pwm_2\",\"destructive700Color\":\"_destructive700Color_j1pwm_6\",\"gray700Color\":\"_gray700Color_j1pwm_10\",\"gray900Color\":\"_gray900Color_j1pwm_14\",\"primary700Color\":\"_primary700Color_j1pwm_18\",\"whiteColor\":\"_whiteColor_j1pwm_22\",\"blackBackgroundColor\":\"_blackBackgroundColor_j1pwm_27\",\"destructive100BackgroundColor\":\"_destructive100BackgroundColor_j1pwm_31\",\"destructive200BackgroundColor\":\"_destructive200BackgroundColor_j1pwm_35\",\"destructive300BackgroundColor\":\"_destructive300BackgroundColor_j1pwm_39\",\"destructive700BackgroundColor\":\"_destructive700BackgroundColor_j1pwm_43\",\"destructive800BackgroundColor\":\"_destructive800BackgroundColor_j1pwm_47\",\"destructive900BackgroundColor\":\"_destructive900BackgroundColor_j1pwm_51\",\"gray10BackgroundColor\":\"_gray10BackgroundColor_j1pwm_55\",\"gray30BackgroundColor\":\"_gray30BackgroundColor_j1pwm_59\",\"gray80BackgroundColor\":\"_gray80BackgroundColor_j1pwm_63\",\"gray100BackgroundColor\":\"_gray100BackgroundColor_j1pwm_67\",\"gray200BackgroundColor\":\"_gray200BackgroundColor_j1pwm_71\",\"gray300BackgroundColor\":\"_gray300BackgroundColor_j1pwm_75\",\"gray700BackgroundColor\":\"_gray700BackgroundColor_j1pwm_79\",\"gray800BackgroundColor\":\"_gray800BackgroundColor_j1pwm_83\",\"gray900BackgroundColor\":\"_gray900BackgroundColor_j1pwm_87\",\"orange100BackgroundColor\":\"_orange100BackgroundColor_j1pwm_91\",\"orange200BackgroundColor\":\"_orange200BackgroundColor_j1pwm_95\",\"orange300BackgroundColor\":\"_orange300BackgroundColor_j1pwm_99\",\"orange700BackgroundColor\":\"_orange700BackgroundColor_j1pwm_103\",\"orange800BackgroundColor\":\"_orange800BackgroundColor_j1pwm_107\",\"orange900BackgroundColor\":\"_orange900BackgroundColor_j1pwm_111\",\"primary100BackgroundColor\":\"_primary100BackgroundColor_j1pwm_115\",\"primary200BackgroundColor\":\"_primary200BackgroundColor_j1pwm_119\",\"primary300BackgroundColor\":\"_primary300BackgroundColor_j1pwm_123\",\"primary700BackgroundColor\":\"_primary700BackgroundColor_j1pwm_127\",\"primary800BackgroundColor\":\"_primary800BackgroundColor_j1pwm_131\",\"primary900BackgroundColor\":\"_primary900BackgroundColor_j1pwm_135\",\"success100BackgroundColor\":\"_success100BackgroundColor_j1pwm_139\",\"success200BackgroundColor\":\"_success200BackgroundColor_j1pwm_143\",\"success300BackgroundColor\":\"_success300BackgroundColor_j1pwm_147\",\"success700BackgroundColor\":\"_success700BackgroundColor_j1pwm_151\",\"success800BackgroundColor\":\"_success800BackgroundColor_j1pwm_155\",\"success900BackgroundColor\":\"_success900BackgroundColor_j1pwm_159\",\"purple100BackgroundColor\":\"_purple100BackgroundColor_j1pwm_163\",\"purple200BackgroundColor\":\"_purple200BackgroundColor_j1pwm_167\",\"purple300BackgroundColor\":\"_purple300BackgroundColor_j1pwm_171\",\"purple700BackgroundColor\":\"_purple700BackgroundColor_j1pwm_175\",\"purple800BackgroundColor\":\"_purple800BackgroundColor_j1pwm_179\",\"purple900BackgroundColor\":\"_purple900BackgroundColor_j1pwm_183\",\"whiteBackgroundColor\":\"_whiteBackgroundColor_j1pwm_187\",\"yellow100BackgroundColor\":\"_yellow100BackgroundColor_j1pwm_191\",\"yellow200BackgroundColor\":\"_yellow200BackgroundColor_j1pwm_195\",\"yellow300BackgroundColor\":\"_yellow300BackgroundColor_j1pwm_199\",\"yellow700BackgroundColor\":\"_yellow700BackgroundColor_j1pwm_203\",\"yellow800BackgroundColor\":\"_yellow800BackgroundColor_j1pwm_207\",\"yellow900BackgroundColor\":\"_yellow900BackgroundColor_j1pwm_211\"}","import { ReactElement, ReactNode } from \"react\";\nimport { Color } from \"../constants\";\nimport Typography from \"../Typography/Typography\";\n/**\n * Heading enforces a consistent style & accessibility best practices for headings.\n */\nconst Heading = ({\n align = \"start\",\n as = \"h1\",\n children,\n color = \"gray900\",\n size = 500,\n}: {\n /**\n * Aligns the text to the left, right, or center of the container.\n * * `start` and `end` will align the text to the left or right of the container depending on the locale.\n * * `forceLeft` and `forceRight` will align the text to the left or right of the container regardless of the locale (should be used sparingly).\n *\n * @defaultValue \"start\"\n */\n align?: \"start\" | \"end\" | \"forceLeft\" | \"center\" | \"forceRight\";\n /**\n * DOM element to render as.\n *\n * @defaultValue \"h1\"\n */\n as?: \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\";\n /**\n * The text to be rendered\n */\n children?: ReactNode;\n /**\n * The color of the text.\n *\n * @defaultValue \"gray900\"\n */\n color?: (typeof Color)[number];\n /**\n * Size of the text.\n *\n * * `500`: 20px\n * * `600`: 28px\n * * `700`: 40px\n * * `800`: 64px\n *\n * @defaultValue 500\n */\n size?: 500 | 600 | 700 | 800;\n}): ReactElement => {\n const weight = [700, 800].includes(size) ? \"heavy\" : \"bold\";\n return (\n <Typography align={align} as={as} color={color} size={size} weight={weight}>\n {children}\n </Typography>\n );\n};\n\nexport default Heading;\n","import classNames from \"classnames\";\nimport backgroundColor from \"../colors//backgroundColor\";\nimport foregroundColor from \"../colors/foregroundColor\";\nimport React, { ReactElement, useContext } from \"react\";\nimport { Color, Size } from \"../constants\";\nimport styles from \"./IconButton.module.css\";\nimport ButtonGroupContext from \"../ButtonGroup/ButtonGroupContext\";\n\nconst iconSize = {\n [\"sm\"]: styles.smIcon,\n [\"md\"]: styles.mdIcon,\n [\"lg\"]: styles.lgIcon,\n};\n\n/**\n * IconButton is a clickable element that is used to perform an action.\n */\nconst IconButton = ({\n accessibilityLabel,\n color = \"primary\",\n disabled: disabledProp = false,\n icon: Icon,\n size: sizeProp = \"md\",\n tooltip,\n onClick,\n}: {\n /**\n * The color of the button\n *\n * @defaultValue \"primary\"\n */\n color?: (typeof Color)[number];\n /**\n * The size of the button\n *\n * * `sm`: 32px\n * * `md`: 40px\n * * `lg`: 48px\n *\n * @defaultValue \"md\"\n */\n size?: (typeof Size)[number];\n /**\n * The label to be used for accessibility\n */\n accessibilityLabel?: string;\n /**\n * The icon to be displayed. Please use a [Rounded Material Icon](https://material.io/resources/icons/?style=round)\n */\n icon: React.ComponentType<{ className: string }>;\n /**\n * If `true`, the button will be disabled\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * The callback to be called when the button is clicked\n */\n onClick: React.MouseEventHandler<HTMLButtonElement>;\n /**\n * The tooltip to be displayed when the user hovers over the button\n */\n tooltip?: string;\n}): ReactElement => {\n const contextProps = useContext(ButtonGroupContext);\n\n const size = contextProps?.size || sizeProp;\n const disabled = contextProps?.disabled || disabledProp;\n\n return (\n <button\n aria-label={accessibilityLabel}\n type=\"button\"\n title={tooltip}\n disabled={disabled}\n onClick={onClick}\n className={classNames(\n styles.iconButton,\n foregroundColor(color),\n backgroundColor(color),\n styles[size],\n )}\n >\n <Icon className={iconSize[size]} />\n </button>\n );\n};\n\nexport default IconButton;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/IconButton/IconButton.module.css\"; export default {\"iconButton\":\"_iconButton_dzhn0_1\",\"sm\":\"_sm_dzhn0_46\",\"md\":\"_md_dzhn0_51\",\"lg\":\"_lg_dzhn0_56\",\"smIcon\":\"_smIcon_dzhn0_61\",\"mdIcon\":\"_mdIcon_dzhn0_68\",\"lgIcon\":\"_lgIcon_dzhn0_75\"}","import React, { ReactElement, useState } from \"react\";\nimport classNames from \"classnames\";\nimport styles from \"./LabeledCheckbox.module.css\";\nimport Typography from \"../Typography/Typography\";\n\nconst typographySize = {\n sm: 100,\n md: 200,\n} as const;\n\nconst iconWidth = {\n sm: 12,\n md: 20,\n};\n\n/**\n * Checkbox is a clickable element that will show if an option has been selected or not\n */\nconst Checkbox = ({\n checked = false,\n disabled = false,\n size = \"md\",\n label,\n error = false,\n onChange,\n}: {\n /**\n * Whether or not the box has been clicked\n *\n * @defaultValue false\n */\n checked: boolean;\n /**\n * The callback to be called when the checkbox value changes\n */\n onChange: React.ChangeEventHandler<HTMLInputElement>;\n /**\n * Whether or not the box is disabled\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * The size of the checkbox and icon\n *\n * * `sm`: 16px\n * * `md`: 24px\n *\n * @defaultValue \"md\"\n */\n size?: \"sm\" | \"md\";\n /**\n * The text accompanying the checkbox\n */\n label: string;\n /**\n * Whether or not there is an error with the input\n *\n * @defaultValue false\n */\n error?: boolean;\n}): ReactElement => {\n const [isFocused, setIsFocused] = useState(false);\n const checkboxStyling = classNames(styles.checkbox, styles[size]);\n const uncheckedStyling = classNames(checkboxStyling, styles.uncheckedBox, {\n [styles.uncheckedBorder]: !error,\n [styles.uncheckedErrorBorder]: error,\n [styles.focusedCheckbox]: isFocused,\n });\n const checkedStyling = classNames(checkboxStyling, styles.checkedBox, {\n [styles.checkedNonError]: !error,\n [styles.checkedError]: error,\n [styles.focusedCheckbox]: isFocused,\n });\n\n return (\n <label className={classNames(styles.mainContainer)}>\n <div className={styles.checkboxContainer}>\n <input\n type=\"checkbox\"\n className={classNames(styles.inputOverlay, styles[size])}\n checked={checked}\n onChange={onChange}\n disabled={disabled}\n onFocus={() => {\n setIsFocused(true);\n }}\n onBlur={() => {\n setIsFocused(false);\n }}\n />\n <div className={checked ? checkedStyling : uncheckedStyling}>\n {checked && (\n <svg aria-hidden=\"true\" viewBox=\"0 0 24 24\" width={iconWidth[size]}>\n <path\n fill=\"#fff\"\n d=\"m9 16.2-3.5-3.5a.9839.9839 0 0 0-1.4 0c-.39.39-.39 1.01 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7c.39-.39.39-1.01 0-1.4a.9839.9839 0 0 0-1.4 0L9 16.2z\"\n ></path>\n </svg>\n )}\n </div>\n </div>\n <Typography\n size={typographySize[size]}\n color={error ? \"destructive-primary\" : \"gray800\"}\n >\n {label}\n </Typography>\n </label>\n );\n};\n\nexport default Checkbox;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/LabeledCheckbox/LabeledCheckbox.module.css\"; export default {\"mainContainer\":\"_mainContainer_p0un4_1\",\"checkboxContainer\":\"_checkboxContainer_p0un4_8\",\"inputOverlay\":\"_inputOverlay_p0un4_13\",\"focusedCheckbox\":\"_focusedCheckbox_p0un4_21\",\"checkbox\":\"_checkbox_p0un4_8\",\"uncheckedBox\":\"_uncheckedBox_p0un4_35\",\"uncheckedBorder\":\"_uncheckedBorder_p0un4_39\",\"uncheckedErrorBorder\":\"_uncheckedErrorBorder_p0un4_43\",\"checkedBox\":\"_checkedBox_p0un4_47\",\"checkedNonError\":\"_checkedNonError_p0un4_51\",\"checkedError\":\"_checkedError_p0un4_55\",\"sm\":\"_sm_p0un4_59\",\"md\":\"_md_p0un4_65\"}","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/MiniActionCard/MiniActionCard.module.css\"; export default {\"miniActionCard\":\"_miniActionCard_qebkn_1\",\"card\":\"_card_qebkn_9\"}","import styles from \"./MiniActionCard.module.css\";\n\n/**\n * MiniActionCard is component that alerts users to a call to action.\n */\nconst MiniActionCard = ({\n children,\n}: {\n /**\n * The child components to render within MiniActionCard.\n */\n children: JSX.Element;\n}): JSX.Element => <div className={styles.miniActionCard}>{children}</div>;\n\nexport default MiniActionCard;\n","import React, { ReactElement, useState } from \"react\";\nimport classnames from \"classnames\";\n\nimport styles from \"./RadioButton.module.css\";\nimport Typography from \"../Typography/Typography\";\n\n/**\n * RadioButton is a radio button with accompanying text\n */\nconst RadioButton = ({\n checked = false,\n disabled = false,\n error = false,\n label,\n onChange,\n size = \"md\",\n value = \"\",\n}: {\n /**\n * Whether or not the box is checked\n *\n * @defaultValue false\n */\n checked?: boolean;\n /**\n * Whether or not the box is disabled\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * Whether to show error color schema\n *\n * @defaultValue false\n */\n error?: boolean;\n /**\n * Always add a label tag for best accessibility practices\n */\n label: string;\n /**\n * The callback to be called when the button is clicked\n */\n onChange: React.ChangeEventHandler<HTMLInputElement>;\n /**\n * Size of the components\n *\n * * `sm`: 16px\n * * `md`: 24px\n *\n * @defaultValue \"md\"\n */\n size?: \"sm\" | \"md\";\n /**\n * Value of the selected radio option\n */\n value?: string;\n}): ReactElement => {\n const [isFocused, setIsFocused] = useState(false);\n\n return (\n <label\n className={classnames(styles.radioButton, {\n [styles.smBase]: size === \"sm\",\n [styles.mdBase]: size === \"md\",\n })}\n >\n <input\n type=\"radio\"\n className={classnames(styles.radioStyleOverride, {\n [styles.smOverride]: size === \"sm\",\n [styles.mdOverride]: size === \"md\",\n })}\n checked={checked}\n onChange={onChange}\n disabled={disabled}\n value={value ?? label}\n onFocus={() => {\n setIsFocused(true);\n }}\n onBlur={() => {\n setIsFocused(false);\n }}\n />\n {checked ? (\n <div\n className={classnames(styles.outer, styles[size], {\n [styles.errorOuterBackgroundColor]: error,\n [styles.outerBackgroundColor]: !error,\n [styles.focusedRadioButton]: isFocused,\n })}\n >\n <div\n className={classnames(styles.circle, {\n [styles.smInner]: size === \"sm\",\n [styles.mdInner]: size === \"md\",\n })}\n />\n </div>\n ) : (\n <div\n className={classnames(styles.background, styles[size], {\n [styles.errorBorderColor]: error,\n [styles.borderColor]: !error,\n [styles.focusedRadioButton]: isFocused,\n })}\n />\n )}\n <Typography\n size={size === \"md\" ? 200 : 100}\n color={error ? \"destructive-primary\" : \"gray800\"}\n >\n {label}\n </Typography>\n </label>\n );\n};\n\nexport default RadioButton;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/RadioButton/RadioButton.module.css\"; export default {\"radioButton\":\"_radioButton_1dde1_1\",\"focusedRadioButton\":\"_focusedRadioButton_1dde1_8\",\"smBase\":\"_smBase_1dde1_13\",\"mdBase\":\"_mdBase_1dde1_18\",\"radioStyleOverride\":\"_radioStyleOverride_1dde1_23\",\"smOverride\":\"_smOverride_1dde1_28\",\"mdOverride\":\"_mdOverride_1dde1_33\",\"outer\":\"_outer_1dde1_38\",\"sm\":\"_sm_1dde1_13\",\"md\":\"_md_1dde1_18\",\"errorOuterBackgroundColor\":\"_errorOuterBackgroundColor_1dde1_57\",\"outerBackgroundColor\":\"_outerBackgroundColor_1dde1_61\",\"background\":\"_background_1dde1_65\",\"errorBorderColor\":\"_errorBorderColor_1dde1_71\",\"borderColor\":\"_borderColor_1dde1_75\",\"circle\":\"_circle_1dde1_79\",\"smInner\":\"_smInner_1dde1_83\",\"mdInner\":\"_mdInner_1dde1_89\"}"],"mappings":"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","names":["classNames","classNames","import_classnames","jsx","classNames","import_classnames","jsx","classnames","classNames","jsx","jsx","import_classnames","colors_module_default","jsx","colors_module_default","classNames","jsx","import_classnames","useContext","jsx","iconSize","useContext","classNames","import_classnames","jsx","jsxs","classNames","jsx","import_classnames","useState","jsx","jsxs","useState","classnames"]}
1
+ {"version":3,"sources":["../../../node_modules/classnames/index.js","../src/Avatar/Avatar.tsx","css-module:./Avatar.module.css#css-module","../src/Box/Box.tsx","css-module:./Box.module.css#css-module","css-module:./margin.module.css#css-module","css-module:./padding.module.css#css-module","css-module:../colors/colors.module.css#css-module","../src/Button/Button.tsx","css-module:./colors.module.css#css-module","../src/colors/backgroundColor.ts","../src/colors/foregroundColor.ts","../src/ButtonGroup/ButtonGroupContext.tsx","css-module:./Button.module.css#css-module","../src/ButtonGroup/ButtonGroup.tsx","css-module:./ButtonGroup.module.css#css-module","css-module:./Card.module.css#css-module","../src/Card/Card.tsx","css-module:./Divider.module.css#css-module","../src/Divider/Divider.tsx","../src/Typography/Typography.tsx","css-module:./Typography.module.css#css-module","../src/Heading/Heading.tsx","../src/IconButton/IconButton.tsx","css-module:./IconButton.module.css#css-module","../src/Checkbox/Checkbox.tsx","css-module:./Checkbox.module.css#css-module","css-module:./MiniActionCard.module.css#css-module","../src/MiniActionCard/MiniActionCard.tsx","../src/RadioButton/RadioButton.tsx","css-module:./RadioButton.module.css#css-module"],"sourcesContent":["/*!\n\tCopyright (c) 2018 Jed Watson.\n\tLicensed under the MIT License (MIT), see\n\thttp://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\tvar nativeCodeString = '[native code]';\n\n\tfunction classNames() {\n\t\tvar classes = [];\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (!arg) continue;\n\n\t\t\tvar argType = typeof arg;\n\n\t\t\tif (argType === 'string' || argType === 'number') {\n\t\t\t\tclasses.push(arg);\n\t\t\t} else if (Array.isArray(arg)) {\n\t\t\t\tif (arg.length) {\n\t\t\t\t\tvar inner = classNames.apply(null, arg);\n\t\t\t\t\tif (inner) {\n\t\t\t\t\t\tclasses.push(inner);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if (argType === 'object') {\n\t\t\t\tif (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {\n\t\t\t\t\tclasses.push(arg.toString());\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tfor (var key in arg) {\n\t\t\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\t\t\tclasses.push(key);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn classes.join(' ');\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n","import classNames from \"classnames\";\nimport styles from \"./Avatar.module.css\";\n\n/**\n * Avatar is a circular image that represents a user.\n */\nconst Avatar = ({\n src,\n accessibilityLabel,\n size = \"md\",\n}: {\n /**\n * URL of the image to display as the avatar.\n */\n src: string;\n /**\n * Alt text to use for the image.\n * This should describe the image to people using screen readers.\n */\n accessibilityLabel: string;\n /**\n * Size of the avatar.\n *\n * * `sm`: 24px\n * * `md`: 40px\n * * `lg`: 72px\n * * `xl`: 128px\n *\n * @defaultValue `md`\n */\n size?: \"sm\" | \"md\" | \"lg\" | \"xl\";\n}): JSX.Element => {\n return (\n <img\n alt={accessibilityLabel}\n src={src}\n className={classNames(styles.avatar, styles[size])}\n />\n );\n};\n\nexport default Avatar;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Avatar/Avatar.module.css\"; export default {\"avatar\":\"_avatar_1s8z7_1\",\"sm\":\"_sm_1s8z7_8\",\"md\":\"_md_1s8z7_13\",\"lg\":\"_lg_1s8z7_18\",\"xl\":\"_xl_1s8z7_23\"}","import classNames from \"classnames\";\nimport { ReactElement, ReactNode } from \"react\";\nimport styles from \"./Box.module.css\";\nimport marginStyles from \"./margin.module.css\";\nimport paddingStyles from \"./padding.module.css\";\nimport allColors from \"../colors/allColors\";\nimport colorStyles from \"../colors/colors.module.css\";\n\ntype AlignItems = \"baseline\" | \"center\" | \"end\" | \"start\" | \"stretch\";\ntype As =\n | \"article\"\n | \"aside\"\n | \"caption\"\n | \"details\"\n | \"div\"\n | \"figcaption\"\n | \"figure\"\n | \"footer\"\n | \"header\"\n | \"main\"\n | \"nav\"\n | \"section\"\n | \"summary\";\ntype Dimension = number | string;\ntype Direction = \"row\" | \"column\";\ntype Display = \"flex\" | \"block\" | \"inlineBlock\" | \"visuallyHidden\";\ntype Gap = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;\ntype JustifyContent =\n | \"start\"\n | \"end\"\n | \"center\"\n | \"between\"\n | \"around\"\n | \"evenly\";\ntype Margin =\n | -12\n | -11\n | -10\n | -9\n | -8\n | -7\n | -6\n | -5\n | -4\n | -3\n | -2\n | -1\n | 0\n | 1\n | 2\n | 3\n | 4\n | 5\n | 6\n | 7\n | 8\n | 9\n | 10\n | 11\n | 12\n | \"auto\";\ntype Padding = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;\n\n/**\n * Box is primitive design component and is used by lots of other components. It keeps details like spacing, borders and colors consistent across all of Syntax.\n *\n * Passthrough props:\n * * `aria-*`\n * * `data-testid`\n */\nexport default function Box(props: {\n /**\n * The alignment of the box on the cross axis.\n *\n * Responsive props:\n * * `smAlignItems`\n * * `lgAlignItems`\n */\n alignItems?: AlignItems;\n /**\n * Allows the default alignment (or the one specified by align-items) to be overridden for individual flex items.\n */\n alignSelf?: \"auto\" | \"start\" | \"end\" | \"center\" | \"baseline\" | \"stretch\";\n /**\n * The underlying DOM element usually set for accessibility or SEO reasons.\n *\n * @defaultValue \"div\"\n */\n as?: As;\n /**\n * The background color of the box.\n */\n color?: (typeof allColors)[number];\n /**\n * The children to be rendered inside the box.\n */\n children?: ReactNode;\n /**\n * An \"escape hatch\" used to apply styles not otherwise available on Box.\n *\n * Please use this sparingly and only when you have a good reason to.\n */\n dangerouslySetInlineStyle?: {\n __style: Record<string, string | number | null>;\n };\n /**\n * The flex direction of the box.\n *\n * Responsive props:\n * * `smDirection`\n * * `lgDirection`\n *\n * @defaultValue `row`\n */\n direction?: Direction;\n /**\n * The display property specifies the display behavior (the type of rendering box) of an element.\n *\n * Responsive props:\n * * `smDisplay`\n * * `lgDisplay`\n *\n * @defaultValue `block`\n */\n display?: Display;\n /**\n * By default, flex items will all try to fit onto one line. But if you specify `flexWrap=\"wrap\"`, the flex items will wrap onto multiple lines.\n *\n * @defaultValue `nowrap`\n */\n flexWrap?: \"wrap\" | \"nowrap\";\n /**\n * The gap between the children of the box.\n */\n gap?: Gap;\n /**\n * The id of the element.\n */\n id?: string;\n /**\n * The alignment of the box on the cross axis on lg (960px) or larger viewports.\n */\n lgAlignItems?: AlignItems;\n /**\n * The flex direction on lg (960px) or larger viewports.\n */\n lgDirection?: Direction;\n /**\n * The display style on lg (960px) or larger viewports.\n */\n lgDisplay?: Display;\n /**\n * The alignment of the box on the cross axis on lg (960px) or larger viewports.\n */\n lgJustifyContent?: JustifyContent;\n /**\n * Margin on lg (960px) or larger viewports.\n */\n lgMargin?: Margin;\n /**\n * Bottom margin on lg (960px) or larger viewports.\n */\n lgMarginBottom?: Margin;\n /**\n * Margin to the right in left-to-right languages, and to the left in right-to-left languages on lg (960px) or larger viewports.\n */\n lgMarginEnd?: Margin;\n /**\n * Margin to the left in left-to-right languages, and to the right in right-to-left languages on lg (960px) or larger viewports.\n */\n lgMarginStart?: Margin;\n /**\n * Top margin on lg (960px) or larger viewports.\n */\n lgMarginTop?: Margin;\n /**\n * The padding of the box on lg (960px) or larger viewports.\n */\n lgPadding?: Padding;\n /**\n * The padding of the box on the x-axis on lg (960px) or larger viewports.\n */\n lgPaddingX?: Padding;\n /**\n * The padding of the box on the y-axis on lg (960px) or larger viewports.\n */\n lgPaddingY?: Padding;\n /**\n * The margin of the box.\n *\n * Responsive props:\n * * `smMargin`\n * * `lgMargin`\n *\n * @defaultValue 0\n */\n margin?: Margin;\n /**\n * Bottom margin of the box.\n *\n * Responsive props:\n * * `smMarginBottom`\n * * `lgMarginBottom`\n *\n */\n marginBottom?: Margin;\n /**\n * Margin to the right in left-to-right languages, and to the left in right-to-left languages.\n *\n * Responsive props:\n * * `smMarginEnd`\n * * `lgMarginEnd`\n *\n */\n marginEnd?: Margin;\n /**\n * Margin to the left in left-to-right languages, and to the right in right-to-left languages.\n *\n * Responsive props:\n * * `smMarginStart`\n * * `lgMarginStart`\n *\n */\n marginStart?: Margin;\n /**\n * Top margin of the box.\n *\n * Responsive props:\n * * `smMarginTop`\n * * `lgMarginTop`\n *\n */\n marginTop?: Margin;\n /**\n * The maximum height of the box.\n */\n maxHeight?: Dimension;\n /**\n * The maximum width of the box.\n */\n maxWidth?: Dimension;\n /**\n * The minimum height of the box.\n */\n minHeight?: Dimension;\n /**\n * The minimum width of the box.\n */\n minWidth?: Dimension;\n /**\n * The height of the box.\n */\n height?: Dimension;\n /**\n * The alignment of the box on the main axis.\n *\n * Responsive props:\n * * `smJustifyContent`\n * * `lgJustifyContent`\n *\n * @defaultValue \"start\"\n */\n justifyContent?: JustifyContent;\n /**\n * The padding of the box.\n *\n * Responsive props:\n * * `smPadding`\n * * `lgPadding`\n *\n * @defaultValue 0\n */\n padding?: Padding;\n /**\n * The padding of the box on the x-axis.\n *\n * Responsive props:\n * * `smPaddingX`\n * * `lgPaddingX`\n *\n */\n paddingX?: Padding;\n /**\n * The padding of the box on the y-axis.\n *\n * Responsive props:\n * * `smPaddingY`\n * * `lgPaddingY`\n */\n paddingY?: Padding;\n /**\n * The position of the box.\n *\n * @defaultValue \"static\"\n */\n position?: \"static\" | \"absolute\" | \"relative\" | \"fixed\";\n /**\n * Border radius of the box.\n *\n * * `none`: 0px\n * * `sm`: 8px\n * * `md`: 12px\n * * `lg`: 16px\n * * `xl`: 24px\n * * `pill`: 999px\n *\n * @defaultValue \"none\"\n */\n rounding?: \"xl\" | \"lg\" | \"md\" | \"sm\" | \"pill\" | \"none\";\n /**\n * The alignment of the box on the cross axis on sm (480px) or larger viewports.\n */\n smAlignItems?: AlignItems;\n /**\n * The flex direction on sm (480px) or larger viewports.\n */\n smDirection?: Direction;\n /**\n * The display style on sm (480px) or larger viewports.\n */\n smDisplay?: Display;\n /**\n * The alignment of the box on the main axis on sm (480px) or larger viewports.\n */\n smJustifyContent?: JustifyContent;\n /**\n * Margin on sm (480px) or larger viewports.\n */\n smMargin?: Margin;\n /**\n * Bottom margin on sm (480px) or larger viewports.\n */\n smMarginBottom?: Margin;\n /**\n * Margin to the right in left-to-right languages, and to the left in right-to-left languages on sm (480px) or larger viewports.\n */\n smMarginEnd?: Margin;\n /**\n * Margin to the left in left-to-right languages, and to the right in right-to-left languages on sm (480px) or larger viewports.\n */\n smMarginStart?: Margin;\n /**\n * Top margin on sm (480px) or larger viewports.\n */\n smMarginTop?: Margin;\n /**\n * The padding of the box on sm (480px) or larger viewports.\n */\n smPadding?: Padding;\n /**\n * The padding of the box on the x-axis on sm (480px) or larger viewports.\n */\n smPaddingX?: Padding;\n /**\n * The padding of the box on the y-axis on sm (480px) or larger viewports.\n */\n smPaddingY?: Padding;\n /**\n * The width of the box.\n */\n width?: Dimension;\n}): ReactElement {\n const { as: BoxElement = \"div\", children, ...boxProps } = props;\n\n const {\n // Classname\n alignItems,\n smAlignItems,\n lgAlignItems,\n alignSelf,\n color,\n direction,\n smDirection,\n lgDirection,\n display,\n smDisplay,\n lgDisplay,\n flexWrap,\n gap,\n justifyContent,\n smJustifyContent,\n lgJustifyContent,\n // Margin\n margin,\n marginBottom,\n marginEnd,\n marginStart,\n marginTop,\n smMargin,\n smMarginBottom,\n smMarginEnd,\n smMarginStart,\n smMarginTop,\n lgMargin,\n lgMarginBottom,\n lgMarginEnd,\n lgMarginStart,\n lgMarginTop,\n // Padding\n padding,\n paddingX,\n paddingY,\n smPadding,\n smPaddingX,\n smPaddingY,\n lgPadding,\n lgPaddingX,\n lgPaddingY,\n position,\n rounding,\n // Style\n dangerouslySetInlineStyle,\n height,\n maxHeight,\n maxWidth,\n minHeight,\n minWidth,\n width,\n ...maybePassThroughProps\n } = boxProps;\n\n const parsedProps = {\n className: classNames(\n styles.box,\n alignItems && styles[`alignItems${alignItems}`],\n smAlignItems && styles[`alignItems${smAlignItems}Small`],\n lgAlignItems && styles[`alignItems${lgAlignItems}Large`],\n alignSelf && styles[`alignSelf${alignSelf}`],\n color && colorStyles[`${color}BackgroundColor`],\n direction && styles[direction],\n smDirection && styles[`${smDirection}Small`],\n lgDirection && styles[`${lgDirection}Large`],\n display && styles[display],\n smDisplay && styles[`${smDisplay}Small`],\n lgDisplay && styles[`${lgDisplay}Large`],\n flexWrap && styles.flexWrap,\n gap && styles[`gap${gap}`],\n margin && !marginBottom && marginStyles[`marginBottom${margin}`],\n margin && !marginEnd && marginStyles[`marginEnd${margin}`],\n margin && !marginStart && marginStyles[`marginStart${margin}`],\n margin && !marginTop && marginStyles[`marginTop${margin}`],\n marginBottom && marginStyles[`marginBottom${marginBottom}`],\n marginEnd && marginStyles[`marginEnd${marginEnd}`],\n marginStart && marginStyles[`marginStart${marginStart}`],\n marginTop && marginStyles[`marginTop${marginTop}`],\n smMargin &&\n !smMarginBottom &&\n marginStyles[`marginBottom${smMargin}Small`],\n smMargin && !smMarginEnd && marginStyles[`marginEnd${smMargin}Small`],\n smMargin && !smMarginStart && marginStyles[`marginStart${smMargin}Small`],\n smMargin && !smMarginTop && marginStyles[`marginTop${smMargin}Small`],\n smMarginBottom && marginStyles[`marginBottom${smMarginBottom}Small`],\n smMarginEnd && marginStyles[`marginEnd${smMarginEnd}Small`],\n smMarginStart && marginStyles[`marginStart${smMarginStart}Small`],\n smMarginTop && marginStyles[`marginTop${smMarginTop}Small`],\n lgMargin &&\n !lgMarginBottom &&\n marginStyles[`marginBottom${lgMargin}Large`],\n lgMargin && !lgMarginEnd && marginStyles[`marginEnd${lgMargin}Large`],\n lgMargin && !lgMarginStart && marginStyles[`marginStart${lgMargin}Large`],\n lgMargin && !lgMarginTop && marginStyles[`marginTop${lgMargin}Large`],\n lgMarginBottom && marginStyles[`marginBottom${lgMarginBottom}Large`],\n lgMarginEnd && marginStyles[`marginEnd${lgMarginEnd}Large`],\n lgMarginStart && marginStyles[`marginStart${lgMarginStart}Large`],\n lgMarginTop && marginStyles[`marginTop${lgMarginTop}Large`],\n padding && !paddingX && paddingStyles[`paddingX${padding}`],\n padding && !paddingY && paddingStyles[`paddingY${padding}`],\n paddingX && paddingStyles[`paddingX${paddingX}`],\n paddingY && paddingStyles[`paddingY${paddingY}`],\n smPadding && !smPaddingX && paddingStyles[`paddingX${smPadding}Small`],\n smPadding && !smPaddingY && paddingStyles[`paddingY${smPadding}Small`],\n smPaddingX && paddingStyles[`paddingX${smPaddingX}Small`],\n smPaddingY && paddingStyles[`paddingY${smPaddingY}Small`],\n lgPadding && !lgPaddingX && paddingStyles[`paddingX${lgPadding}Large`],\n lgPadding && !lgPaddingX && paddingStyles[`paddingY${lgPadding}Large`],\n lgPaddingX && paddingStyles[`paddingX${lgPaddingX}Large`],\n lgPaddingY && paddingStyles[`paddingY${lgPaddingY}Large`],\n justifyContent && styles[`justifyContent${justifyContent}`],\n smJustifyContent && styles[`justifyContent${smJustifyContent}Small`],\n lgJustifyContent && styles[`justifyContent${lgJustifyContent}Large`],\n position && position !== \"static\" && styles[position],\n rounding && rounding !== \"none\" && styles[`rounding${rounding}`],\n ),\n style: {\n height,\n maxHeight,\n maxWidth,\n minHeight,\n minWidth,\n width,\n ...(dangerouslySetInlineStyle?.__style ?? {}),\n },\n };\n\n const passthroughProps = Object.entries(maybePassThroughProps).reduce<\n Record<string, number | string | undefined>\n >((acc, [key]) => {\n if (\n key === \"id\" ||\n key.startsWith(\"aria-\") ||\n key.startsWith(\"data-testid\")\n ) {\n // @ts-expect-error unsafe assignment\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n acc[key] = maybePassThroughProps[key];\n }\n return acc;\n }, {});\n\n return (\n <BoxElement {...parsedProps} {...passthroughProps}>\n {children}\n </BoxElement>\n );\n}\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Box/Box.module.css\"; export default {\"box\":\"_box_1dglf_1\",\"flexWrap\":\"_flexWrap_1dglf_5\",\"alignItemscenter\":\"_alignItemscenter_1dglf_10\",\"alignItemsstart\":\"_alignItemsstart_1dglf_14\",\"alignItemsend\":\"_alignItemsend_1dglf_18\",\"alignItemsstretch\":\"_alignItemsstretch_1dglf_22\",\"alignItemsbaseline\":\"_alignItemsbaseline_1dglf_26\",\"alignItemscenterSmall\":\"_alignItemscenterSmall_1dglf_32 _alignItemscenter_1dglf_10\",\"alignItemsstartSmall\":\"_alignItemsstartSmall_1dglf_36 _alignItemsstart_1dglf_14\",\"alignItemsendSmall\":\"_alignItemsendSmall_1dglf_40 _alignItemsend_1dglf_18\",\"alignItemsstretchSmall\":\"_alignItemsstretchSmall_1dglf_44 _alignItemsstretch_1dglf_22\",\"alignItemsbaselineSmall\":\"_alignItemsbaselineSmall_1dglf_48 _alignItemsbaseline_1dglf_26\",\"alignItemscenterLarge\":\"_alignItemscenterLarge_1dglf_55 _alignItemscenter_1dglf_10\",\"alignItemsstartLarge\":\"_alignItemsstartLarge_1dglf_59 _alignItemsstart_1dglf_14\",\"alignItemsendLarge\":\"_alignItemsendLarge_1dglf_63 _alignItemsend_1dglf_18\",\"alignItemsstretchLarge\":\"_alignItemsstretchLarge_1dglf_67 _alignItemsstretch_1dglf_22\",\"alignItemsbaselineLarge\":\"_alignItemsbaselineLarge_1dglf_71 _alignItemsbaseline_1dglf_26\",\"alignSelfcenter\":\"_alignSelfcenter_1dglf_77\",\"alignSelfstart\":\"_alignSelfstart_1dglf_81\",\"alignSelfend\":\"_alignSelfend_1dglf_85\",\"alignSelfstretch\":\"_alignSelfstretch_1dglf_89\",\"alignSelfbaseline\":\"_alignSelfbaseline_1dglf_93\",\"alignSelfauto\":\"_alignSelfauto_1dglf_97\",\"roundingsm\":\"_roundingsm_1dglf_102\",\"roundingmd\":\"_roundingmd_1dglf_106\",\"roundinglg\":\"_roundinglg_1dglf_110\",\"roundingxl\":\"_roundingxl_1dglf_114\",\"roundingpill\":\"_roundingpill_1dglf_118\",\"block\":\"_block_1dglf_123\",\"flex\":\"_flex_1dglf_5\",\"inlineBlock\":\"_inlineBlock_1dglf_131\",\"visuallyHidden\":\"_visuallyHidden_1dglf_135\",\"blockSmall\":\"_blockSmall_1dglf_149 _block_1dglf_123\",\"flexSmall\":\"_flexSmall_1dglf_153 _flex_1dglf_5\",\"inlineBlockSmall\":\"_inlineBlockSmall_1dglf_157 _inlineBlock_1dglf_131\",\"visuallyHiddenSmall\":\"_visuallyHiddenSmall_1dglf_161 _visuallyHidden_1dglf_135\",\"blockLarge\":\"_blockLarge_1dglf_168 _block_1dglf_123\",\"flexLarge\":\"_flexLarge_1dglf_172 _flex_1dglf_5\",\"inlineBlockLarge\":\"_inlineBlockLarge_1dglf_176 _inlineBlock_1dglf_131\",\"visuallyHiddenLarge\":\"_visuallyHiddenLarge_1dglf_180 _visuallyHidden_1dglf_135\",\"column\":\"_column_1dglf_186\",\"row\":\"_row_1dglf_190\",\"columnSmall\":\"_columnSmall_1dglf_196 _column_1dglf_186\",\"rowSmall\":\"_rowSmall_1dglf_200 _row_1dglf_190\",\"columnLarge\":\"_columnLarge_1dglf_207 _column_1dglf_186\",\"rowLarge\":\"_rowLarge_1dglf_211 _row_1dglf_190\",\"gap0\":\"_gap0_1dglf_217\",\"gap1\":\"_gap1_1dglf_221\",\"gap2\":\"_gap2_1dglf_225\",\"gap3\":\"_gap3_1dglf_229\",\"gap4\":\"_gap4_1dglf_233\",\"gap5\":\"_gap5_1dglf_237\",\"gap6\":\"_gap6_1dglf_241\",\"gap7\":\"_gap7_1dglf_245\",\"gap8\":\"_gap8_1dglf_249\",\"gap9\":\"_gap9_1dglf_253\",\"gap10\":\"_gap10_1dglf_257\",\"gap11\":\"_gap11_1dglf_261\",\"gap12\":\"_gap12_1dglf_265\",\"justifyContentcenter\":\"_justifyContentcenter_1dglf_270\",\"justifyContentstart\":\"_justifyContentstart_1dglf_274\",\"justifyContentend\":\"_justifyContentend_1dglf_278\",\"justifyContentbetween\":\"_justifyContentbetween_1dglf_282\",\"justifyContentaround\":\"_justifyContentaround_1dglf_286\",\"justifyContentevenly\":\"_justifyContentevenly_1dglf_290\",\"justifyContentcenterSmall\":\"_justifyContentcenterSmall_1dglf_296 _justifyContentcenter_1dglf_270\",\"justifyContentstartSmall\":\"_justifyContentstartSmall_1dglf_300 _justifyContentstart_1dglf_274\",\"justifyContentendSmall\":\"_justifyContentendSmall_1dglf_304 _justifyContentend_1dglf_278\",\"justifyContentbetweenSmall\":\"_justifyContentbetweenSmall_1dglf_308 _justifyContentbetween_1dglf_282\",\"justifyContentaroundSmall\":\"_justifyContentaroundSmall_1dglf_312 _justifyContentaround_1dglf_286\",\"justifyContentevenlySmall\":\"_justifyContentevenlySmall_1dglf_316 _justifyContentevenly_1dglf_290\",\"justifyContentcenterLarge\":\"_justifyContentcenterLarge_1dglf_323 _justifyContentcenter_1dglf_270\",\"justifyContentstartLarge\":\"_justifyContentstartLarge_1dglf_327 _justifyContentstart_1dglf_274\",\"justifyContentendLarge\":\"_justifyContentendLarge_1dglf_331 _justifyContentend_1dglf_278\",\"justifyContentbetweenLarge\":\"_justifyContentbetweenLarge_1dglf_335 _justifyContentbetween_1dglf_282\",\"justifyContentaroundLarge\":\"_justifyContentaroundLarge_1dglf_339 _justifyContentaround_1dglf_286\",\"justifyContentevenlyLarge\":\"_justifyContentevenlyLarge_1dglf_343 _justifyContentevenly_1dglf_290\",\"fixed\":\"_fixed_1dglf_349\",\"relative\":\"_relative_1dglf_353\",\"absolute\":\"_absolute_1dglf_357\"}","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Box/margin.module.css\"; export default {\"marginBottom-12\":\"_marginBottom-12_pkudd_2\",\"marginBottom-11\":\"_marginBottom-11_pkudd_6\",\"marginBottom-10\":\"_marginBottom-10_pkudd_10\",\"marginBottom-9\":\"_marginBottom-9_pkudd_14\",\"marginBottom-8\":\"_marginBottom-8_pkudd_18\",\"marginBottom-7\":\"_marginBottom-7_pkudd_22\",\"marginBottom-6\":\"_marginBottom-6_pkudd_26\",\"marginBottom-5\":\"_marginBottom-5_pkudd_30\",\"marginBottom-4\":\"_marginBottom-4_pkudd_34\",\"marginBottom-3\":\"_marginBottom-3_pkudd_38\",\"marginBottom-2\":\"_marginBottom-2_pkudd_42\",\"marginBottom-1\":\"_marginBottom-1_pkudd_2\",\"marginBottom0\":\"_marginBottom0_pkudd_50\",\"marginBottom1\":\"_marginBottom1_pkudd_54\",\"marginBottom2\":\"_marginBottom2_pkudd_58\",\"marginBottom3\":\"_marginBottom3_pkudd_62\",\"marginBottom4\":\"_marginBottom4_pkudd_66\",\"marginBottom5\":\"_marginBottom5_pkudd_70\",\"marginBottom6\":\"_marginBottom6_pkudd_74\",\"marginBottom7\":\"_marginBottom7_pkudd_78\",\"marginBottom8\":\"_marginBottom8_pkudd_82\",\"marginBottom9\":\"_marginBottom9_pkudd_86\",\"marginBottom10\":\"_marginBottom10_pkudd_90\",\"marginBottom11\":\"_marginBottom11_pkudd_94\",\"marginBottom12\":\"_marginBottom12_pkudd_98\",\"marginBottomauto\":\"_marginBottomauto_pkudd_102\",\"marginEnd-12\":\"_marginEnd-12_pkudd_107\",\"marginEnd-11\":\"_marginEnd-11_pkudd_111\",\"marginEnd-10\":\"_marginEnd-10_pkudd_115\",\"marginEnd-9\":\"_marginEnd-9_pkudd_119\",\"marginEnd-8\":\"_marginEnd-8_pkudd_123\",\"marginEnd-7\":\"_marginEnd-7_pkudd_127\",\"marginEnd-6\":\"_marginEnd-6_pkudd_131\",\"marginEnd-5\":\"_marginEnd-5_pkudd_135\",\"marginEnd-4\":\"_marginEnd-4_pkudd_139\",\"marginEnd-3\":\"_marginEnd-3_pkudd_143\",\"marginEnd-2\":\"_marginEnd-2_pkudd_147\",\"marginEnd-1\":\"_marginEnd-1_pkudd_107\",\"marginEnd0\":\"_marginEnd0_pkudd_155\",\"marginEnd1\":\"_marginEnd1_pkudd_159\",\"marginEnd2\":\"_marginEnd2_pkudd_163\",\"marginEnd3\":\"_marginEnd3_pkudd_167\",\"marginEnd4\":\"_marginEnd4_pkudd_171\",\"marginEnd5\":\"_marginEnd5_pkudd_175\",\"marginEnd6\":\"_marginEnd6_pkudd_179\",\"marginEnd7\":\"_marginEnd7_pkudd_183\",\"marginEnd8\":\"_marginEnd8_pkudd_187\",\"marginEnd9\":\"_marginEnd9_pkudd_191\",\"marginEnd10\":\"_marginEnd10_pkudd_195\",\"marginEnd11\":\"_marginEnd11_pkudd_199\",\"marginEnd12\":\"_marginEnd12_pkudd_203\",\"marginEndauto\":\"_marginEndauto_pkudd_207\",\"marginStart-12\":\"_marginStart-12_pkudd_212\",\"marginStart-11\":\"_marginStart-11_pkudd_216\",\"marginStart-10\":\"_marginStart-10_pkudd_220\",\"marginStart-9\":\"_marginStart-9_pkudd_224\",\"marginStart-8\":\"_marginStart-8_pkudd_228\",\"marginStart-7\":\"_marginStart-7_pkudd_232\",\"marginStart-6\":\"_marginStart-6_pkudd_236\",\"marginStart-5\":\"_marginStart-5_pkudd_240\",\"marginStart-4\":\"_marginStart-4_pkudd_244\",\"marginStart-3\":\"_marginStart-3_pkudd_248\",\"marginStart-2\":\"_marginStart-2_pkudd_252\",\"marginStart-1\":\"_marginStart-1_pkudd_212\",\"marginStart0\":\"_marginStart0_pkudd_260\",\"marginStart1\":\"_marginStart1_pkudd_264\",\"marginStart2\":\"_marginStart2_pkudd_268\",\"marginStart3\":\"_marginStart3_pkudd_272\",\"marginStart4\":\"_marginStart4_pkudd_276\",\"marginStart5\":\"_marginStart5_pkudd_280\",\"marginStart6\":\"_marginStart6_pkudd_284\",\"marginStart7\":\"_marginStart7_pkudd_288\",\"marginStart8\":\"_marginStart8_pkudd_292\",\"marginStart9\":\"_marginStart9_pkudd_296\",\"marginStart10\":\"_marginStart10_pkudd_300\",\"marginStart11\":\"_marginStart11_pkudd_304\",\"marginStart12\":\"_marginStart12_pkudd_308\",\"marginStartauto\":\"_marginStartauto_pkudd_312\",\"marginTop-12\":\"_marginTop-12_pkudd_317\",\"marginTop-11\":\"_marginTop-11_pkudd_321\",\"marginTop-10\":\"_marginTop-10_pkudd_325\",\"marginTop-9\":\"_marginTop-9_pkudd_329\",\"marginTop-8\":\"_marginTop-8_pkudd_333\",\"marginTop-7\":\"_marginTop-7_pkudd_337\",\"marginTop-6\":\"_marginTop-6_pkudd_341\",\"marginTop-5\":\"_marginTop-5_pkudd_345\",\"marginTop-4\":\"_marginTop-4_pkudd_349\",\"marginTop-3\":\"_marginTop-3_pkudd_353\",\"marginTop-2\":\"_marginTop-2_pkudd_357\",\"marginTop-1\":\"_marginTop-1_pkudd_317\",\"marginTop0\":\"_marginTop0_pkudd_365\",\"marginTop1\":\"_marginTop1_pkudd_369\",\"marginTop2\":\"_marginTop2_pkudd_373\",\"marginTop3\":\"_marginTop3_pkudd_377\",\"marginTop4\":\"_marginTop4_pkudd_381\",\"marginTop5\":\"_marginTop5_pkudd_385\",\"marginTop6\":\"_marginTop6_pkudd_389\",\"marginTop7\":\"_marginTop7_pkudd_393\",\"marginTop8\":\"_marginTop8_pkudd_397\",\"marginTop9\":\"_marginTop9_pkudd_401\",\"marginTop10\":\"_marginTop10_pkudd_405\",\"marginTop11\":\"_marginTop11_pkudd_409\",\"marginTop12\":\"_marginTop12_pkudd_413\",\"marginTopauto\":\"_marginTopauto_pkudd_417\",\"marginBottom-12Small\":\"_marginBottom-12Small_pkudd_423 _marginBottom-12_pkudd_2\",\"marginBottom-11Small\":\"_marginBottom-11Small_pkudd_427 _marginBottom-11_pkudd_6\",\"marginBottom-10Small\":\"_marginBottom-10Small_pkudd_431 _marginBottom-10_pkudd_10\",\"marginBottom-9Small\":\"_marginBottom-9Small_pkudd_435 _marginBottom-9_pkudd_14\",\"marginBottom-8Small\":\"_marginBottom-8Small_pkudd_439 _marginBottom-8_pkudd_18\",\"marginBottom-7Small\":\"_marginBottom-7Small_pkudd_443 _marginBottom-7_pkudd_22\",\"marginBottom-6Small\":\"_marginBottom-6Small_pkudd_447 _marginBottom-6_pkudd_26\",\"marginBottom-5Small\":\"_marginBottom-5Small_pkudd_451 _marginBottom-5_pkudd_30\",\"marginBottom-4Small\":\"_marginBottom-4Small_pkudd_455 _marginBottom-4_pkudd_34\",\"marginBottom-3Small\":\"_marginBottom-3Small_pkudd_459 _marginBottom-3_pkudd_38\",\"marginBottom-2Small\":\"_marginBottom-2Small_pkudd_463 _marginBottom-2_pkudd_42\",\"marginBottom-1Small\":\"_marginBottom-1Small_pkudd_467 _marginBottom-1_pkudd_2\",\"marginBottom0Small\":\"_marginBottom0Small_pkudd_471 _marginBottom0_pkudd_50\",\"marginBottom1Small\":\"_marginBottom1Small_pkudd_475 _marginBottom1_pkudd_54\",\"marginBottom2Small\":\"_marginBottom2Small_pkudd_479 _marginBottom2_pkudd_58\",\"marginBottom3Small\":\"_marginBottom3Small_pkudd_483 _marginBottom3_pkudd_62\",\"marginBottom4Small\":\"_marginBottom4Small_pkudd_487 _marginBottom4_pkudd_66\",\"marginBottom5Small\":\"_marginBottom5Small_pkudd_491 _marginBottom5_pkudd_70\",\"marginBottom6Small\":\"_marginBottom6Small_pkudd_495 _marginBottom6_pkudd_74\",\"marginBottom7Small\":\"_marginBottom7Small_pkudd_499 _marginBottom7_pkudd_78\",\"marginBottom8Small\":\"_marginBottom8Small_pkudd_503 _marginBottom8_pkudd_82\",\"marginBottom9Small\":\"_marginBottom9Small_pkudd_507 _marginBottom9_pkudd_86\",\"marginBottom10Small\":\"_marginBottom10Small_pkudd_511 _marginBottom10_pkudd_90\",\"marginBottom11Small\":\"_marginBottom11Small_pkudd_515 _marginBottom11_pkudd_94\",\"marginBottom12Small\":\"_marginBottom12Small_pkudd_519 _marginBottom12_pkudd_98\",\"marginBottomautoSmall\":\"_marginBottomautoSmall_pkudd_523 _marginBottomauto_pkudd_102\",\"marginEnd-12Small\":\"_marginEnd-12Small_pkudd_527 _marginEnd-12_pkudd_107\",\"marginEnd-11Small\":\"_marginEnd-11Small_pkudd_531 _marginEnd-11_pkudd_111\",\"marginEnd-10Small\":\"_marginEnd-10Small_pkudd_535 _marginEnd-10_pkudd_115\",\"marginEnd-9Small\":\"_marginEnd-9Small_pkudd_539 _marginEnd-9_pkudd_119\",\"marginEnd-8Small\":\"_marginEnd-8Small_pkudd_543 _marginEnd-8_pkudd_123\",\"marginEnd-7Small\":\"_marginEnd-7Small_pkudd_547 _marginEnd-7_pkudd_127\",\"marginEnd-6Small\":\"_marginEnd-6Small_pkudd_551 _marginEnd-6_pkudd_131\",\"marginEnd-5Small\":\"_marginEnd-5Small_pkudd_555 _marginEnd-5_pkudd_135\",\"marginEnd-4Small\":\"_marginEnd-4Small_pkudd_559 _marginEnd-4_pkudd_139\",\"marginEnd-3Small\":\"_marginEnd-3Small_pkudd_563 _marginEnd-3_pkudd_143\",\"marginEnd-2Small\":\"_marginEnd-2Small_pkudd_567 _marginEnd-2_pkudd_147\",\"marginEnd-1Small\":\"_marginEnd-1Small_pkudd_571 _marginEnd-1_pkudd_107\",\"marginEnd0Small\":\"_marginEnd0Small_pkudd_575 _marginEnd0_pkudd_155\",\"marginEnd1Small\":\"_marginEnd1Small_pkudd_579 _marginEnd1_pkudd_159\",\"marginEnd2Small\":\"_marginEnd2Small_pkudd_583 _marginEnd2_pkudd_163\",\"marginEnd3Small\":\"_marginEnd3Small_pkudd_587 _marginEnd3_pkudd_167\",\"marginEnd4Small\":\"_marginEnd4Small_pkudd_591 _marginEnd4_pkudd_171\",\"marginEnd5Small\":\"_marginEnd5Small_pkudd_595 _marginEnd5_pkudd_175\",\"marginEnd6Small\":\"_marginEnd6Small_pkudd_599 _marginEnd6_pkudd_179\",\"marginEnd7Small\":\"_marginEnd7Small_pkudd_603 _marginEnd7_pkudd_183\",\"marginEnd8Small\":\"_marginEnd8Small_pkudd_607 _marginEnd8_pkudd_187\",\"marginEnd9Small\":\"_marginEnd9Small_pkudd_611 _marginEnd9_pkudd_191\",\"marginEnd10Small\":\"_marginEnd10Small_pkudd_615 _marginEnd10_pkudd_195\",\"marginEnd11Small\":\"_marginEnd11Small_pkudd_619 _marginEnd11_pkudd_199\",\"marginEnd12Small\":\"_marginEnd12Small_pkudd_623 _marginEnd12_pkudd_203\",\"marginEndautoSmall\":\"_marginEndautoSmall_pkudd_627 _marginEndauto_pkudd_207\",\"marginStart-12Small\":\"_marginStart-12Small_pkudd_631 _marginStart-12_pkudd_212\",\"marginStart-11Small\":\"_marginStart-11Small_pkudd_635 _marginStart-11_pkudd_216\",\"marginStart-10Small\":\"_marginStart-10Small_pkudd_639 _marginStart-10_pkudd_220\",\"marginStart-9Small\":\"_marginStart-9Small_pkudd_643 _marginStart-9_pkudd_224\",\"marginStart-8Small\":\"_marginStart-8Small_pkudd_647 _marginStart-8_pkudd_228\",\"marginStart-7Small\":\"_marginStart-7Small_pkudd_651 _marginStart-7_pkudd_232\",\"marginStart-6Small\":\"_marginStart-6Small_pkudd_655 _marginStart-6_pkudd_236\",\"marginStart-5Small\":\"_marginStart-5Small_pkudd_659 _marginStart-5_pkudd_240\",\"marginStart-4Small\":\"_marginStart-4Small_pkudd_663 _marginStart-4_pkudd_244\",\"marginStart-3Small\":\"_marginStart-3Small_pkudd_667 _marginStart-3_pkudd_248\",\"marginStart-2Small\":\"_marginStart-2Small_pkudd_671 _marginStart-2_pkudd_252\",\"marginStart-1Small\":\"_marginStart-1Small_pkudd_675 _marginStart-1_pkudd_212\",\"marginStart0Small\":\"_marginStart0Small_pkudd_679 _marginStart0_pkudd_260\",\"marginStart1Small\":\"_marginStart1Small_pkudd_683 _marginStart1_pkudd_264\",\"marginStart2Small\":\"_marginStart2Small_pkudd_687 _marginStart2_pkudd_268\",\"marginStart3Small\":\"_marginStart3Small_pkudd_691 _marginStart3_pkudd_272\",\"marginStart4Small\":\"_marginStart4Small_pkudd_695 _marginStart4_pkudd_276\",\"marginStart5Small\":\"_marginStart5Small_pkudd_699 _marginStart5_pkudd_280\",\"marginStart6Small\":\"_marginStart6Small_pkudd_703 _marginStart6_pkudd_284\",\"marginStart7Small\":\"_marginStart7Small_pkudd_707 _marginStart7_pkudd_288\",\"marginStart8Small\":\"_marginStart8Small_pkudd_711 _marginStart8_pkudd_292\",\"marginStart9Small\":\"_marginStart9Small_pkudd_715 _marginStart9_pkudd_296\",\"marginStart10Small\":\"_marginStart10Small_pkudd_719 _marginStart10_pkudd_300\",\"marginStart11Small\":\"_marginStart11Small_pkudd_723 _marginStart11_pkudd_304\",\"marginStart12Small\":\"_marginStart12Small_pkudd_727 _marginStart12_pkudd_308\",\"marginStartautoSmall\":\"_marginStartautoSmall_pkudd_731 _marginStartauto_pkudd_312\",\"marginTop-12Small\":\"_marginTop-12Small_pkudd_735 _marginTop-12_pkudd_317\",\"marginTop-11Small\":\"_marginTop-11Small_pkudd_739 _marginTop-11_pkudd_321\",\"marginTop-10Small\":\"_marginTop-10Small_pkudd_743 _marginTop-10_pkudd_325\",\"marginTop-9Small\":\"_marginTop-9Small_pkudd_747 _marginTop-9_pkudd_329\",\"marginTop-8Small\":\"_marginTop-8Small_pkudd_751 _marginTop-8_pkudd_333\",\"marginTop-7Small\":\"_marginTop-7Small_pkudd_755 _marginTop-7_pkudd_337\",\"marginTop-6Small\":\"_marginTop-6Small_pkudd_759 _marginTop-6_pkudd_341\",\"marginTop-5Small\":\"_marginTop-5Small_pkudd_763 _marginTop-5_pkudd_345\",\"marginTop-4Small\":\"_marginTop-4Small_pkudd_767 _marginTop-4_pkudd_349\",\"marginTop-3Small\":\"_marginTop-3Small_pkudd_771 _marginTop-3_pkudd_353\",\"marginTop-2Small\":\"_marginTop-2Small_pkudd_775 _marginTop-2_pkudd_357\",\"marginTop-1Small\":\"_marginTop-1Small_pkudd_779 _marginTop-1_pkudd_317\",\"marginTop0Small\":\"_marginTop0Small_pkudd_783 _marginTop0_pkudd_365\",\"marginTop1Small\":\"_marginTop1Small_pkudd_787 _marginTop1_pkudd_369\",\"marginTop2Small\":\"_marginTop2Small_pkudd_791 _marginTop2_pkudd_373\",\"marginTop3Small\":\"_marginTop3Small_pkudd_795 _marginTop3_pkudd_377\",\"marginTop4Small\":\"_marginTop4Small_pkudd_799 _marginTop4_pkudd_381\",\"marginTop5Small\":\"_marginTop5Small_pkudd_803 _marginTop5_pkudd_385\",\"marginTop6Small\":\"_marginTop6Small_pkudd_807 _marginTop6_pkudd_389\",\"marginTop7Small\":\"_marginTop7Small_pkudd_811 _marginTop7_pkudd_393\",\"marginTop8Small\":\"_marginTop8Small_pkudd_815 _marginTop8_pkudd_397\",\"marginTop9Small\":\"_marginTop9Small_pkudd_819 _marginTop9_pkudd_401\",\"marginTop10Small\":\"_marginTop10Small_pkudd_823 _marginTop10_pkudd_405\",\"marginTop11Small\":\"_marginTop11Small_pkudd_827 _marginTop11_pkudd_409\",\"marginTop12Small\":\"_marginTop12Small_pkudd_831 _marginTop12_pkudd_413\",\"marginTopautoSmall\":\"_marginTopautoSmall_pkudd_835 _marginTopauto_pkudd_417\",\"marginBottom-12Large\":\"_marginBottom-12Large_pkudd_842 _marginBottom-12_pkudd_2\",\"marginBottom-11Large\":\"_marginBottom-11Large_pkudd_846 _marginBottom-11_pkudd_6\",\"marginBottom-10Large\":\"_marginBottom-10Large_pkudd_850 _marginBottom-10_pkudd_10\",\"marginBottom-9Large\":\"_marginBottom-9Large_pkudd_854 _marginBottom-9_pkudd_14\",\"marginBottom-8Large\":\"_marginBottom-8Large_pkudd_858 _marginBottom-8_pkudd_18\",\"marginBottom-7Large\":\"_marginBottom-7Large_pkudd_862 _marginBottom-7_pkudd_22\",\"marginBottom-6Large\":\"_marginBottom-6Large_pkudd_866 _marginBottom-6_pkudd_26\",\"marginBottom-5Large\":\"_marginBottom-5Large_pkudd_870 _marginBottom-5_pkudd_30\",\"marginBottom-4Large\":\"_marginBottom-4Large_pkudd_874 _marginBottom-4_pkudd_34\",\"marginBottom-3Large\":\"_marginBottom-3Large_pkudd_878 _marginBottom-3_pkudd_38\",\"marginBottom-2Large\":\"_marginBottom-2Large_pkudd_882 _marginBottom-2_pkudd_42\",\"marginBottom-1Large\":\"_marginBottom-1Large_pkudd_886 _marginBottom-1_pkudd_2\",\"marginBottom0Large\":\"_marginBottom0Large_pkudd_890 _marginBottom0_pkudd_50\",\"marginBottom1Large\":\"_marginBottom1Large_pkudd_894 _marginBottom1_pkudd_54\",\"marginBottom2Large\":\"_marginBottom2Large_pkudd_898 _marginBottom2_pkudd_58\",\"marginBottom3Large\":\"_marginBottom3Large_pkudd_902 _marginBottom3_pkudd_62\",\"marginBottom4Large\":\"_marginBottom4Large_pkudd_906 _marginBottom4_pkudd_66\",\"marginBottom5Large\":\"_marginBottom5Large_pkudd_910 _marginBottom5_pkudd_70\",\"marginBottom6Large\":\"_marginBottom6Large_pkudd_914 _marginBottom6_pkudd_74\",\"marginBottom7Large\":\"_marginBottom7Large_pkudd_918 _marginBottom7_pkudd_78\",\"marginBottom8Large\":\"_marginBottom8Large_pkudd_922 _marginBottom8_pkudd_82\",\"marginBottom9Large\":\"_marginBottom9Large_pkudd_926 _marginBottom9_pkudd_86\",\"marginBottom10Large\":\"_marginBottom10Large_pkudd_930 _marginBottom10_pkudd_90\",\"marginBottom11Large\":\"_marginBottom11Large_pkudd_934 _marginBottom11_pkudd_94\",\"marginBottom12Large\":\"_marginBottom12Large_pkudd_938 _marginBottom12_pkudd_98\",\"marginBottomautoLarge\":\"_marginBottomautoLarge_pkudd_942 _marginBottomauto_pkudd_102\",\"marginEnd-12Large\":\"_marginEnd-12Large_pkudd_946 _marginEnd-12_pkudd_107\",\"marginEnd-11Large\":\"_marginEnd-11Large_pkudd_950 _marginEnd-11_pkudd_111\",\"marginEnd-10Large\":\"_marginEnd-10Large_pkudd_954 _marginEnd-10_pkudd_115\",\"marginEnd-9Large\":\"_marginEnd-9Large_pkudd_958 _marginEnd-9_pkudd_119\",\"marginEnd-8Large\":\"_marginEnd-8Large_pkudd_962 _marginEnd-8_pkudd_123\",\"marginEnd-7Large\":\"_marginEnd-7Large_pkudd_966 _marginEnd-7_pkudd_127\",\"marginEnd-6Large\":\"_marginEnd-6Large_pkudd_970 _marginEnd-6_pkudd_131\",\"marginEnd-5Large\":\"_marginEnd-5Large_pkudd_974 _marginEnd-5_pkudd_135\",\"marginEnd-4Large\":\"_marginEnd-4Large_pkudd_978 _marginEnd-4_pkudd_139\",\"marginEnd-3Large\":\"_marginEnd-3Large_pkudd_982 _marginEnd-3_pkudd_143\",\"marginEnd-2Large\":\"_marginEnd-2Large_pkudd_986 _marginEnd-2_pkudd_147\",\"marginEnd-1Large\":\"_marginEnd-1Large_pkudd_990 _marginEnd-1_pkudd_107\",\"marginEnd0Large\":\"_marginEnd0Large_pkudd_994 _marginEnd0_pkudd_155\",\"marginEnd1Large\":\"_marginEnd1Large_pkudd_998 _marginEnd1_pkudd_159\",\"marginEnd2Large\":\"_marginEnd2Large_pkudd_1002 _marginEnd2_pkudd_163\",\"marginEnd3Large\":\"_marginEnd3Large_pkudd_1006 _marginEnd3_pkudd_167\",\"marginEnd4Large\":\"_marginEnd4Large_pkudd_1010 _marginEnd4_pkudd_171\",\"marginEnd5Large\":\"_marginEnd5Large_pkudd_1014 _marginEnd5_pkudd_175\",\"marginEnd6Large\":\"_marginEnd6Large_pkudd_1018 _marginEnd6_pkudd_179\",\"marginEnd7Large\":\"_marginEnd7Large_pkudd_1022 _marginEnd7_pkudd_183\",\"marginEnd8Large\":\"_marginEnd8Large_pkudd_1026 _marginEnd8_pkudd_187\",\"marginEnd9Large\":\"_marginEnd9Large_pkudd_1030 _marginEnd9_pkudd_191\",\"marginEnd10Large\":\"_marginEnd10Large_pkudd_1034 _marginEnd10_pkudd_195\",\"marginEnd11Large\":\"_marginEnd11Large_pkudd_1038 _marginEnd11_pkudd_199\",\"marginEnd12Large\":\"_marginEnd12Large_pkudd_1042 _marginEnd12_pkudd_203\",\"marginEndautoLarge\":\"_marginEndautoLarge_pkudd_1046 _marginEndauto_pkudd_207\",\"marginStart-12Large\":\"_marginStart-12Large_pkudd_1050 _marginStart-12_pkudd_212\",\"marginStart-11Large\":\"_marginStart-11Large_pkudd_1054 _marginStart-11_pkudd_216\",\"marginStart-10Large\":\"_marginStart-10Large_pkudd_1058 _marginStart-10_pkudd_220\",\"marginStart-9Large\":\"_marginStart-9Large_pkudd_1062 _marginStart-9_pkudd_224\",\"marginStart-8Large\":\"_marginStart-8Large_pkudd_1066 _marginStart-8_pkudd_228\",\"marginStart-7Large\":\"_marginStart-7Large_pkudd_1070 _marginStart-7_pkudd_232\",\"marginStart-6Large\":\"_marginStart-6Large_pkudd_1074 _marginStart-6_pkudd_236\",\"marginStart-5Large\":\"_marginStart-5Large_pkudd_1078 _marginStart-5_pkudd_240\",\"marginStart-4Large\":\"_marginStart-4Large_pkudd_1082 _marginStart-4_pkudd_244\",\"marginStart-3Large\":\"_marginStart-3Large_pkudd_1086 _marginStart-3_pkudd_248\",\"marginStart-2Large\":\"_marginStart-2Large_pkudd_1090 _marginStart-2_pkudd_252\",\"marginStart-1Large\":\"_marginStart-1Large_pkudd_1094 _marginStart-1_pkudd_212\",\"marginStart0Large\":\"_marginStart0Large_pkudd_1098 _marginStart0_pkudd_260\",\"marginStart1Large\":\"_marginStart1Large_pkudd_1102 _marginStart1_pkudd_264\",\"marginStart2Large\":\"_marginStart2Large_pkudd_1106 _marginStart2_pkudd_268\",\"marginStart3Large\":\"_marginStart3Large_pkudd_1110 _marginStart3_pkudd_272\",\"marginStart4Large\":\"_marginStart4Large_pkudd_1114 _marginStart4_pkudd_276\",\"marginStart5Large\":\"_marginStart5Large_pkudd_1118 _marginStart5_pkudd_280\",\"marginStart6Large\":\"_marginStart6Large_pkudd_1122 _marginStart6_pkudd_284\",\"marginStart7Large\":\"_marginStart7Large_pkudd_1126 _marginStart7_pkudd_288\",\"marginStart8Large\":\"_marginStart8Large_pkudd_1130 _marginStart8_pkudd_292\",\"marginStart9Large\":\"_marginStart9Large_pkudd_1134 _marginStart9_pkudd_296\",\"marginStart10Large\":\"_marginStart10Large_pkudd_1138 _marginStart10_pkudd_300\",\"marginStart11Large\":\"_marginStart11Large_pkudd_1142 _marginStart11_pkudd_304\",\"marginStart12Large\":\"_marginStart12Large_pkudd_1146 _marginStart12_pkudd_308\",\"marginStartautoLarge\":\"_marginStartautoLarge_pkudd_1150 _marginStartauto_pkudd_312\",\"marginTop-12Large\":\"_marginTop-12Large_pkudd_1154 _marginTop-12_pkudd_317\",\"marginTop-11Large\":\"_marginTop-11Large_pkudd_1158 _marginTop-11_pkudd_321\",\"marginTop-10Large\":\"_marginTop-10Large_pkudd_1162 _marginTop-10_pkudd_325\",\"marginTop-9Large\":\"_marginTop-9Large_pkudd_1166 _marginTop-9_pkudd_329\",\"marginTop-8Large\":\"_marginTop-8Large_pkudd_1170 _marginTop-8_pkudd_333\",\"marginTop-7Large\":\"_marginTop-7Large_pkudd_1174 _marginTop-7_pkudd_337\",\"marginTop-6Large\":\"_marginTop-6Large_pkudd_1178 _marginTop-6_pkudd_341\",\"marginTop-5Large\":\"_marginTop-5Large_pkudd_1182 _marginTop-5_pkudd_345\",\"marginTop-4Large\":\"_marginTop-4Large_pkudd_1186 _marginTop-4_pkudd_349\",\"marginTop-3Large\":\"_marginTop-3Large_pkudd_1190 _marginTop-3_pkudd_353\",\"marginTop-2Large\":\"_marginTop-2Large_pkudd_1194 _marginTop-2_pkudd_357\",\"marginTop-1Large\":\"_marginTop-1Large_pkudd_1198 _marginTop-1_pkudd_317\",\"marginTop0Large\":\"_marginTop0Large_pkudd_1202 _marginTop0_pkudd_365\",\"marginTop1Large\":\"_marginTop1Large_pkudd_1206 _marginTop1_pkudd_369\",\"marginTop2Large\":\"_marginTop2Large_pkudd_1210 _marginTop2_pkudd_373\",\"marginTop3Large\":\"_marginTop3Large_pkudd_1214 _marginTop3_pkudd_377\",\"marginTop4Large\":\"_marginTop4Large_pkudd_1218 _marginTop4_pkudd_381\",\"marginTop5Large\":\"_marginTop5Large_pkudd_1222 _marginTop5_pkudd_385\",\"marginTop6Large\":\"_marginTop6Large_pkudd_1226 _marginTop6_pkudd_389\",\"marginTop7Large\":\"_marginTop7Large_pkudd_1230 _marginTop7_pkudd_393\",\"marginTop8Large\":\"_marginTop8Large_pkudd_1234 _marginTop8_pkudd_397\",\"marginTop9Large\":\"_marginTop9Large_pkudd_1238 _marginTop9_pkudd_401\",\"marginTop10Large\":\"_marginTop10Large_pkudd_1242 _marginTop10_pkudd_405\",\"marginTop11Large\":\"_marginTop11Large_pkudd_1246 _marginTop11_pkudd_409\",\"marginTop12Large\":\"_marginTop12Large_pkudd_1250 _marginTop12_pkudd_413\",\"marginTopautoLarge\":\"_marginTopautoLarge_pkudd_1254 _marginTopauto_pkudd_417\"}","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Box/padding.module.css\"; export default {\"paddingX0\":\"_paddingX0_1kcbd_2\",\"paddingX1\":\"_paddingX1_1kcbd_7\",\"paddingX2\":\"_paddingX2_1kcbd_12\",\"paddingX3\":\"_paddingX3_1kcbd_17\",\"paddingX4\":\"_paddingX4_1kcbd_22\",\"paddingX5\":\"_paddingX5_1kcbd_27\",\"paddingX6\":\"_paddingX6_1kcbd_32\",\"paddingX7\":\"_paddingX7_1kcbd_37\",\"paddingX8\":\"_paddingX8_1kcbd_42\",\"paddingX9\":\"_paddingX9_1kcbd_47\",\"paddingX10\":\"_paddingX10_1kcbd_52\",\"paddingX11\":\"_paddingX11_1kcbd_57\",\"paddingX12\":\"_paddingX12_1kcbd_62\",\"paddingY0\":\"_paddingY0_1kcbd_67\",\"paddingY1\":\"_paddingY1_1kcbd_72\",\"paddingY2\":\"_paddingY2_1kcbd_77\",\"paddingY3\":\"_paddingY3_1kcbd_82\",\"paddingY4\":\"_paddingY4_1kcbd_87\",\"paddingY5\":\"_paddingY5_1kcbd_92\",\"paddingY6\":\"_paddingY6_1kcbd_97\",\"paddingY7\":\"_paddingY7_1kcbd_102\",\"paddingY8\":\"_paddingY8_1kcbd_107\",\"paddingY9\":\"_paddingY9_1kcbd_112\",\"paddingY10\":\"_paddingY10_1kcbd_117\",\"paddingY11\":\"_paddingY11_1kcbd_122\",\"paddingY12\":\"_paddingY12_1kcbd_127\",\"paddingX0Small\":\"_paddingX0Small_1kcbd_134 _paddingX0_1kcbd_2\",\"paddingX1Small\":\"_paddingX1Small_1kcbd_138 _paddingX1_1kcbd_7\",\"paddingX2Small\":\"_paddingX2Small_1kcbd_142 _paddingX2_1kcbd_12\",\"paddingX3Small\":\"_paddingX3Small_1kcbd_146 _paddingX3_1kcbd_17\",\"paddingX4Small\":\"_paddingX4Small_1kcbd_150 _paddingX4_1kcbd_22\",\"paddingX5Small\":\"_paddingX5Small_1kcbd_154 _paddingX5_1kcbd_27\",\"paddingX6Small\":\"_paddingX6Small_1kcbd_158 _paddingX6_1kcbd_32\",\"paddingX7Small\":\"_paddingX7Small_1kcbd_162 _paddingX7_1kcbd_37\",\"paddingX8Small\":\"_paddingX8Small_1kcbd_166 _paddingX8_1kcbd_42\",\"paddingX9Small\":\"_paddingX9Small_1kcbd_170 _paddingX9_1kcbd_47\",\"paddingX10Small\":\"_paddingX10Small_1kcbd_174 _paddingX10_1kcbd_52\",\"paddingX11Small\":\"_paddingX11Small_1kcbd_178 _paddingX11_1kcbd_57\",\"paddingX12Small\":\"_paddingX12Small_1kcbd_182 _paddingX12_1kcbd_62\",\"paddingY0Small\":\"_paddingY0Small_1kcbd_186 _paddingY0_1kcbd_67\",\"paddingY1Small\":\"_paddingY1Small_1kcbd_190 _paddingY1_1kcbd_72\",\"paddingY2Small\":\"_paddingY2Small_1kcbd_194 _paddingY2_1kcbd_77\",\"paddingY3Small\":\"_paddingY3Small_1kcbd_198 _paddingY3_1kcbd_82\",\"paddingY4Small\":\"_paddingY4Small_1kcbd_202 _paddingY4_1kcbd_87\",\"paddingY5Small\":\"_paddingY5Small_1kcbd_206 _paddingY5_1kcbd_92\",\"paddingY6Small\":\"_paddingY6Small_1kcbd_210 _paddingY6_1kcbd_97\",\"paddingY7Small\":\"_paddingY7Small_1kcbd_214 _paddingY7_1kcbd_102\",\"paddingY8Small\":\"_paddingY8Small_1kcbd_218 _paddingY8_1kcbd_107\",\"paddingY9Small\":\"_paddingY9Small_1kcbd_222 _paddingY9_1kcbd_112\",\"paddingY10Small\":\"_paddingY10Small_1kcbd_226 _paddingY10_1kcbd_117\",\"paddingY11Small\":\"_paddingY11Small_1kcbd_230 _paddingY11_1kcbd_122\",\"paddingY12Small\":\"_paddingY12Small_1kcbd_234 _paddingY12_1kcbd_127\",\"paddingX0Large\":\"_paddingX0Large_1kcbd_241 _paddingX0_1kcbd_2\",\"paddingX1Large\":\"_paddingX1Large_1kcbd_245 _paddingX1_1kcbd_7\",\"paddingX2Large\":\"_paddingX2Large_1kcbd_249 _paddingX2_1kcbd_12\",\"paddingX3Large\":\"_paddingX3Large_1kcbd_253 _paddingX3_1kcbd_17\",\"paddingX4Large\":\"_paddingX4Large_1kcbd_257 _paddingX4_1kcbd_22\",\"paddingX5Large\":\"_paddingX5Large_1kcbd_261 _paddingX5_1kcbd_27\",\"paddingX6Large\":\"_paddingX6Large_1kcbd_265 _paddingX6_1kcbd_32\",\"paddingX7Large\":\"_paddingX7Large_1kcbd_269 _paddingX7_1kcbd_37\",\"paddingX8Large\":\"_paddingX8Large_1kcbd_273 _paddingX8_1kcbd_42\",\"paddingX9Large\":\"_paddingX9Large_1kcbd_277 _paddingX9_1kcbd_47\",\"paddingX10Large\":\"_paddingX10Large_1kcbd_281 _paddingX10_1kcbd_52\",\"paddingX11Large\":\"_paddingX11Large_1kcbd_285 _paddingX11_1kcbd_57\",\"paddingX12Large\":\"_paddingX12Large_1kcbd_289 _paddingX12_1kcbd_62\",\"paddingY0Large\":\"_paddingY0Large_1kcbd_293 _paddingY0_1kcbd_67\",\"paddingY1Large\":\"_paddingY1Large_1kcbd_297 _paddingY1_1kcbd_72\",\"paddingY2Large\":\"_paddingY2Large_1kcbd_301 _paddingY2_1kcbd_77\",\"paddingY3Large\":\"_paddingY3Large_1kcbd_305 _paddingY3_1kcbd_82\",\"paddingY4Large\":\"_paddingY4Large_1kcbd_309 _paddingY4_1kcbd_87\",\"paddingY5Large\":\"_paddingY5Large_1kcbd_313 _paddingY5_1kcbd_92\",\"paddingY6Large\":\"_paddingY6Large_1kcbd_317 _paddingY6_1kcbd_97\",\"paddingY7Large\":\"_paddingY7Large_1kcbd_321 _paddingY7_1kcbd_102\",\"paddingY8Large\":\"_paddingY8Large_1kcbd_325 _paddingY8_1kcbd_107\",\"paddingY9Large\":\"_paddingY9Large_1kcbd_329 _paddingY9_1kcbd_112\",\"paddingY10Large\":\"_paddingY10Large_1kcbd_333 _paddingY10_1kcbd_117\",\"paddingY11Large\":\"_paddingY11Large_1kcbd_337 _paddingY11_1kcbd_122\",\"paddingY12Large\":\"_paddingY12Large_1kcbd_341 _paddingY12_1kcbd_127\"}","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/colors/colors.module.css\"; export default {\"inheritColor\":\"_inheritColor_j1pwm_2\",\"destructive700Color\":\"_destructive700Color_j1pwm_6\",\"gray700Color\":\"_gray700Color_j1pwm_10\",\"gray900Color\":\"_gray900Color_j1pwm_14\",\"primary700Color\":\"_primary700Color_j1pwm_18\",\"whiteColor\":\"_whiteColor_j1pwm_22\",\"blackBackgroundColor\":\"_blackBackgroundColor_j1pwm_27\",\"destructive100BackgroundColor\":\"_destructive100BackgroundColor_j1pwm_31\",\"destructive200BackgroundColor\":\"_destructive200BackgroundColor_j1pwm_35\",\"destructive300BackgroundColor\":\"_destructive300BackgroundColor_j1pwm_39\",\"destructive700BackgroundColor\":\"_destructive700BackgroundColor_j1pwm_43\",\"destructive800BackgroundColor\":\"_destructive800BackgroundColor_j1pwm_47\",\"destructive900BackgroundColor\":\"_destructive900BackgroundColor_j1pwm_51\",\"gray10BackgroundColor\":\"_gray10BackgroundColor_j1pwm_55\",\"gray30BackgroundColor\":\"_gray30BackgroundColor_j1pwm_59\",\"gray80BackgroundColor\":\"_gray80BackgroundColor_j1pwm_63\",\"gray100BackgroundColor\":\"_gray100BackgroundColor_j1pwm_67\",\"gray200BackgroundColor\":\"_gray200BackgroundColor_j1pwm_71\",\"gray300BackgroundColor\":\"_gray300BackgroundColor_j1pwm_75\",\"gray700BackgroundColor\":\"_gray700BackgroundColor_j1pwm_79\",\"gray800BackgroundColor\":\"_gray800BackgroundColor_j1pwm_83\",\"gray900BackgroundColor\":\"_gray900BackgroundColor_j1pwm_87\",\"orange100BackgroundColor\":\"_orange100BackgroundColor_j1pwm_91\",\"orange200BackgroundColor\":\"_orange200BackgroundColor_j1pwm_95\",\"orange300BackgroundColor\":\"_orange300BackgroundColor_j1pwm_99\",\"orange700BackgroundColor\":\"_orange700BackgroundColor_j1pwm_103\",\"orange800BackgroundColor\":\"_orange800BackgroundColor_j1pwm_107\",\"orange900BackgroundColor\":\"_orange900BackgroundColor_j1pwm_111\",\"primary100BackgroundColor\":\"_primary100BackgroundColor_j1pwm_115\",\"primary200BackgroundColor\":\"_primary200BackgroundColor_j1pwm_119\",\"primary300BackgroundColor\":\"_primary300BackgroundColor_j1pwm_123\",\"primary700BackgroundColor\":\"_primary700BackgroundColor_j1pwm_127\",\"primary800BackgroundColor\":\"_primary800BackgroundColor_j1pwm_131\",\"primary900BackgroundColor\":\"_primary900BackgroundColor_j1pwm_135\",\"success100BackgroundColor\":\"_success100BackgroundColor_j1pwm_139\",\"success200BackgroundColor\":\"_success200BackgroundColor_j1pwm_143\",\"success300BackgroundColor\":\"_success300BackgroundColor_j1pwm_147\",\"success700BackgroundColor\":\"_success700BackgroundColor_j1pwm_151\",\"success800BackgroundColor\":\"_success800BackgroundColor_j1pwm_155\",\"success900BackgroundColor\":\"_success900BackgroundColor_j1pwm_159\",\"purple100BackgroundColor\":\"_purple100BackgroundColor_j1pwm_163\",\"purple200BackgroundColor\":\"_purple200BackgroundColor_j1pwm_167\",\"purple300BackgroundColor\":\"_purple300BackgroundColor_j1pwm_171\",\"purple700BackgroundColor\":\"_purple700BackgroundColor_j1pwm_175\",\"purple800BackgroundColor\":\"_purple800BackgroundColor_j1pwm_179\",\"purple900BackgroundColor\":\"_purple900BackgroundColor_j1pwm_183\",\"whiteBackgroundColor\":\"_whiteBackgroundColor_j1pwm_187\",\"yellow100BackgroundColor\":\"_yellow100BackgroundColor_j1pwm_191\",\"yellow200BackgroundColor\":\"_yellow200BackgroundColor_j1pwm_195\",\"yellow300BackgroundColor\":\"_yellow300BackgroundColor_j1pwm_199\",\"yellow700BackgroundColor\":\"_yellow700BackgroundColor_j1pwm_203\",\"yellow800BackgroundColor\":\"_yellow800BackgroundColor_j1pwm_207\",\"yellow900BackgroundColor\":\"_yellow900BackgroundColor_j1pwm_211\"}","import classNames from \"classnames\";\nimport backgroundColor from \"../colors//backgroundColor\";\nimport foregroundColor from \"../colors/foregroundColor\";\nimport React, { useContext, ReactElement } from \"react\";\nimport { Color, Size } from \"../constants\";\nimport ButtonGroupContext from \"../ButtonGroup/ButtonGroupContext\";\nimport styles from \"./Button.module.css\";\n\nconst textVariant = {\n // Replace with `Typography` once it lands in `syntax-core`\n [\"sm\"]: styles.buttonTextSmall,\n [\"md\"]: styles.buttonTextMedium,\n [\"lg\"]: styles.buttonTextLarge,\n} as const;\n\nconst loadingIconSize = {\n [\"sm\"]: 16,\n [\"md\"]: 20,\n [\"lg\"]: 24,\n};\n\nconst iconSize = {\n [\"sm\"]: styles.smIcon,\n [\"md\"]: styles.mdIcon,\n [\"lg\"]: styles.lgIcon,\n};\n\n/**\n * Button is a clickable element that is used to perform an action.\n */\nconst Button = ({\n text,\n loadingText,\n color = \"primary\",\n size: sizeProp = \"md\",\n accessibilityLabel,\n disabled: disabledProp = false,\n loading = false,\n fullWidth: fullWidthProp = false,\n startIcon: StartIcon,\n endIcon: EndIcon,\n onClick,\n tooltip,\n}: {\n /**\n * The text to be displayed inside the button\n */\n text: string;\n /**\n * The text to be displayed inside the button when it is in a loading state\n */\n loadingText?: string;\n /**\n * The color of the button\n *\n * @defaultValue \"primary\"\n */\n color?: (typeof Color)[number];\n /**\n * The size of the button\n *\n * * `sm`: 32px\n * * `md`: 40px\n * * `lg`: 48px\n *\n * @defaultValue \"md\"\n */\n size?: (typeof Size)[number];\n /**\n * The label to be used for accessibility\n */\n accessibilityLabel?: string;\n /**\n * If `true`, the button will be disabled\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * If `true`, the button will be in a loading state\n *\n * @defaultValue false\n */\n loading?: boolean;\n /**\n * If `true`, the button will take up the full width of its container\n *\n * @defaultValue false\n */\n fullWidth?: boolean;\n /**\n * The icon to be displayed at the start of the button. Please use a [Rounded Material Icon](https://material.io/resources/icons/?style=round)\n */\n startIcon?: React.ComponentType<{ className: string }>;\n /**\n * The icon to be displayed at the end of the button. Please use a [Rounded Material Icon](https://material.io/resources/icons/?style=round)\n */\n endIcon?: React.ComponentType<{ className: string }>;\n /**\n * The callback to be called when the button is clicked\n */\n onClick: React.MouseEventHandler<HTMLButtonElement>;\n /**\n * The tooltip to be displayed when the user hovers over the button\n */\n tooltip?: string;\n}): ReactElement => {\n const contextProps = useContext(ButtonGroupContext);\n\n const size = contextProps?.size || sizeProp;\n const disabled = contextProps?.disabled || disabledProp;\n const fullWidth = contextProps?.fullWidth || fullWidthProp;\n\n return (\n <button\n aria-label={accessibilityLabel}\n type=\"button\"\n title={tooltip}\n disabled={disabled || loading}\n onClick={onClick}\n className={classNames(\n styles.button,\n foregroundColor(color),\n backgroundColor(color),\n styles[size],\n {\n [styles.fullWidth]: fullWidth,\n [styles.buttonGap]: size === \"lg\" || size === \"md\",\n },\n )}\n >\n {!loading && StartIcon && (\n <StartIcon className={classNames(styles.icon, iconSize[size])} />\n )}\n {((loading && loadingText) || (!loading && text)) && (\n <div className={styles.textContainer}>\n {/* Replace with `Typography` once it lands in `syntax-core` */}\n <div className={classNames(styles.buttonText, textVariant[size])}>\n {loading ? loadingText : text}\n </div>\n </div>\n )}\n {!loading && EndIcon && (\n <EndIcon className={classNames(styles.icon, iconSize[size])} />\n )}\n {loading && (\n <svg\n className={classNames(styles.loading, foregroundColor(color))}\n viewBox=\"22 22 44 44\"\n width={loadingIconSize[size]}\n height={loadingIconSize[size]}\n >\n <circle\n className={styles.loadingCircle}\n cx=\"44\"\n cy=\"44\"\n r=\"20.2\"\n fill=\"none\"\n strokeWidth=\"3.6\"\n />\n </svg>\n )}\n </button>\n );\n};\n\nexport default Button;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/colors/colors.module.css\"; export default {\"inheritColor\":\"_inheritColor_j1pwm_2\",\"destructive700Color\":\"_destructive700Color_j1pwm_6\",\"gray700Color\":\"_gray700Color_j1pwm_10\",\"gray900Color\":\"_gray900Color_j1pwm_14\",\"primary700Color\":\"_primary700Color_j1pwm_18\",\"whiteColor\":\"_whiteColor_j1pwm_22\",\"blackBackgroundColor\":\"_blackBackgroundColor_j1pwm_27\",\"destructive100BackgroundColor\":\"_destructive100BackgroundColor_j1pwm_31\",\"destructive200BackgroundColor\":\"_destructive200BackgroundColor_j1pwm_35\",\"destructive300BackgroundColor\":\"_destructive300BackgroundColor_j1pwm_39\",\"destructive700BackgroundColor\":\"_destructive700BackgroundColor_j1pwm_43\",\"destructive800BackgroundColor\":\"_destructive800BackgroundColor_j1pwm_47\",\"destructive900BackgroundColor\":\"_destructive900BackgroundColor_j1pwm_51\",\"gray10BackgroundColor\":\"_gray10BackgroundColor_j1pwm_55\",\"gray30BackgroundColor\":\"_gray30BackgroundColor_j1pwm_59\",\"gray80BackgroundColor\":\"_gray80BackgroundColor_j1pwm_63\",\"gray100BackgroundColor\":\"_gray100BackgroundColor_j1pwm_67\",\"gray200BackgroundColor\":\"_gray200BackgroundColor_j1pwm_71\",\"gray300BackgroundColor\":\"_gray300BackgroundColor_j1pwm_75\",\"gray700BackgroundColor\":\"_gray700BackgroundColor_j1pwm_79\",\"gray800BackgroundColor\":\"_gray800BackgroundColor_j1pwm_83\",\"gray900BackgroundColor\":\"_gray900BackgroundColor_j1pwm_87\",\"orange100BackgroundColor\":\"_orange100BackgroundColor_j1pwm_91\",\"orange200BackgroundColor\":\"_orange200BackgroundColor_j1pwm_95\",\"orange300BackgroundColor\":\"_orange300BackgroundColor_j1pwm_99\",\"orange700BackgroundColor\":\"_orange700BackgroundColor_j1pwm_103\",\"orange800BackgroundColor\":\"_orange800BackgroundColor_j1pwm_107\",\"orange900BackgroundColor\":\"_orange900BackgroundColor_j1pwm_111\",\"primary100BackgroundColor\":\"_primary100BackgroundColor_j1pwm_115\",\"primary200BackgroundColor\":\"_primary200BackgroundColor_j1pwm_119\",\"primary300BackgroundColor\":\"_primary300BackgroundColor_j1pwm_123\",\"primary700BackgroundColor\":\"_primary700BackgroundColor_j1pwm_127\",\"primary800BackgroundColor\":\"_primary800BackgroundColor_j1pwm_131\",\"primary900BackgroundColor\":\"_primary900BackgroundColor_j1pwm_135\",\"success100BackgroundColor\":\"_success100BackgroundColor_j1pwm_139\",\"success200BackgroundColor\":\"_success200BackgroundColor_j1pwm_143\",\"success300BackgroundColor\":\"_success300BackgroundColor_j1pwm_147\",\"success700BackgroundColor\":\"_success700BackgroundColor_j1pwm_151\",\"success800BackgroundColor\":\"_success800BackgroundColor_j1pwm_155\",\"success900BackgroundColor\":\"_success900BackgroundColor_j1pwm_159\",\"purple100BackgroundColor\":\"_purple100BackgroundColor_j1pwm_163\",\"purple200BackgroundColor\":\"_purple200BackgroundColor_j1pwm_167\",\"purple300BackgroundColor\":\"_purple300BackgroundColor_j1pwm_171\",\"purple700BackgroundColor\":\"_purple700BackgroundColor_j1pwm_175\",\"purple800BackgroundColor\":\"_purple800BackgroundColor_j1pwm_179\",\"purple900BackgroundColor\":\"_purple900BackgroundColor_j1pwm_183\",\"whiteBackgroundColor\":\"_whiteBackgroundColor_j1pwm_187\",\"yellow100BackgroundColor\":\"_yellow100BackgroundColor_j1pwm_191\",\"yellow200BackgroundColor\":\"_yellow200BackgroundColor_j1pwm_195\",\"yellow300BackgroundColor\":\"_yellow300BackgroundColor_j1pwm_199\",\"yellow700BackgroundColor\":\"_yellow700BackgroundColor_j1pwm_203\",\"yellow800BackgroundColor\":\"_yellow800BackgroundColor_j1pwm_207\",\"yellow900BackgroundColor\":\"_yellow900BackgroundColor_j1pwm_211\"}","import { Color } from \"../constants\";\nimport styles from \"./colors.module.css\";\n\nexport default function backgroundColor(color: (typeof Color)[number]): string {\n switch (color) {\n case \"secondary\":\n return styles.primary100BackgroundColor;\n case \"destructive-primary\":\n return styles.destructive700BackgroundColor;\n case \"destructive-secondary\":\n return styles.destructive100BackgroundColor;\n case \"success\":\n return styles.success700BackgroundColor;\n case \"tertiary\":\n case \"destructive-tertiary\":\n return styles.whiteBackgroundColor;\n case \"branded\":\n return styles.yellow700BackgroundColor;\n default:\n return styles.primary700BackgroundColor;\n }\n}\n","import { Color } from \"../constants\";\nimport styles from \"./colors.module.css\";\n\nexport default function foregroundColor(color: (typeof Color)[number]): string {\n switch (color) {\n case \"secondary\":\n case \"tertiary\":\n return styles.primary700Color;\n case \"destructive-secondary\":\n case \"destructive-tertiary\":\n return styles.destructive700Color;\n case \"branded\":\n return styles.gray900Color;\n default:\n return styles.whiteColor;\n }\n}\n","import { Size } from \"../constants\";\nimport React from \"react\";\n\ninterface ButtonGroupContextType {\n size?: (typeof Size)[number];\n disabled?: boolean;\n fullWidth?: boolean;\n}\n\nconst ButtonGroupContext = React.createContext<ButtonGroupContextType | null>(\n {},\n);\n\nButtonGroupContext.displayName = \"ButtonGroupContext\";\n\nexport default ButtonGroupContext;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Button/Button.module.css\"; export default {\"button\":\"_button_1p2nl_1\",\"buttonGap\":\"_buttonGap_1p2nl_9\",\"fullWidth\":\"_fullWidth_1p2nl_50\",\"sm\":\"_sm_1p2nl_54\",\"md\":\"_md_1p2nl_61\",\"lg\":\"_lg_1p2nl_68\",\"icon\":\"_icon_1p2nl_75\",\"smIcon\":\"_smIcon_1p2nl_79\",\"mdIcon\":\"_mdIcon_1p2nl_86\",\"lgIcon\":\"_lgIcon_1p2nl_93\",\"textContainer\":\"_textContainer_1p2nl_100\",\"loading\":\"_loading_1p2nl_115\",\"syntaxButtonLoadingRotate\":\"_syntaxButtonLoadingRotate_1p2nl_1\",\"loadingCircle\":\"_loadingCircle_1p2nl_119\",\"buttonText\":\"_buttonText_1p2nl_127\",\"buttonTextSmall\":\"_buttonTextSmall_1p2nl_134\",\"buttonTextMedium\":\"_buttonTextMedium_1p2nl_138\",\"buttonTextLarge\":\"_buttonTextLarge_1p2nl_142\"}","import { useMemo, ReactElement, ReactNode } from \"react\";\nimport styles from \"./ButtonGroup.module.css\";\nimport { Size } from \"../constants\";\nimport ButtonGroupContext from \"./ButtonGroupContext\";\nimport classNames from \"classnames\";\n\nconst gap = {\n [\"sm\"]: styles.smallGap,\n [\"md\"]: styles.mediumGap,\n [\"lg\"]: styles.largeGap,\n} as const;\n\n/**\n * Group buttons to render them in a row or column with consistent spacing in between each button\n */\nconst ButtonGroup = ({\n disabled = false,\n fullWidth = false,\n orientation = \"horizontal\",\n size = \"md\",\n children,\n}: {\n /**\n * If `true`, all buttons will be disabled.\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * If `true`, all buttons will be full width.\n *\n * @defaultValue false\n */\n fullWidth?: boolean;\n /**\n * The orientation of the button group\n *\n * @defaultValue \"horizontal\"\n */\n orientation?: \"horizontal\" | \"vertical\";\n /**\n * The size of the button group\n *\n * * `sm`: 32px\n * * `md`: 40px\n * * `lg`: 48px\n *\n * @defaultValue \"md\"\n */\n size?: (typeof Size)[number];\n /**\n * Buttons to be rendered inside the button group\n */\n children?: ReactNode;\n}): ReactElement => {\n const context = useMemo(\n () => ({ disabled, fullWidth, size }),\n [disabled, fullWidth, size],\n );\n\n const classnames = classNames(styles.buttonGroup, gap[size], {\n [styles.horizontal]: orientation === \"horizontal\",\n [styles.vertical]: orientation === \"vertical\",\n });\n\n return (\n <ButtonGroupContext.Provider value={context}>\n <div className={classnames}>{children}</div>\n </ButtonGroupContext.Provider>\n );\n};\n\nexport default ButtonGroup;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/ButtonGroup/ButtonGroup.module.css\"; export default {\"buttonGroup\":\"_buttonGroup_184aa_1\",\"horizontal\":\"_horizontal_184aa_6\",\"vertical\":\"_vertical_184aa_10\",\"smallGap\":\"_smallGap_184aa_14\",\"mediumGap\":\"_mediumGap_184aa_18\",\"largeGap\":\"_largeGap_184aa_22\"}","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Card/Card.module.css\"; export default {\"card\":\"_card_hvz2b_1\"}","import styles from \"./Card.module.css\";\n\n/**\n * Card is a basic container component to apply consistent styling and render child components.\n */\nconst Card = ({\n children,\n}: {\n /**\n * The child components to render within Card.\n */\n children: JSX.Element;\n}): JSX.Element => <div className={styles.card}>{children}</div>;\n\nexport default Card;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Divider/Divider.module.css\"; export default {\"divider\":\"_divider_1ddgq_1\"}","import styles from \"./Divider.module.css\";\n\n/**\n * Divider is a thin horizontal line to group content in lists and layouts.\n */\nexport default function Divider({}: Record<string, never>) {\n return <hr className={styles.divider} />;\n}\n\nDivider.displayName = \"Divider\";\n","import classNames from \"classnames\";\nimport { ReactElement, ReactNode } from \"react\";\nimport { Color } from \"../constants\";\nimport styles from \"./Typography.module.css\";\nimport colorStyles from \"../colors/colors.module.css\";\n\nfunction textColor(color: (typeof Color)[number]): string {\n switch (color) {\n case \"gray700\":\n return colorStyles.gray700Color;\n case \"white\":\n return colorStyles.whiteColor;\n case \"inherit\":\n return colorStyles.inheritColor;\n case \"primary\":\n return colorStyles.primary700Color;\n case \"destructive-primary\":\n return colorStyles.destructive700Color;\n default:\n return colorStyles.gray900Color;\n }\n}\n\n/**\n * Typography is a component that renders text.\n */\nconst Typography = ({\n align = \"start\",\n as = \"div\",\n children,\n color = \"gray900\",\n inline = false,\n size = 200,\n tooltip,\n transform = \"none\",\n underline = false,\n weight = \"regular\",\n}: {\n /**\n * Aligns the text to the left, right, or center of the container.\n * * `start` and `end` will align the text to the left or right of the container depending on the locale.\n * * `forceLeft` and `forceRight` will align the text to the left or right of the container regardless of the locale (should be used sparingly).\n *\n * @defaultValue \"start\"\n */\n align?: \"start\" | \"end\" | \"forceLeft\" | \"center\" | \"forceRight\";\n /**\n * DOM element to render as.\n *\n * @defaultValue \"div\"\n */\n as?: \"div\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\";\n /**\n * The text to be rendered\n */\n children?: ReactNode;\n /**\n * The color of the text.\n *\n * @defaultValue \"gray900\"\n */\n color?: (typeof Color)[number];\n /**\n * Whether the text should flow inline with other elements.\n *\n * @defaultValue false\n */\n inline?: boolean;\n /**\n * Size of the text.\n *\n * * `100`: 12px\n * * `200`: 14px\n * * `300`: 16px\n * * `500`: 20px\n * * `600`: 28px\n * * `700`: 40px\n * * `800`: 64px\n *\n * @defaultValue 200\n */\n size?: 100 | 200 | 300 | 500 | 600 | 700 | 800;\n /**\n * The tooltip to be displayed when the user hovers the text\n */\n tooltip?: string;\n /**\n * Whether the text should be transformed to uppercase.\n *\n * @defaultValue \"none\"\n */\n transform?: \"none\" | \"uppercase\";\n /**\n * Whether the text has an underline.\n *\n * @defaultValue false\n */\n underline?: boolean;\n /**\n * Indicates the boldness of the text.\n *\n * @defaultValue \"regular\"\n */\n weight?: \"regular\" | \"semiBold\" | \"bold\" | \"heavy\";\n}): ReactElement => {\n const Tag = as;\n\n return (\n <Tag\n className={classNames(\n styles.typography,\n styles[align],\n styles[weight],\n textColor(color),\n inline && styles.inline,\n styles[`size${size}`],\n transform === \"uppercase\" && styles.uppercase,\n underline && styles.underline,\n )}\n title={tooltip}\n >\n {children}\n </Tag>\n );\n};\n\nexport default Typography;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Typography/Typography.module.css\"; export default {\"typography\":\"_typography_1krnf_1\",\"size100\":\"_size100_1krnf_8\",\"size200\":\"_size200_1krnf_12\",\"size300\":\"_size300_1krnf_16\",\"size500\":\"_size500_1krnf_20\",\"size600\":\"_size600_1krnf_24\",\"size700\":\"_size700_1krnf_28\",\"size800\":\"_size800_1krnf_32\",\"center\":\"_center_1krnf_37\",\"forceLeft\":\"_forceLeft_1krnf_41\",\"forceRight\":\"_forceRight_1krnf_45\",\"start\":\"_start_1krnf_49\",\"end\":\"_end_1krnf_53\",\"bold\":\"_bold_1krnf_58\",\"regular\":\"_regular_1krnf_62\",\"semiBold\":\"_semiBold_1krnf_66\",\"heavy\":\"_heavy_1krnf_70\",\"underline\":\"_underline_1krnf_74\",\"inline\":\"_inline_1krnf_78\",\"uppercase\":\"_uppercase_1krnf_82\"}","import { ReactElement, ReactNode } from \"react\";\nimport { Color } from \"../constants\";\nimport Typography from \"../Typography/Typography\";\n/**\n * Heading enforces a consistent style & accessibility best practices for headings.\n */\nconst Heading = ({\n align = \"start\",\n as = \"h1\",\n children,\n color = \"gray900\",\n size = 500,\n}: {\n /**\n * Aligns the text to the left, right, or center of the container.\n * * `start` and `end` will align the text to the left or right of the container depending on the locale.\n * * `forceLeft` and `forceRight` will align the text to the left or right of the container regardless of the locale (should be used sparingly).\n *\n * @defaultValue \"start\"\n */\n align?: \"start\" | \"end\" | \"forceLeft\" | \"center\" | \"forceRight\";\n /**\n * DOM element to render as.\n *\n * @defaultValue \"h1\"\n */\n as?: \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\";\n /**\n * The text to be rendered\n */\n children?: ReactNode;\n /**\n * The color of the text.\n *\n * @defaultValue \"gray900\"\n */\n color?: (typeof Color)[number];\n /**\n * Size of the text.\n *\n * * `500`: 20px\n * * `600`: 28px\n * * `700`: 40px\n * * `800`: 64px\n *\n * @defaultValue 500\n */\n size?: 500 | 600 | 700 | 800;\n}): ReactElement => {\n const weight = [700, 800].includes(size) ? \"heavy\" : \"bold\";\n return (\n <Typography align={align} as={as} color={color} size={size} weight={weight}>\n {children}\n </Typography>\n );\n};\n\nexport default Heading;\n","import classNames from \"classnames\";\nimport backgroundColor from \"../colors//backgroundColor\";\nimport foregroundColor from \"../colors/foregroundColor\";\nimport React, { ReactElement, useContext } from \"react\";\nimport { Color, Size } from \"../constants\";\nimport styles from \"./IconButton.module.css\";\nimport ButtonGroupContext from \"../ButtonGroup/ButtonGroupContext\";\n\nconst iconSize = {\n [\"sm\"]: styles.smIcon,\n [\"md\"]: styles.mdIcon,\n [\"lg\"]: styles.lgIcon,\n};\n\n/**\n * IconButton is a clickable element that is used to perform an action.\n */\nconst IconButton = ({\n accessibilityLabel,\n color = \"primary\",\n disabled: disabledProp = false,\n icon: Icon,\n size: sizeProp = \"md\",\n tooltip,\n onClick,\n}: {\n /**\n * The color of the button\n *\n * @defaultValue \"primary\"\n */\n color?: (typeof Color)[number];\n /**\n * The size of the button\n *\n * * `sm`: 32px\n * * `md`: 40px\n * * `lg`: 48px\n *\n * @defaultValue \"md\"\n */\n size?: (typeof Size)[number];\n /**\n * The label to be used for accessibility\n */\n accessibilityLabel?: string;\n /**\n * The icon to be displayed. Please use a [Rounded Material Icon](https://material.io/resources/icons/?style=round)\n */\n icon: React.ComponentType<{ className: string }>;\n /**\n * If `true`, the button will be disabled\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * The callback to be called when the button is clicked\n */\n onClick: React.MouseEventHandler<HTMLButtonElement>;\n /**\n * The tooltip to be displayed when the user hovers over the button\n */\n tooltip?: string;\n}): ReactElement => {\n const contextProps = useContext(ButtonGroupContext);\n\n const size = contextProps?.size || sizeProp;\n const disabled = contextProps?.disabled || disabledProp;\n\n return (\n <button\n aria-label={accessibilityLabel}\n type=\"button\"\n title={tooltip}\n disabled={disabled}\n onClick={onClick}\n className={classNames(\n styles.iconButton,\n foregroundColor(color),\n backgroundColor(color),\n styles[size],\n )}\n >\n <Icon className={iconSize[size]} />\n </button>\n );\n};\n\nexport default IconButton;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/IconButton/IconButton.module.css\"; export default {\"iconButton\":\"_iconButton_dzhn0_1\",\"sm\":\"_sm_dzhn0_46\",\"md\":\"_md_dzhn0_51\",\"lg\":\"_lg_dzhn0_56\",\"smIcon\":\"_smIcon_dzhn0_61\",\"mdIcon\":\"_mdIcon_dzhn0_68\",\"lgIcon\":\"_lgIcon_dzhn0_75\"}","import React, { ReactElement, useState } from \"react\";\nimport classNames from \"classnames\";\nimport styles from \"./Checkbox.module.css\";\nimport Typography from \"../Typography/Typography\";\n\nconst typographySize = {\n sm: 100,\n md: 200,\n} as const;\n\nconst iconWidth = {\n sm: 12,\n md: 20,\n};\n\n/**\n * Checkbox is a clickable element that will show if an option has been selected or not\n */\nconst Checkbox = ({\n checked = false,\n disabled = false,\n size = \"md\",\n label,\n error = false,\n onChange,\n}: {\n /**\n * Whether or not the box has been clicked\n *\n * @defaultValue false\n */\n checked: boolean;\n /**\n * The callback to be called when the checkbox value changes\n */\n onChange: React.ChangeEventHandler<HTMLInputElement>;\n /**\n * Whether or not the box is disabled\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * The size of the checkbox and icon\n *\n * * `sm`: 16px\n * * `md`: 24px\n *\n * @defaultValue \"md\"\n */\n size?: \"sm\" | \"md\";\n /**\n * The text accompanying the checkbox\n */\n label: string;\n /**\n * Whether or not there is an error with the input\n *\n * @defaultValue false\n */\n error?: boolean;\n}): ReactElement => {\n const [isFocused, setIsFocused] = useState(false);\n const checkboxStyling = classNames(styles.checkbox, styles[size]);\n const uncheckedStyling = classNames(checkboxStyling, styles.uncheckedBox, {\n [styles.uncheckedBorder]: !error,\n [styles.uncheckedErrorBorder]: error,\n [styles.focusedCheckbox]: isFocused,\n });\n const checkedStyling = classNames(checkboxStyling, styles.checkedBox, {\n [styles.checkedNonError]: !error,\n [styles.checkedError]: error,\n [styles.focusedCheckbox]: isFocused,\n });\n\n return (\n <label className={classNames(styles.mainContainer)}>\n <div className={styles.checkboxContainer}>\n <input\n type=\"checkbox\"\n className={classNames(styles.inputOverlay, styles[size])}\n checked={checked}\n onChange={onChange}\n disabled={disabled}\n onFocus={() => {\n setIsFocused(true);\n }}\n onBlur={() => {\n setIsFocused(false);\n }}\n />\n <div className={checked ? checkedStyling : uncheckedStyling}>\n {checked && (\n <svg aria-hidden=\"true\" viewBox=\"0 0 24 24\" width={iconWidth[size]}>\n <path\n fill=\"#fff\"\n d=\"m9 16.2-3.5-3.5a.9839.9839 0 0 0-1.4 0c-.39.39-.39 1.01 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7c.39-.39.39-1.01 0-1.4a.9839.9839 0 0 0-1.4 0L9 16.2z\"\n ></path>\n </svg>\n )}\n </div>\n </div>\n <Typography\n size={typographySize[size]}\n color={error ? \"destructive-primary\" : \"gray800\"}\n >\n {label}\n </Typography>\n </label>\n );\n};\n\nexport default Checkbox;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/Checkbox/Checkbox.module.css\"; export default {\"mainContainer\":\"_mainContainer_p0un4_1\",\"checkboxContainer\":\"_checkboxContainer_p0un4_8\",\"inputOverlay\":\"_inputOverlay_p0un4_13\",\"focusedCheckbox\":\"_focusedCheckbox_p0un4_21\",\"checkbox\":\"_checkbox_p0un4_8\",\"uncheckedBox\":\"_uncheckedBox_p0un4_35\",\"uncheckedBorder\":\"_uncheckedBorder_p0un4_39\",\"uncheckedErrorBorder\":\"_uncheckedErrorBorder_p0un4_43\",\"checkedBox\":\"_checkedBox_p0un4_47\",\"checkedNonError\":\"_checkedNonError_p0un4_51\",\"checkedError\":\"_checkedError_p0un4_55\",\"sm\":\"_sm_p0un4_59\",\"md\":\"_md_p0un4_65\"}","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/MiniActionCard/MiniActionCard.module.css\"; export default {\"miniActionCard\":\"_miniActionCard_qebkn_1\",\"card\":\"_card_qebkn_9\"}","import styles from \"./MiniActionCard.module.css\";\n\n/**\n * MiniActionCard is component that alerts users to a call to action.\n */\nconst MiniActionCard = ({\n children,\n}: {\n /**\n * The child components to render within MiniActionCard.\n */\n children: JSX.Element;\n}): JSX.Element => <div className={styles.miniActionCard}>{children}</div>;\n\nexport default MiniActionCard;\n","import React, { ReactElement, useState } from \"react\";\nimport classnames from \"classnames\";\n\nimport styles from \"./RadioButton.module.css\";\nimport Typography from \"../Typography/Typography\";\n\n/**\n * RadioButton is a radio button with accompanying text\n */\nconst RadioButton = ({\n checked = false,\n disabled = false,\n error = false,\n label,\n onChange,\n size = \"md\",\n value = \"\",\n}: {\n /**\n * Whether or not the box is checked\n *\n * @defaultValue false\n */\n checked?: boolean;\n /**\n * Whether or not the box is disabled\n *\n * @defaultValue false\n */\n disabled?: boolean;\n /**\n * Whether to show error color schema\n *\n * @defaultValue false\n */\n error?: boolean;\n /**\n * Always add a label tag for best accessibility practices\n */\n label: string;\n /**\n * The callback to be called when the button is clicked\n */\n onChange: React.ChangeEventHandler<HTMLInputElement>;\n /**\n * Size of the components\n *\n * * `sm`: 16px\n * * `md`: 24px\n *\n * @defaultValue \"md\"\n */\n size?: \"sm\" | \"md\";\n /**\n * Value of the selected radio option\n */\n value?: string;\n}): ReactElement => {\n const [isFocused, setIsFocused] = useState(false);\n\n return (\n <label\n className={classnames(styles.radioButton, {\n [styles.smBase]: size === \"sm\",\n [styles.mdBase]: size === \"md\",\n })}\n >\n <input\n type=\"radio\"\n className={classnames(styles.radioStyleOverride, {\n [styles.smOverride]: size === \"sm\",\n [styles.mdOverride]: size === \"md\",\n })}\n checked={checked}\n onChange={onChange}\n disabled={disabled}\n value={value ?? label}\n onFocus={() => {\n setIsFocused(true);\n }}\n onBlur={() => {\n setIsFocused(false);\n }}\n />\n {checked ? (\n <div\n className={classnames(styles.outer, styles[size], {\n [styles.errorOuterBackgroundColor]: error,\n [styles.outerBackgroundColor]: !error,\n [styles.focusedRadioButton]: isFocused,\n })}\n >\n <div\n className={classnames(styles.circle, {\n [styles.smInner]: size === \"sm\",\n [styles.mdInner]: size === \"md\",\n })}\n />\n </div>\n ) : (\n <div\n className={classnames(styles.background, styles[size], {\n [styles.errorBorderColor]: error,\n [styles.borderColor]: !error,\n [styles.focusedRadioButton]: isFocused,\n })}\n />\n )}\n <Typography\n size={size === \"md\" ? 200 : 100}\n color={error ? \"destructive-primary\" : \"gray800\"}\n >\n {label}\n </Typography>\n </label>\n );\n};\n\nexport default RadioButton;\n","import \"/home/runner/work/syntax/syntax/packages/syntax-core/src/RadioButton/RadioButton.module.css\"; export default {\"radioButton\":\"_radioButton_1dde1_1\",\"focusedRadioButton\":\"_focusedRadioButton_1dde1_8\",\"smBase\":\"_smBase_1dde1_13\",\"mdBase\":\"_mdBase_1dde1_18\",\"radioStyleOverride\":\"_radioStyleOverride_1dde1_23\",\"smOverride\":\"_smOverride_1dde1_28\",\"mdOverride\":\"_mdOverride_1dde1_33\",\"outer\":\"_outer_1dde1_38\",\"sm\":\"_sm_1dde1_13\",\"md\":\"_md_1dde1_18\",\"errorOuterBackgroundColor\":\"_errorOuterBackgroundColor_1dde1_57\",\"outerBackgroundColor\":\"_outerBackgroundColor_1dde1_61\",\"background\":\"_background_1dde1_65\",\"errorBorderColor\":\"_errorBorderColor_1dde1_71\",\"borderColor\":\"_borderColor_1dde1_75\",\"circle\":\"_circle_1dde1_79\",\"smInner\":\"_smInner_1dde1_83\",\"mdInner\":\"_mdInner_1dde1_89\"}"],"mappings":"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","names":["classNames","classNames","import_classnames","jsx","gap","classNames","import_classnames","colors_module_default","colors_module_default","colors_module_default","jsx","classNames","import_classnames","jsx","classnames","classNames","jsx","jsx","import_classnames","jsx","classNames","jsx","import_classnames","useContext","jsx","iconSize","useContext","classNames","import_classnames","jsx","jsxs","classNames","jsx","import_classnames","useState","jsx","jsxs","useState","classnames"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cambly/syntax-core",
3
- "version": "1.19.0",
3
+ "version": "2.1.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -20,8 +20,8 @@
20
20
  "postcss": "^8.4.21",
21
21
  "postcss-modules": "^6.0.0",
22
22
  "react": "^18.2.0",
23
- "tsup": "^6.6.3",
24
- "typescript": "^4.9.5",
23
+ "tsup": "6.7.0",
24
+ "typescript": "5.0.3",
25
25
  "@cambly/eslint-config-syntax": "1.2.0",
26
26
  "@cambly/syntax-tsconfig": "1.2.0"
27
27
  },