@digi-frontend/dgate-api-documentation 1.4.97 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +333 -0
- package/dist/index.cjs +983 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +793 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +792 -8
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +951 -43
- package/dist/index.js.map +1 -1
- package/package.json +53 -70
- package/dist/index.css +0 -12
- package/dist/index.css.map +0 -1
- package/dist/index.d.mts +0 -9
- package/dist/index.mjs +0 -25
- package/dist/index.mjs.map +0 -1
- package/src/components/Chips/style.scss +0 -147
- package/src/components/InfoForm/InfoForm.module.scss +0 -165
- package/src/components/JsonInput/style.module.scss +0 -133
- package/src/components/LivePreview/LivePreview.module.scss +0 -181
- package/src/components/MethodAccordion/MethodAccordion.module.scss +0 -399
- package/src/components/SectionHead/SectionHead.scss +0 -29
- package/src/components/SimpleLabelValue/style.scss +0 -30
- package/src/components/Tooltip/Tooltip.scss +0 -133
- package/src/components/_global.scss +0 -338
- package/src/components/dialog/style.scss +0 -188
- package/src/components/table/style.scss +0 -223
- package/src/layout/docsComponents/Codebox/style.module.scss +0 -43
- package/src/layout/docsComponents/DocsAside/style.module.scss +0 -113
- package/src/layout/docsComponents/DocsContent/EndpointPage/style.scss +0 -382
- package/src/layout/docsComponents/DocsContent/OverviewPage/style.scss +0 -332
- package/src/layout/docsComponents/DocsContent/style.scss +0 -0
- package/src/layout/docsComponents/DocsHeader/DocsHeader.module.scss +0 -297
- package/src/layout/docsComponents/DocsSideMenuTree/style.scss +0 -202
- package/src/layout/docsComponents/index.scss +0 -49
- package/src/test.scss +0 -3
- package/src/test2.module.scss +0 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["antdTheme","token","Layout","Header: React.FC","token","keys: string[]","token","Typography","EndpointItem: React.FC<EndpointItemProps>","Tag","title: React.ReactNode","Layout","Sidebar: React.FC","selectedNode","Input","Button","Minify","Tree","MainContent: React.FC","token","groupedPathsByTags: Record<string, EndpointData[]>","useStore","token","AntdRegistry"],"sources":["../src/store/slices/view.ts","../src/store/slices/editor.ts","../src/store/index.ts","../src/hooks/useStyle.ts","../src/view/components/Header.tsx","../src/assets/Minify.svg","../src/theme/light.json","../src/view/helper/sidebar.utils.ts","../src/view/helper/sidebar.components.tsx","../src/view/components/Sidebar.tsx","../src/view/components/MainContent.tsx","../src/view/helper/mutate.ts","../src/view/layout.tsx"],"sourcesContent":["import { OpenAPIFile } from '@/types/OpenApi'\r\nimport { EndpointData, OverviewData } from '@/view/entities'\r\nimport { transformOpenApiToDocs } from '@/view/helper/mutate'\r\n\r\ntype SetFn = (fn: (state: ViewSlice) => void) => void\r\n\r\ntype ViewSlice = {\r\n view: {\r\n originalData: OpenAPIFile[] | null\r\n transformedData: ReturnType<typeof transformOpenApiToDocs>[] | null\r\n selectedNodeKey: string | null\r\n expandedKeys: string[]\r\n selectedApi: null | OverviewData\r\n selectedEndpoint: null | EndpointData\r\n }\r\n}\r\n\r\nexport const createViewSlice = (set: SetFn) => ({\r\n view: {\r\n selectedNodeKey: null,\r\n expandedKeys: ['custom-auth', 'api-name-01'],\r\n originalData: null,\r\n transformedData: null,\r\n selectedApi: null,\r\n selectedEndpoint: null,\r\n\r\n setSelectedNode: (key: string | null) =>\r\n set((state) => {\r\n state.view.selectedNodeKey = key\r\n }),\r\n\r\n setExpandedKeys: (keys: string[]) =>\r\n set((state) => {\r\n state.view.expandedKeys = keys\r\n }),\r\n\r\n setOriginalData: (data: OpenAPIFile[]) =>\r\n set((state) => {\r\n state.view.originalData = data\r\n }),\r\n\r\n setSelectedApi: (api: OverviewData | null) =>\r\n set((state) => {\r\n state.view.selectedApi = api\r\n }),\r\n\r\n setSelectedEndpoint: (endpoint: EndpointData | null) =>\r\n set((state) => {\r\n state.view.selectedEndpoint = endpoint\r\n }),\r\n\r\n setTransformedData: (data: ReturnType<typeof transformOpenApiToDocs>[] | null) =>\r\n set((state) => {\r\n state.view.transformedData = data\r\n }),\r\n },\r\n})\r\n","type SetFn = (fn: (state: EditorSlice) => void) => void\r\n\r\ntype EditorSlice = {\r\n content: string\r\n isEditing: boolean\r\n hasUnsavedChanges: boolean\r\n fontSize: number\r\n theme: 'vs-light' | 'vs-dark'\r\n wordWrap: boolean\r\n lineNumbers: boolean\r\n cursorPosition: { line: number; column: number }\r\n}\r\n\r\nexport const createEditorSlice = (set: SetFn) => ({\r\n editor: {\r\n content: '',\r\n isEditing: false,\r\n hasUnsavedChanges: false,\r\n fontSize: 14,\r\n theme: 'vs-light' as 'vs-light' | 'vs-dark',\r\n wordWrap: true,\r\n lineNumbers: true,\r\n cursorPosition: { line: 1, column: 1 },\r\n\r\n setContent: (content: string) =>\r\n set((state) => {\r\n state.content = content\r\n state.hasUnsavedChanges = true\r\n }),\r\n\r\n setIsEditing: (editing: boolean) =>\r\n set((state) => {\r\n state.isEditing = editing\r\n }),\r\n\r\n setFontSize: (size: number) =>\r\n set((state) => {\r\n state.fontSize = Math.max(10, Math.min(24, size))\r\n }),\r\n\r\n setEditorTheme: (theme: 'vs-light' | 'vs-dark') =>\r\n set((state) => {\r\n state.theme = theme\r\n }),\r\n\r\n toggleWordWrap: () =>\r\n set((state) => {\r\n state.wordWrap = !state.wordWrap\r\n }),\r\n\r\n toggleLineNumbers: () =>\r\n set((state) => {\r\n state.lineNumbers = !state.lineNumbers\r\n }),\r\n\r\n setCursorPosition: (position: { line: number; column: number }) =>\r\n set((state) => {\r\n state.cursorPosition = position\r\n }),\r\n\r\n saveContent: () =>\r\n set((state) => {\r\n state.hasUnsavedChanges = false\r\n }),\r\n\r\n resetContent: () =>\r\n set((state) => {\r\n state.content = ''\r\n state.hasUnsavedChanges = false\r\n state.isEditing = false\r\n }),\r\n },\r\n})\r\n","import { create } from 'zustand'\r\nimport { devtools } from 'zustand/middleware'\r\nimport { immer } from 'zustand/middleware/immer'\r\nimport { createViewSlice } from './slices/view'\r\nimport { createEditorSlice } from './slices/editor'\r\n\r\ntype SetFn = (fn: (state: unknown) => void) => void\r\n\r\nconst createStore = (set: SetFn) => ({\r\n ...createViewSlice(set as Parameters<typeof createViewSlice>[0]),\r\n ...createEditorSlice(set as Parameters<typeof createEditorSlice>[0]),\r\n})\r\n\r\nexport const useStore = create<ReturnType<typeof createStore>>()(\r\n devtools(immer(createStore), {\r\n name: 'dgate-docs-store',\r\n })\r\n)\r\n\r\nexport type StoreState = ReturnType<typeof createStore>\r\nexport default useStore\r\n","'use client'\r\n\r\nimport { theme as antdTheme } from 'antd'\r\nimport { useStyleRegister } from '@ant-design/cssinjs'\r\nimport type { CSSObject } from '@ant-design/cssinjs'\r\n\r\nexport function useStyle(\r\n componentName: string,\r\n stylesFn: (\r\n token: ReturnType<typeof antdTheme.useToken>['token'],\r\n scope: (className: string) => string\r\n ) => Record<string, CSSObject>\r\n) {\r\n const { token, theme, hashId } = antdTheme.useToken()\r\n\r\n // Used in styles for full specificity:\r\n // → .css-dev-only-do-not-override-xxx.ComponentName-className\r\n const scope = (className: string) => `.${hashId}.${componentName}-${className}`\r\n\r\n // Used in JSX: className=\"ComponentName-className css-dev-only-do-not-override-xxx\"\r\n const cx = (...classes: string[]) =>\r\n classes.map((cls) => `${componentName}-${cls} ${hashId}`).join(' ')\r\n\r\n const wrapSSR = useStyleRegister(\r\n {\r\n theme,\r\n token,\r\n path: [componentName],\r\n },\r\n () => stylesFn(token, scope)\r\n )\r\n\r\n return { wrapSSR, cx, scope, token, hashId }\r\n}\r\n","'use client'\r\nimport React from 'react'\r\nimport { Layout } from 'antd'\r\nimport { useStyle } from '../../hooks/useStyle'\r\n\r\nconst { Header: AntHeader } = Layout\r\n\r\nexport const Header: React.FC = () => {\r\n const { wrapSSR, cx } = useStyle('Header', (token, scope) => ({\r\n [scope('header')]: {\r\n width: '100%',\r\n height: '4rem',\r\n backgroundColor: token.colorBgContainer,\r\n },\r\n }))\r\n\r\n return wrapSSR(<AntHeader className={cx('header')}>{/* Place Header content here */}</AntHeader>)\r\n}\r\n","<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M6 11.334L8 9.33398L10 11.334\" stroke=\"currentcolor\" />\r\n<path d=\"M6 4.66602L8 6.66602L10 4.66602\" stroke=\"currentcolor\" />\r\n</svg>\r\n","{\n \"token\": {\n \"brnadColor.1\": \"#f1f5fd\",\n \"brnadColor.2\": \"#e0e9f9\",\n \"brnadColor.3\": \"#c8d8f5\",\n \"brnadColor.4\": \"#a2bfee\",\n \"brnadColor.5\": \"#769de4\",\n \"brnadColor.6\": \"#4d75d9\",\n \"brnadColor.7\": \"#4261ce\",\n \"brnadColor.8\": \"#384fbd\",\n \"brnadColor.9\": \"#33419a\",\n \"brnadColor.10\": \"#20264b\",\n \"cyan.1\": \"#e6fffb\",\n \"cyan.2\": \"#b5f5ec\",\n \"cyan.3\": \"#87e8de\",\n \"cyan.4\": \"#5cdbd3\",\n \"cyan.5\": \"#36cfc9\",\n \"cyan.6\": \"#13c2c2\",\n \"cyan.7\": \"#08979c\",\n \"cyan.8\": \"#006d75\",\n \"cyan.9\": \"#00474f\",\n \"cyan.10\": \"#002329\",\n \"geekblue.1\": \"#f0f5ff\",\n \"geekblue.2\": \"#d6e4ff\",\n \"geekblue.3\": \"#adc6ff\",\n \"geekblue.4\": \"#85a5ff\",\n \"geekblue.5\": \"#597ef7\",\n \"geekblue.6\": \"#2f54eb\",\n \"geekblue.7\": \"#1d39c4\",\n \"geekblue.8\": \"#10239e\",\n \"geekblue.9\": \"#061178\",\n \"geekblue.10\": \"#030852\",\n \"gold.1\": \"#fffbe6\",\n \"gold.2\": \"#fff1b8\",\n \"gold.3\": \"#ffe58f\",\n \"gold.4\": \"#ffd666\",\n \"gold.5\": \"#ffc53d\",\n \"gold.6\": \"#faad14\",\n \"gold.7\": \"#d48806\",\n \"gold.8\": \"#ad6800\",\n \"gold.9\": \"#874d00\",\n \"gold.10\": \"#613400\",\n \"green.1\": \"#f6ffed\",\n \"green.2\": \"#d9f7be\",\n \"green.3\": \"#b7eb8f\",\n \"green.4\": \"#95de64\",\n \"green.5\": \"#73d13d\",\n \"green.6\": \"#52c41a\",\n \"green.7\": \"#389e0d\",\n \"green.8\": \"#237804\",\n \"green.9\": \"#135200\",\n \"green.10\": \"#092b00\",\n \"lime.1\": \"#fcffe6\",\n \"lime.2\": \"#f4ffb8\",\n \"lime.3\": \"#eaff8f\",\n \"lime.4\": \"#d3f261\",\n \"lime.5\": \"#bae637\",\n \"lime.6\": \"#a0d911\",\n \"lime.7\": \"#7cb305\",\n \"lime.8\": \"#5b8c00\",\n \"lime.9\": \"#3f6600\",\n \"lime.10\": \"#254000\",\n \"magenta.1\": \"#fff0f6\",\n \"magenta.2\": \"#ffd6e7\",\n \"magenta.3\": \"#ffadd2\",\n \"magenta.4\": \"#ff85c0\",\n \"magenta.5\": \"#f759ab\",\n \"magenta.6\": \"#eb2f96\",\n \"magenta.7\": \"#c41d7f\",\n \"magenta.8\": \"#9e1068\",\n \"magenta.9\": \"#780650\",\n \"magenta.10\": \"#520339\",\n \"orange.1\": \"#fff7e6\",\n \"orange.2\": \"#ffe7ba\",\n \"orange.3\": \"#ffd591\",\n \"orange.4\": \"#ffc069\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextSecondary\": \"rgba(0, 0, 0, 0.65)\",\n \"orange.5\": \"#ffa940\",\n \"colorTextTertiary\": \"rgba(0, 0, 0, 0.45)\",\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"orange.6\": \"#fa8c16\",\n \"orange.7\": \"#d46b08\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextLabel\": \"rgba(0, 0, 0, 0.65)\",\n \"orange.8\": \"#ad4e00\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"orange.9\": \"#873800\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"orange.10\": \"#612500\",\n \"purple.1\": \"#f9f0ff\",\n \"purple.2\": \"#efdbff\",\n \"purple.3\": \"#d3adf7\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"purple.4\": \"#b37feb\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorBgContainer\": \"#ffffff\",\n \"purple.5\": \"#9254de\",\n \"colorBgElevated\": \"#ffffff\",\n \"purple.6\": \"#722ed1\",\n \"colorBgLayout\": \"#f5f5f5\",\n \"purple.7\": \"#531dab\",\n \"colorBgMask\": \"rgba(0, 0, 0, 0.45)\",\n \"purple.8\": \"#391085\",\n \"colorBgSpotlight\": \"rgba(0, 0, 0, 0.85)\",\n \"purple.9\": \"#22075e\",\n \"colorBorder\": \"#d9d9d9\",\n \"purple.10\": \"#120338\",\n \"colorBorderSecondary\": \"#f0f0f0\",\n \"red.1\": \"#fff1f0\",\n \"colorFill\": \"rgba(0, 0, 0, 0.15)\",\n \"red.2\": \"#ffccc7\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"colorFillQuaternary\": \"rgba(0, 0, 0, 0.02)\",\n \"red.3\": \"#ffa39e\",\n \"red.4\": \"#ff7875\",\n \"colorWhite\": \"#ffffff\",\n \"red.5\": \"#ff4d4f\",\n \"colorBgBase\": \"#ffffff\",\n \"red.6\": \"#f5222d\",\n \"colorTextBase\": \"#000000\",\n \"red.7\": \"#cf1322\",\n \"red.8\": \"#a8071a\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"red.9\": \"#820014\",\n \"colorBgTextActive\": \"rgba(0, 0, 0, 0.15)\",\n \"red.10\": \"#5c0011\",\n \"colorBgTextHover\": \"rgba(0, 0, 0, 0.06)\",\n \"volcano.1\": \"#fff2e8\",\n \"colorBorderBg\": \"#ffffff\",\n \"volcano.2\": \"#ffd8bf\",\n \"colorFillContent\": \"rgba(0, 0, 0, 0.06)\",\n \"volcano.3\": \"#ffbb96\",\n \"colorFillContentHover\": \"rgba(0, 0, 0, 0.15)\",\n \"volcano.4\": \"#ff9c6e\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"volcano.5\": \"#ff7a45\",\n \"volcano.6\": \"#fa541c\",\n \"volcano.7\": \"#d4380d\",\n \"transparent\": \"rgba(0, 0, 0, 0)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"yellow.1\": \"#feffe6\",\n \"volcano.8\": \"#ad2102\",\n \"yellow.2\": \"#ffffb8\",\n \"yellow.3\": \"#fffb8f\",\n \"volcano.9\": \"#871400\",\n \"yellow.4\": \"#fff566\",\n \"volcano.10\": \"#610b00\",\n \"yellow.5\": \"#ffec3d\",\n \"yellow.6\": \"#fadb14\",\n \"yellow.7\": \"#d4b106\",\n \"yellow.8\": \"#ad8b00\",\n \"yellow.9\": \"#876800\",\n \"yellow.10\": \"#614700\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorSuccess\": \"#52c41a\",\n \"colorWarning\": \"#faad14\",\n \"colorInfo\": \"#4d75d9\",\n \"colorError\": \"#ff4d4f\",\n \"colorLink\": \"#4d75d9\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorErrorBgHover\": \"#fff1f0\",\n \"colorErrorBorder\": \"#ffccc7\",\n \"colorErrorBorderHover\": \"#ffa39e\",\n \"colorErrorHover\": \"#ff7875\",\n \"colorErrorActive\": \"#d9363e\",\n \"colorErrorTextHover\": \"#ff7875\",\n \"colorErrorText\": \"#ff4d4f\",\n \"colorErrorTextActive\": \"#d9363e\",\n \"colorLinkHover\": \"#769de4\",\n \"colorInfoBg\": \"#f1f5fd\",\n \"colorInfoBgHover\": \"#e0e9f9\",\n \"colorInfoBorder\": \"#c8d8f5\",\n \"colorInfoBorderHover\": \"#a2bfee\",\n \"colorInfoHover\": \"#769de4\",\n \"colorInfoActive\": \"#4261ce\",\n \"colorInfoTextHover\": \"#769de4\",\n \"colorInfoText\": \"#4d75d9\",\n \"colorInfoTextActive\": \"#4261ce\",\n \"colorLinkActive\": \"#4261ce\",\n \"colorPrimaryBg\": \"#f1f5fd\",\n \"colorPrimaryBgHover\": \"#e0e9f9\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimaryBorderHover\": \"#a2bfee\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryActive\": \"#4261ce\",\n \"colorPrimaryTextHover\": \"#769de4\",\n \"colorPrimaryText\": \"#4d75d9\",\n \"colorPrimaryTextActive\": \"#4261ce\",\n \"colorSuccessBg\": \"#f6ffed\",\n \"colorSuccessBgHover\": \"#d9f7be\",\n \"colorSuccessBorder\": \"#b7eb8f\",\n \"colorSuccessBorderHover\": \"#95de64\",\n \"colorSuccessHover\": \"#95de64\",\n \"colorSuccessActive\": \"#389e0d\",\n \"colorSuccessTextHover\": \"#73d13d\",\n \"colorSuccessText\": \"#52c41a\",\n \"colorSuccessTextActive\": \"#389e0d\",\n \"colorWarningBg\": \"#fffbe6\",\n \"colorWarningBgHover\": \"#fff1b8\",\n \"colorWarningBorder\": \"#ffe58f\",\n \"colorWarningBorderHover\": \"#ffd666\",\n \"colorWarningHover\": \"#ffd666\",\n \"colorWarningActive\": \"#d48806\",\n \"colorWarningTextHover\": \"#ffc53d\",\n \"colorWarningText\": \"#faad14\",\n \"colorWarningTextActive\": \"#d48806\",\n \"colorErrorOutline\": \"rgba(255, 38, 6, 0.06)\",\n \"colorWarningOutline\": \"rgba(255, 215, 5, 0.1)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlItemBgActiveDisabled\": \"rgba(0, 0, 0, 0.15)\",\n \"controlItemBgActiveHover\": \"#e0e9f9\",\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlTmpOutline\": \"rgba(0, 0, 0, 0.02)\",\n \"borderRadius\": 6,\n \"borderRadiusLG\": 8,\n \"borderRadiusSM\": 4,\n \"borderRadiusXS\": 2,\n \"sizeStep\": 4,\n \"sizeUnit\": 4,\n \"controlInteractiveSize\": 16,\n \"size\": 16,\n \"sizeLG\": 24,\n \"sizeMD\": 20,\n \"sizeMS\": 16,\n \"sizeSM\": 12,\n \"sizeXL\": 32,\n \"sizeXS\": 8,\n \"sizeXXL\": 48,\n \"controlHeight\": 32,\n \"sizeXXS\": 4,\n \"controlHeightLG\": 40,\n \"controlHeightSM\": 24,\n \"controlHeightXS\": 16,\n \"lineWidth\": 1,\n \"lineWidthBold\": 2,\n \"lineWidthFocus\": 4,\n \"controlOutlineWidth\": 2,\n \"screenLG\": 992,\n \"screenLGMax\": 1199,\n \"screenLGMin\": 992,\n \"screenMD\": 768,\n \"screenMDMax\": 991,\n \"screenMDMin\": 768,\n \"screenSM\": 576,\n \"screenSMMax\": 767,\n \"screenSMMin\": 576,\n \"screenXL\": 1200,\n \"screenXLMax\": 1599,\n \"screenXLMin\": 1200,\n \"screenXS\": 480,\n \"screenXSMax\": 575,\n \"screenXSMin\": 480,\n \"screenXXL\": 1600,\n \"screenXXLMin\": 1600,\n \"sizePopupArrow\": 16,\n \"margin\": 16,\n \"marginLG\": 24,\n \"marginMD\": 20,\n \"marginSM\": 12,\n \"marginXL\": 32,\n \"marginXS\": 8,\n \"marginXXL\": 48,\n \"marginXXS\": 4,\n \"padding\": 16,\n \"paddingLG\": 24,\n \"paddingMD\": 20,\n \"paddingSM\": 12,\n \"paddingXL\": 32,\n \"paddingXS\": 8,\n \"paddingXXS\": 4,\n \"paddingContentHorizontal\": 16,\n \"paddingContentHorizontalLG\": 24,\n \"paddingContentHorizontalSM\": 16,\n \"paddingContentVertical\": 12,\n \"paddingContentVerticalLG\": 16,\n \"paddingContentVerticalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlPaddingHorizontalSM\": 8,\n \"fontFamily\": \"SF Pro\",\n \"fontFamilyCode\": \"Courier Prime\",\n \"fontSize\": 14,\n \"fontSizeLG\": 16,\n \"fontSizeSM\": 12,\n \"fontSizeXL\": 20,\n \"fontSizeHeading1\": 38,\n \"fontSizeHeading2\": 30,\n \"fontSizeHeading3\": 24,\n \"fontSizeHeading4\": 20,\n \"fontSizeHeading5\": 16,\n \"lineHeight\": 1.5714285714285714,\n \"lineHeightHeading1\": 1.2105263157894737,\n \"lineHeightHeading2\": 1.2666666666666666,\n \"lineHeightHeading3\": 1.3333333333333333,\n \"lineHeightHeading4\": 1.4,\n \"lineHeightHeading5\": 1.5,\n \"lineHeightLG\": 1.5,\n \"lineHeightSM\": 1.6666666666666667,\n \"fontSizeIcon\": 12,\n \"fontWeightStrong\": 600,\n \"colorFillAlterSolid\": \"#fafafa\",\n \"fontWeightNormal\": 400,\n \"colorFilledHandleBg\": \"#f0f0f0\",\n \"colorBgSolid\": \"#000000\",\n \"colorBgSolidActive\": \"rgba(0, 0, 0, 0.95)\",\n \"colorBgSolidHover\": \"rgba(0, 0, 0, 0.75)\",\n \"solidTextColor\": \"#ffffff\",\n \"pink.1\": \"#fff0f6\",\n \"pink.2\": \"#ffd6e7\",\n \"pink.3\": \"#ffadd2\",\n \"pink.4\": \"#ff85c0\",\n \"pink.5\": \"#f759ab\",\n \"pink.6\": \"#eb2f96\",\n \"pink.7\": \"#c41d7f\",\n \"pink.8\": \"#9e1068\",\n \"pink.9\": \"#780650\",\n \"pink.10\": \"#520339\",\n \"sizeXXXL\": 60,\n \"sizeXXXXL\": 72,\n \"paddingXXL\": 48,\n \"paddingXXXL\": 60,\n \"paddingXXXXL\": 72,\n \"marginXXXL\": 60,\n \"marginXXXXL\": 72\n },\n \"components\": {\n \"Input\": {\n \"paddingInlineSM\": 7,\n \"paddingInlineLG\": 11,\n \"paddingInline\": 11,\n \"paddingBlockSM\": 0,\n \"paddingBlockLG\": 7,\n \"paddingBlock\": 4,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"paddingLG\": 24,\n \"lineWidth\": 1,\n \"lineHeightLG\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"controlPaddingHorizontalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorWarningOutline\": \"rgba(255, 215, 5, 0.1)\",\n \"colorWarningBorderHover\": \"#ffd666\",\n \"colorWarning\": \"#faad14\",\n \"colorTextTertiary\": \"rgba(0, 0, 0, 0.45)\",\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorErrorOutline\": \"rgba(255, 38, 6, 0.06)\",\n \"colorErrorBorderHover\": \"#ffa39e\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"hoverBorderColor\": \"#769de4\",\n \"addonBg\": \"rgba(0, 0, 0, 0.02)\",\n \"activeBorderColor\": \"#4d75d9\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorErrorBgHover\": \"#fff1f0\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorWarningBg\": \"#fffbe6\",\n \"colorWarningBgHover\": \"#fff1b8\",\n \"colorWarningText\": \"#faad14\",\n \"colorErrorText\": \"#ff4d4f\",\n \"activeBg\": \"#ffffff\",\n \"hoverBg\": \"#ffffff\",\n \"inputFontSize\": 14,\n \"inputFontSizeLG\": 16,\n \"inputFontSizeSM\": 12,\n \"fontFamily\": \"SF Pro\"\n },\n \"Transfer\": {\n \"listWidthLG\": 250,\n \"listWidth\": 180,\n \"listHeight\": 200,\n \"itemPaddingBlock\": 5,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"margin\": 16,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActiveHover\": \"#e0e9f9\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusLG\": 8,\n \"colorWarning\": \"#faad14\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorLinkHover\": \"#769de4\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"itemHeight\": 32,\n \"headerHeight\": 40,\n \"fontFamily\": \"SF Pro\"\n },\n \"Segmented\": {\n \"segmentedBgColorSelected\": \"#ffffff\",\n \"paddingXXS\": 4,\n \"marginSM\": 12,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlPaddingHorizontalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorTextLabel\": \"rgba(0, 0, 0, 0.65)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFill\": \"rgba(0, 0, 0, 0.15)\",\n \"colorBgLayout\": \"#f5f5f5\",\n \"colorBgElevated\": \"#ffffff\",\n \"segmentedGroupBg\": \"rgba(0, 0, 0, 0.04)\",\n \"itemSelectedColor\": \"rgba(0, 0, 0, 0.88)\",\n \"itemSelectedBg\": \"#ffffff\",\n \"itemHoverColor\": \"rgba(0, 0, 0, 0.88)\",\n \"itemHoverBg\": \"rgba(0, 0, 0, 0.06)\",\n \"itemColor\": \"rgba(0, 0, 0, 0.65)\",\n \"itemActiveBg\": \"rgba(0, 0, 0, 0.15)\",\n \"trackPadding\": 2,\n \"trackBg\": \"#f5f5f5\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Switch\": {\n \"trackPadding\": 2,\n \"trackMinWidthSM\": 28,\n \"trackMinWidth\": 44,\n \"trackHeightSM\": 16,\n \"trackHeight\": 22,\n \"handleSizeSM\": 12,\n \"handleSize\": 18,\n \"marginXXS\": 4,\n \"lineWidthFocus\": 4,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeSM\": 12,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"controlHeight\": 32,\n \"colorWhite\": \"#ffffff\",\n \"colorTextTertiary\": \"rgba(0, 0, 0, 0.45)\",\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"handleBg\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\"\n },\n \"TimePicker\": {\n \"timeColumnWidth\": 56,\n \"timeColumnHeight\": 224,\n \"timeCellHeight\": 28,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"sizePopupArrow\": 16,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeightLG\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlPaddingHorizontalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"borderRadius\": 6,\n \"colorWarningOutline\": \"rgba(255, 215, 5, 0.1)\",\n \"colorWarning\": \"#faad14\",\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorLinkHover\": \"#769de4\",\n \"colorLinkActive\": \"#4261ce\",\n \"colorLink\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorErrorOutline\": \"rgba(255, 38, 6, 0.06)\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgElevated\": \"#ffffff\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"hoverBorderColor\": \"#769de4\",\n \"cellHoverBg\": \"rgba(0, 0, 0, 0.04)\",\n \"cellHeight\": 24,\n \"activeBorderColor\": \"#4d75d9\",\n \"paddingInline\": 11,\n \"paddingInlineLG\": 11,\n \"paddingInlineSM\": 7,\n \"activeBg\": \"#ffffff\",\n \"hoverBg\": \"#ffffff\",\n \"cellBgDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"cellActiveWithRangeBg\": \"#f1f5fd\",\n \"cellHoverWithRangeBg\": \"#c8dfff\",\n \"cellRangeBorderColor\": \"#7cb3ff\",\n \"multipleItemBg\": \"rgba(0, 0, 0, 0.06)\",\n \"multipleItemBorderColor\": \"rgba(0, 0, 0, 0)\",\n \"multipleItemBorderColorDisabled\": \"rgba(0, 0, 0, 0)\",\n \"multipleItemColorDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"multipleSelectorBgDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"cellWidth\": 36,\n \"multipleItemHeight\": 24,\n \"multipleItemHeightLG\": 32,\n \"multipleItemHeightSM\": 16,\n \"paddingBlock\": 4,\n \"paddingBlockLG\": 7,\n \"paddingBlockSM\": 0,\n \"presetsMaxWidth\": 200,\n \"presetsWidth\": 120,\n \"textHeight\": 40,\n \"withoutTimeCellHeight\": 66,\n \"inputFontSize\": 14,\n \"inputFontSizeLG\": 16,\n \"inputFontSizeSM\": 12,\n \"fontFamily\": \"SF Pro\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\"\n },\n \"Timeline\": {\n \"itemPaddingBottom\": 20,\n \"paddingXXS\": 4,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"marginSM\": 12,\n \"margin\": 16,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeSM\": 12,\n \"fontSize\": 14,\n \"controlHeightLG\": 40,\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorError\": \"#ff4d4f\",\n \"colorBgContainer\": \"#ffffff\",\n \"tailColor\": \"rgba(0, 0, 0, 0.06)\",\n \"dotBg\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Tabs\": {\n \"horizontalItemGutter\": 32,\n \"cardGutter\": 2,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"paddingLG\": 24,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"marginSM\": 12,\n \"margin\": 16,\n \"lineWidthFocus\": 4,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeSM\": 12,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimaryActive\": \"#4261ce\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorBorderSecondary\": \"#f0f0f0\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainer\": \"#ffffff\",\n \"itemSelectedColor\": \"#4d75d9\",\n \"itemHoverColor\": \"#769de4\",\n \"itemColor\": \"rgba(0, 0, 0, 0.88)\",\n \"itemActiveColor\": \"#4261ce\",\n \"inkBarColor\": \"#4d75d9\",\n \"cardHeight\": 40,\n \"cardBg\": \"rgba(0, 0, 0, 0.02)\",\n \"titleFontSize\": 14,\n \"titleFontSizeLG\": 16,\n \"titleFontSizeSM\": 14,\n \"fontFamily\": \"SF Pro\"\n },\n \"Table\": {\n \"stickyScrollBarBorderRadius\": 100,\n \"headerSplitColor\": \"#f0f0f0\",\n \"headerBg\": \"rgba(0, 0, 0, 0.02)\",\n \"footerBg\": \"rgba(0, 0, 0, 0.02)\",\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"margin\": 16,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeSM\": 12,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActiveHover\": \"#e0e9f9\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlInteractiveSize\": 16,\n \"controlHeight\": 32,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorLinkHover\": \"#769de4\",\n \"colorLinkActive\": \"#4261ce\",\n \"colorLink\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillContent\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorBorderSecondary\": \"#f0f0f0\",\n \"colorBgContainer\": \"#ffffff\",\n \"rowSelectedHoverBg\": \"#e0e9f9\",\n \"headerFilterHoverBg\": \"rgba(0, 0, 0, 0.06)\",\n \"headerColor\": \"rgba(0, 0, 0, 0.88)\",\n \"headerBorderRadius\": 8,\n \"footerColor\": \"rgba(0, 0, 0, 0.88)\",\n \"filterDropdownMenuBg\": \"#ffffff\",\n \"filterDropdownBg\": \"#ffffff\",\n \"cellPaddingInlineSM\": 8,\n \"cellPaddingInlineMD\": 8,\n \"cellPaddingInline\": 16,\n \"cellPaddingBlockSM\": 8,\n \"cellPaddingBlockMD\": 12,\n \"cellPaddingBlock\": 16,\n \"borderColor\": \"#f0f0f0\",\n \"rowHoverBg\": \"#fafafa\",\n \"headerSortActiveBg\": \"rgba(0, 0, 0, 0.06)\",\n \"bodySortBg\": \"#fafafa\",\n \"headerSortHoverBg\": \"rgba(0, 0, 0, 0.06)\",\n \"cellFontSize\": 14,\n \"cellFontSizeMD\": 14,\n \"cellFontSizeSM\": 14,\n \"fontFamily\": \"SF Pro\"\n },\n \"Steps\": {\n \"dotSize\": 8,\n \"dotCurrentSize\": 10,\n \"descriptionMaxWidth\": 140,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"paddingLG\": 24,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"marginSM\": 12,\n \"marginLG\": 24,\n \"margin\": 16,\n \"lineWidthFocus\": 4,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeightSM\": 1.6666666666666667,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeSM\": 12,\n \"fontSizeLG\": 16,\n \"fontSizeIcon\": 12,\n \"fontSizeHeading3\": 24,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeightLG\": 40,\n \"borderRadiusSM\": 4,\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextLabel\": \"rgba(0, 0, 0, 0.65)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillContent\": \"rgba(0, 0, 0, 0.06)\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorderSecondary\": \"#f0f0f0\",\n \"colorBorderBg\": \"#ffffff\",\n \"colorBgContainer\": \"#ffffff\",\n \"titleLineHeight\": 32,\n \"iconSizeSM\": 24,\n \"iconSize\": 32,\n \"finishIconBorderColor\": \"#1677ff\",\n \"customIconFontSize\": 24,\n \"iconFontSize\": 14,\n \"fontFamily\": \"SF Pro\"\n },\n \"Spin\": {\n \"dotSizeSM\": 14,\n \"dotSize\": 20,\n \"contentHeight\": 400,\n \"marginXXS\": 4,\n \"lineHeight\": 1.5714285714285714,\n \"fontSize\": 14,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorBgContainer\": \"#ffffff\",\n \"dotSizeLG\": 32,\n \"fontFamily\": \"SF Pro\"\n },\n \"Slider\": {\n \"railSize\": 4,\n \"handleSizeHover\": 12,\n \"dotSize\": 8,\n \"controlSize\": 10,\n \"handleSize\": 10,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSize\": 14,\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryBorderHover\": \"#a2bfee\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillContentHover\": \"rgba(0, 0, 0, 0.15)\",\n \"colorBorderSecondary\": \"#f0f0f0\",\n \"colorBgElevated\": \"#ffffff\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"trackHoverBg\": \"#a2bfee\",\n \"trackBgDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"trackBg\": \"#c8d8f5\",\n \"railHoverBg\": \"rgba(0, 0, 0, 0.06)\",\n \"railBg\": \"rgba(0, 0, 0, 0.04)\",\n \"handleColor\": \"#c8d8f5\",\n \"handleActiveColor\": \"#4d75d9\",\n \"dotBorderColor\": \"#f0f0f0\",\n \"dotActiveBorderColor\": \"#c8d8f5\",\n \"handleColorDisabled\": \"#bfbfbf\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Rate\": {\n \"rateStarSize\": 20,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSize\": 14,\n \"controlHeightLG\": 40,\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorFillContent\": \"rgba(0, 0, 0, 0.06)\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Radio\": {\n \"radioSize\": 16,\n \"dotSize\": 8,\n \"buttonPaddingInline\": 15,\n \"paddingXS\": 8,\n \"padding\": 16,\n \"marginXS\": 8,\n \"lineWidthFocus\": 4,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlItemBgActiveDisabled\": \"rgba(0, 0, 0, 0.15)\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorWhite\": \"#ffffff\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimaryActive\": \"#4261ce\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"wrapperMarginInlineEnd\": 8,\n \"dotColorDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"buttonSolidCheckedHoverBg\": \"#769de4\",\n \"buttonSolidCheckedColor\": \"#ffffff\",\n \"buttonSolidCheckedBg\": \"#4d75d9\",\n \"buttonSolidCheckedActiveBg\": \"#4261ce\",\n \"buttonColor\": \"rgba(0, 0, 0, 0.88)\",\n \"buttonCheckedColorDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"buttonCheckedBgDisabled\": \"rgba(0, 0, 0, 0.15)\",\n \"buttonCheckedBg\": \"#ffffff\",\n \"buttonBg\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\",\n \"radioBgColor\": \"#4d75d9\",\n \"radioColor\": \"#ffffff\"\n },\n \"Popover\": {\n \"titleMinWidth\": 177,\n \"sizePopupArrow\": 16,\n \"paddingSM\": 12,\n \"padding\": 16,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSize\": 14,\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"borderRadiusLG\": 8,\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorBgElevated\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Notification\": {\n \"width\": 384,\n \"paddingMD\": 20,\n \"paddingLG\": 24,\n \"paddingContentHorizontalLG\": 24,\n \"marginXS\": 8,\n \"marginSM\": 12,\n \"marginLG\": 24,\n \"margin\": 16,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlHeightLG\": 40,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"colorWarning\": \"#faad14\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorInfo\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorError\": \"#ff4d4f\",\n \"colorBgElevated\": \"#ffffff\",\n \"lineHeightLG\": 1.5,\n \"lineWidthFocus\": 4,\n \"fontFamily\": \"SF Pro\"\n },\n \"Tooltip\": {\n \"paddingSM\": 12,\n \"sizePopupArrow\": 16,\n \"paddingXS\": 8,\n \"lineHeight\": 1.5714285714285714,\n \"fontSize\": 14,\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"borderRadius\": 6,\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorBgSpotlight\": \"rgba(0, 0, 0, 0.85)\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Menu\": {\n \"subMenuItemBg\": \"rgba(0, 0, 0, 0.02)\",\n \"darkSubMenuItemBg\": \"#000c17\",\n \"darkItemDisabledColor\": \"rgba(255, 255, 255, 0.25)\",\n \"darkItemColor\": \"rgba(255, 255, 255, 0.65)\",\n \"darkGroupTitleColor\": \"rgba(255, 255, 255, 0.65)\",\n \"darkItemBg\": \"#001529\",\n \"paddingXS\": 8,\n \"paddingXL\": 32,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"margin\": 16,\n \"lineWidthFocus\": 4,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"borderRadius\": 6,\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillContent\": \"rgba(0, 0, 0, 0.06)\",\n \"colorErrorHover\": \"#ff7875\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorError\": \"#ff4d4f\",\n \"colorBgElevated\": \"#ffffff\",\n \"colorBgContainer\": \"#ffffff\",\n \"subMenuItemBorderRadius\": 4,\n \"popupBg\": \"#ffffff\",\n \"itemSelectedColor\": \"#4d75d9\",\n \"itemSelectedBg\": \"#f1f5fd\",\n \"itemHoverColor\": \"rgba(0, 0, 0, 0.88)\",\n \"itemHoverBg\": \"rgba(0, 0, 0, 0.06)\",\n \"itemHeight\": 40,\n \"itemDisabledColor\": \"rgba(0, 0, 0, 0.25)\",\n \"itemColor\": \"rgba(0, 0, 0, 0.88)\",\n \"itemBorderRadius\": 8,\n \"itemBg\": \"#ffffff\",\n \"iconSize\": 14,\n \"horizontalItemSelectedColor\": \"#4d75d9\",\n \"horizontalItemSelectedBg\": \"rgba(0, 0, 0, 0)\",\n \"horizontalItemHoverColor\": \"#4d75d9\",\n \"horizontalItemHoverBg\": \"rgba(0, 0, 0, 0)\",\n \"groupTitleColor\": \"rgba(0, 0, 0, 0.45)\",\n \"darkItemSelectedColor\": \"#ffffff\",\n \"darkItemSelectedBg\": \"#4d75d9\",\n \"darkItemHoverColor\": \"#ffffff\",\n \"darkItemHoverBg\": \"rgba(0, 0, 0, 0)\",\n \"collapsedIconSize\": 16,\n \"darkPopupBg\": \"#001529\",\n \"activeBarBorderWidth\": 1,\n \"collapsedWidth\": 80,\n \"dropdownWidth\": 160,\n \"itemMarginBlock\": 4,\n \"itemMarginInline\": 4,\n \"iconMarginInlineEnd\": 10,\n \"groupTitleFontSize\": 14,\n \"groupTitleLineHeight\": 1.5714285714285714,\n \"fontFamily\": \"SF Pro\",\n \"subMenuItemSelectedColor\": \"#4d75d9\"\n },\n \"InputNumber\": {\n \"paddingInlineSM\": 7,\n \"paddingInlineLG\": 11,\n \"paddingInline\": 11,\n \"paddingBlockSM\": 0,\n \"paddingBlockLG\": 7,\n \"paddingBlock\": 4,\n \"handleWidth\": 22,\n \"controlWidth\": 90,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"lineWidth\": 1,\n \"lineHeightLG\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlPaddingHorizontalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorWarningBorderHover\": \"#ffd666\",\n \"colorWarning\": \"#faad14\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorErrorBorderHover\": \"#ffa39e\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"hoverBorderColor\": \"#769de4\",\n \"handleHoverColor\": \"#4d75d9\",\n \"handleBorderColor\": \"#d9d9d9\",\n \"handleBg\": \"#ffffff\",\n \"handleActiveBg\": \"rgba(0, 0, 0, 0.02)\",\n \"addonBg\": \"rgba(0, 0, 0, 0.02)\",\n \"activeBorderColor\": \"#4d75d9\",\n \"activeBg\": \"#ffffff\",\n \"hoverBg\": \"#ffffff\",\n \"inputFontSize\": 14,\n \"inputFontSizeLG\": 16,\n \"inputFontSizeSM\": 12,\n \"fontFamily\": \"SF Pro\",\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"colorWarningBg\": \"#fffbe6\",\n \"colorWarningBgHover\": \"#fff1b8\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorErrorBgHover\": \"#fff1f0\",\n \"filledHandleBg\": \"#f0f0f0\",\n \"colorErrorText\": \"#ff4d4f\",\n \"colorWarningText\": \"#faad14\"\n },\n \"Image\": {\n \"previewOperationSize\": 18,\n \"previewOperationHoverColor\": \"rgba(255, 255, 255, 0.85)\",\n \"previewOperationColorDisabled\": \"rgba(255, 255, 255, 0.25)\",\n \"previewOperationColor\": \"rgba(255, 255, 255, 0.65)\",\n \"paddingXXS\": 4,\n \"paddingSM\": 12,\n \"paddingLG\": 24,\n \"marginXXS\": 4,\n \"marginXL\": 32,\n \"marginSM\": 12,\n \"margin\": 16,\n \"fontSizeIcon\": 12,\n \"controlHeightLG\": 40,\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorBgMask\": \"rgba(0, 0, 0, 0.45)\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\"\n },\n \"Card\": {\n \"headerHeightSM\": 38,\n \"headerHeight\": 56,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"paddingLG\": 24,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"lineHeightLG\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSize\": 14,\n \"borderRadiusLG\": 8,\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorBorderSecondary\": \"#f0f0f0\",\n \"colorBgContainer\": \"#ffffff\",\n \"headerBg\": \"rgba(0, 0, 0, 0)\",\n \"headerFontSize\": 16,\n \"headerFontSizeSM\": 14,\n \"fontHeight\": 22,\n \"fontSizeLG\": 16,\n \"fontFamily\": \"SF Pro\",\n \"bodyPaddingSM\": 12,\n \"headerPaddingSM\": 12,\n \"bodyPadding\": 24,\n \"headerPadding\": 24\n },\n \"Carousel\": {\n \"dotWidth\": 16,\n \"dotHeight\": 3,\n \"dotActiveWidth\": 24,\n \"marginXXS\": 4,\n \"lineHeight\": 1.5714285714285714,\n \"fontSize\": 14,\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorBgContainer\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Cascader\": {\n \"dropdownHeight\": 180,\n \"controlWidth\": 184,\n \"controlItemWidth\": 111,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"marginXS\": 8,\n \"lineWidthFocus\": 4,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeLG\": 16,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlInteractiveSize\": 16,\n \"controlHeight\": 32,\n \"borderRadiusSM\": 4,\n \"colorWhite\": \"#ffffff\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"optionSelectedBg\": \"#f1f5fd\",\n \"menuPadding\": 4,\n \"optionSelectedFontWeight\": 600,\n \"fontFamily\": \"SF Pro\",\n \"borderRadiusLG\": 8,\n \"optionSelectedColor\": \"rgba(0, 0, 0, 0.88)\"\n },\n \"Calendar\": {\n \"yearControlWidth\": 80,\n \"monthControlWidth\": 70,\n \"controlHeight\": 32,\n \"screenXS\": 480,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeightSM\": 1.6666666666666667,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeSM\": 12,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorLinkHover\": \"#769de4\",\n \"colorLinkActive\": \"#4261ce\",\n \"colorLink\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"itemActiveBg\": \"#f1f5fd\",\n \"fullPanelBg\": \"#ffffff\",\n \"fullBg\": \"#ffffff\",\n \"fontHeightSM\": 20,\n \"fontFamily\": \"SF Pro\"\n },\n \"Button\": {\n \"paddingInlineSM\": 7,\n \"paddingInlineLG\": 15,\n \"paddingInline\": 15,\n \"onlyIconSizeSM\": 14,\n \"onlyIconSizeLG\": 18,\n \"paddingXS\": 8,\n \"paddingContentHorizontal\": 16,\n \"marginXS\": 8,\n \"lineWidthFocus\": 4,\n \"lineWidth\": 1,\n \"contentLineHeight\": 1.5714285714285714,\n \"contentFontSizeLG\": 16,\n \"contentFontSize\": 14,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimaryActive\": \"#4261ce\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorLinkHover\": \"#769de4\",\n \"colorLinkActive\": \"#4261ce\",\n \"colorLink\": \"#4d75d9\",\n \"colorErrorOutline\": \"rgba(255, 38, 6, 0.06)\",\n \"colorErrorHover\": \"#ff7875\",\n \"colorErrorBorderHover\": \"#ffa39e\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorErrorActive\": \"#d9363e\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgTextActive\": \"rgba(0, 0, 0, 0.15)\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"textHoverBg\": \"rgba(0, 0, 0, 0.06)\",\n \"primaryColor\": \"#ffffff\",\n \"onlyIconSize\": 16,\n \"linkHoverBg\": \"rgba(0, 0, 0, 0)\",\n \"groupBorderColor\": \"#769de4\",\n \"ghostBg\": \"rgba(0, 0, 0, 0)\",\n \"defaultGhostColor\": \"#ffffff\",\n \"defaultGhostBorderColor\": \"#ffffff\",\n \"defaultColor\": \"rgba(0, 0, 0, 0.88)\",\n \"defaultBorderColor\": \"#d9d9d9\",\n \"defaultBg\": \"#ffffff\",\n \"dangerColor\": \"#ffffff\",\n \"borderColorDisabled\": \"#d9d9d9\",\n \"defaultHoverBg\": \"#ffffff\",\n \"defaultHoverColor\": \"#769de4\",\n \"defaultHoverBorderColor\": \"#769de4\",\n \"defaultActiveBg\": \"#ffffff\",\n \"defaultActiveColor\": \"#4261ce\",\n \"defaultActiveBorderColor\": \"#4261ce\",\n \"fontWeight\": 400,\n \"contentFontSizeSM\": 14,\n \"contentLineHeightLG\": 1.5,\n \"contentLineHeightSM\": 1.5714285714285714,\n \"textTextActiveColor\": \"rgba(0, 0, 0, 0.88)\",\n \"textTextHoverColor\": \"rgba(0, 0, 0, 0.88)\",\n \"textTextColor\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryBg\": \"#f1f5fd\",\n \"colorBgSolid\": \"#000000\",\n \"colorBgSolidActive\": \"rgba(0, 0, 0, 0.95)\",\n \"colorBgSolidHover\": \"rgba(0, 0, 0, 0.75)\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"solidTextColor\": \"#ffffff\"\n },\n \"Badge\": {\n \"statusSize\": 6,\n \"indicatorHeight\": 20,\n \"dotSize\": 6,\n \"paddingXS\": 8,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"borderRadiusSM\": 4,\n \"fontSizeSM\": 12,\n \"fontSize\": 14,\n \"colorWarning\": \"#faad14\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorErrorHover\": \"#ff7875\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorderBg\": \"#ffffff\",\n \"colorBgContainer\": \"#ffffff\",\n \"indicatorHeightSM\": 14,\n \"textFontSize\": 12,\n \"textFontSizeSM\": 12,\n \"fontHeight\": 22,\n \"lineHeight\": 1.5714285714285714,\n \"fontFamily\": \"SF Pro\"\n },\n \"Form\": {\n \"screenXSMax\": 575,\n \"screenSMMax\": 767,\n \"screenMDMax\": 991,\n \"screenLGMax\": 1199,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"marginLG\": 24,\n \"margin\": 16,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"colorWarning\": \"#faad14\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"labelRequiredMarkColor\": \"#ff4d4f\",\n \"labelColor\": \"rgba(0, 0, 0, 0.88)\",\n \"itemMarginBottom\": 24,\n \"labelColonMarginInlineEnd\": 8,\n \"labelColonMarginInlineStart\": 2,\n \"labelHeight\": 32,\n \"labelFontSize\": 14,\n \"fontFamily\": \"SF Pro\"\n },\n \"Avatar\": {\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeXL\": 20,\n \"fontSizeLG\": 16,\n \"fontSizeHeading3\": 24,\n \"fontSize\": 14,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorBorderBg\": \"#ffffff\",\n \"containerSizeSM\": 24,\n \"containerSizeLG\": 40,\n \"containerSize\": 32,\n \"textFontSize\": 18,\n \"textFontSizeLG\": 24,\n \"textFontSizeSM\": 14,\n \"fontFamily\": \"SF Pro\"\n },\n \"Tour\": {\n \"sizePopupArrow\": 16,\n \"paddingXS\": 8,\n \"padding\": 16,\n \"marginXS\": 8,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSize\": 14,\n \"borderRadiusXS\": 2,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorWhite\": \"#ffffff\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorFill\": \"rgba(0, 0, 0, 0.15)\",\n \"colorBgTextHover\": \"rgba(0, 0, 0, 0.06)\",\n \"colorBgElevated\": \"#ffffff\",\n \"closeBtnSize\": 22,\n \"primaryNextBtnHoverBg\": \"#f0f0f0\",\n \"primaryPrevBtnBg\": \"rgba(255, 255, 255, 0.15)\",\n \"fontFamily\": \"SF Pro\",\n \"lineWidthFocus\": 4\n },\n \"QRCode\": {\n \"paddingSM\": 12,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSize\": 14,\n \"controlHeight\": 32,\n \"borderRadiusLG\": 8,\n \"colorWhite\": \"#ffffff\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Upload\": {\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"marginXL\": 32,\n \"margin\": 16,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSizeHeading3\": 24,\n \"fontSizeHeading2\": 30,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlHeightLG\": 40,\n \"borderRadiusLG\": 8,\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgMask\": \"rgba(0, 0, 0, 0.45)\",\n \"fontHeight\": 22,\n \"fontHeightSM\": 20,\n \"lineWidthFocus\": 4,\n \"fontFamily\": \"SF Pro\"\n },\n \"Typography\": {\n \"paddingSM\": 12,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"lineHeightHeading5\": 1.5,\n \"lineHeightHeading4\": 1.4,\n \"lineHeightHeading3\": 1.3333333333333333,\n \"lineHeightHeading2\": 1.2666666666666666,\n \"lineHeightHeading1\": 1.2105263157894737,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeHeading5\": 16,\n \"fontSizeHeading4\": 20,\n \"fontSizeHeading3\": 24,\n \"fontSizeHeading2\": 30,\n \"fontSizeHeading1\": 38,\n \"fontSize\": 14,\n \"colorWarning\": \"#faad14\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorLinkHover\": \"#769de4\",\n \"colorLinkActive\": \"#4261ce\",\n \"colorLink\": \"#4d75d9\",\n \"colorErrorHover\": \"#ff7875\",\n \"colorErrorActive\": \"#d9363e\",\n \"colorError\": \"#ff4d4f\",\n \"fontFamilyCode\": \"Courier Prime\"\n },\n \"TreeSelect\": {\n \"paddingXS\": 8,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidthFocus\": 4,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlInteractiveSize\": 16,\n \"controlHeightSM\": 24,\n \"borderRadiusSM\": 4,\n \"borderRadius\": 6,\n \"colorWhite\": \"#ffffff\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgElevated\": \"#ffffff\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"titleHeight\": 24,\n \"nodeSelectedBg\": \"#f1f5fd\",\n \"nodeHoverBg\": \"rgba(0, 0, 0, 0.04)\",\n \"fontFamily\": \"SF Pro\",\n \"borderRadiusLG\": 8\n },\n \"Tree\": {\n \"paddingSM\": 12,\n \"borderRadiusLG\": 8,\n \"paddingXS\": 8,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidthFocus\": 4,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlInteractiveSize\": 16,\n \"controlHeightSM\": 24,\n \"borderRadiusSM\": 4,\n \"borderRadius\": 6,\n \"colorWhite\": \"#ffffff\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"titleHeight\": 24,\n \"nodeSelectedBg\": \"#f1f5fd\",\n \"nodeHoverBg\": \"rgba(0, 0, 0, 0.04)\",\n \"directoryNodeSelectedColor\": \"#ffffff\",\n \"directoryNodeSelectedBg\": \"#4d75d9\",\n \"fontFamily\": \"SF Pro\",\n \"nodeHoverColor\": \"rgba(0, 0, 0, 0.88)\",\n \"nodeSelectedColor\": \"rgba(0, 0, 0, 0.88)\",\n \"indentSize\": 24\n },\n \"Tag\": {\n \"paddingXXS\": 4,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"lineHeightSM\": 1.6666666666666667,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeSM\": 12,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"borderRadiusSM\": 4,\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryActive\": \"#4261ce\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillQuaternary\": \"rgba(0, 0, 0, 0.02)\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorWarningBorder\": \"#ffe58f\",\n \"colorWarningBg\": \"#fffbe6\",\n \"colorSuccessBorder\": \"#b7eb8f\",\n \"colorSuccessBg\": \"#f6ffed\",\n \"colorInfoBorder\": \"#c8d8f5\",\n \"colorInfoBg\": \"#f1f5fd\",\n \"colorErrorBorder\": \"#ffccc7\",\n \"colorErrorBg\": \"#fff2f0\",\n \"defaultColor\": \"rgba(0, 0, 0, 0.88)\",\n \"defaultBg\": \"rgba(0, 0, 0, 0.02)\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Statistic\": {\n \"padding\": 16,\n \"marginXXS\": 4,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeHeading3\": 24,\n \"fontSize\": 14,\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"contentFontSize\": 24,\n \"titleFontSize\": 14,\n \"fontFamily\": \"SF Pro\"\n },\n \"Skeleton\": {\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginSM\": 12,\n \"marginLG\": 24,\n \"controlHeightXS\": 16,\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusSM\": 4,\n \"colorFillContent\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFill\": \"rgba(0, 0, 0, 0.15)\"\n },\n \"Select\": {\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeSM\": 12,\n \"fontSizeLG\": 16,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"controlPaddingHorizontalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeightXS\": 16,\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorWarningOutline\": \"rgba(255, 215, 5, 0.1)\",\n \"colorWarningHover\": \"#ffd666\",\n \"colorTextTertiary\": \"rgba(0, 0, 0, 0.45)\",\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorErrorOutline\": \"rgba(255, 38, 6, 0.06)\",\n \"colorErrorHover\": \"#ff7875\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgElevated\": \"#ffffff\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"singleItemHeightLG\": 40,\n \"selectorBg\": \"#ffffff\",\n \"optionSelectedColor\": \"rgba(0, 0, 0, 0.88)\",\n \"optionSelectedBg\": \"#f1f5fd\",\n \"optionLineHeight\": null,\n \"optionHeight\": 32,\n \"optionActiveBg\": \"rgba(0, 0, 0, 0.04)\",\n \"multipleSelectorBgDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"multipleItemHeightLG\": 32,\n \"multipleItemHeight\": 24,\n \"multipleItemColorDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"multipleItemBorderColorDisabled\": \"rgba(0, 0, 0, 0)\",\n \"multipleItemBorderColor\": \"rgba(0, 0, 0, 0)\",\n \"multipleItemBg\": \"rgba(0, 0, 0, 0.06)\",\n \"clearBg\": \"#ffffff\",\n \"optionFontSize\": \"SF Pro\",\n \"optionSelectedFontWeight\": 600,\n \"fontFamily\": \"SF Pro\",\n \"showArrowPaddingInlineEnd\": 18,\n \"activeBorderColor\": \"#4d75d9\",\n \"hoverBorderColor\": \"#769de4\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorErrorBgHover\": \"#fff1f0\",\n \"colorWarningBg\": \"#fffbe6\",\n \"colorWarningBgHover\": \"#fff1b8\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorWarning\": \"#faad14\",\n \"colorError\": \"#ff4d4f\"\n },\n \"Result\": {\n \"paddingXS\": 8,\n \"paddingXL\": 32,\n \"paddingLG\": 24,\n \"padding\": 16,\n \"marginXS\": 8,\n \"lineHeightHeading3\": 1.3333333333333333,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeHeading3\": 24,\n \"fontSize\": 14,\n \"colorWarning\": \"#faad14\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorInfo\": \"#4d75d9\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorError\": \"#ff4d4f\",\n \"iconFontSize\": 72,\n \"subtitleFontSize\": 14,\n \"titleFontSize\": 24\n },\n \"Progress\": {\n \"paddingXS\": 8,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeSM\": 12,\n \"fontSize\": 14,\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorError\": \"#ff4d4f\",\n \"colorBgContainer\": \"#ffffff\",\n \"remainingColor\": \"rgba(0, 0, 0, 0.06)\",\n \"defaultColor\": \"#4d75d9\",\n \"circleTextColor\": \"rgba(0, 0, 0, 0.88)\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Popconfirm\": {\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"fontWeightStrong\": 600,\n \"fontSize\": 14,\n \"colorWarning\": \"#faad14\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\"\n },\n \"Pagination\": {\n \"screenSM\": 576,\n \"screenLG\": 992,\n \"paddingXXS\": 4,\n \"paddingSM\": 12,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"marginSM\": 12,\n \"margin\": 16,\n \"lineWidthFocus\": 4,\n \"lineWidth\": 1,\n \"lineHeightLG\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeSM\": 12,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlPaddingHorizontalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlItemBgActiveDisabled\": \"rgba(0, 0, 0, 0.15)\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorWarningOutline\": \"rgba(255, 215, 5, 0.1)\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorErrorOutline\": \"rgba(255, 38, 6, 0.06)\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgTextHover\": \"rgba(0, 0, 0, 0.06)\",\n \"colorBgTextActive\": \"rgba(0, 0, 0, 0.15)\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"itemSizeSM\": 24,\n \"itemSize\": 32,\n \"itemLinkBg\": \"#ffffff\",\n \"itemInputBg\": \"#ffffff\",\n \"itemBg\": \"#ffffff\",\n \"itemActiveColorDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"itemActiveBgDisabled\": \"rgba(0, 0, 0, 0.15)\",\n \"itemActiveBg\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Modal\": {\n \"screenSMMax\": 767,\n \"paddingXS\": 8,\n \"paddingMD\": 20,\n \"paddingLG\": 24,\n \"paddingContentHorizontalLG\": 24,\n \"padding\": 16,\n \"marginXS\": 8,\n \"marginSM\": 12,\n \"marginLG\": 24,\n \"margin\": 16,\n \"lineWidthFocus\": 4,\n \"lineWidth\": 1,\n \"lineHeightHeading5\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeLG\": 16,\n \"fontSizeHeading5\": 16,\n \"fontSize\": 14,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"colorWarning\": \"#faad14\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorBgMask\": \"rgba(0, 0, 0, 0.45)\",\n \"titleColor\": \"rgba(0, 0, 0, 0.88)\",\n \"headerBg\": \"#ffffff\",\n \"footerBg\": \"rgba(0, 0, 0, 0)\",\n \"contentBg\": \"#ffffff\",\n \"titleFontSize\": 16,\n \"titleLineHeight\": 1.375,\n \"fontHeight\": 22,\n \"fontFamily\": \"SF Pro\"\n },\n \"Message\": {\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"marginXS\": 8,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlHeightLG\": 40,\n \"borderRadiusLG\": 8,\n \"colorWarning\": \"#faad14\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccess\": \"#52c41a\",\n \"colorInfo\": \"#4d75d9\",\n \"colorError\": \"#ff4d4f\",\n \"contentBg\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\"\n },\n \"List\": {\n \"screenSM\": 576,\n \"screenMD\": 768,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"paddingLG\": 24,\n \"paddingContentVerticalSM\": 8,\n \"paddingContentVerticalLG\": 16,\n \"paddingContentVertical\": 12,\n \"paddingContentHorizontalLG\": 24,\n \"paddingContentHorizontal\": 16,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXXL\": 48,\n \"marginSM\": 12,\n \"marginLG\": 24,\n \"margin\": 16,\n \"lineWidth\": 1,\n \"lineHeightLG\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeSM\": 12,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusLG\": 8,\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorBorder\": \"#d9d9d9\",\n \"headerBg\": \"rgba(0, 0, 0, 0)\",\n \"footerBg\": \"rgba(0, 0, 0, 0)\",\n \"avatarMarginRight\": 16,\n \"descriptionFontSize\": 14,\n \"fontFamily\": \"SF Pro\"\n },\n \"FloatButton\": {\n \"paddingXXS\": 4,\n \"marginXXL\": 48,\n \"marginLG\": 24,\n \"margin\": 16,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeSM\": 12,\n \"fontSizeLG\": 16,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlHeightLG\": 40,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillContent\": \"rgba(0, 0, 0, 0.06)\",\n \"colorBgElevated\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Empty\": {\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"fontSize\": 14,\n \"lineHeight\": 1.5714285714285714\n },\n \"Dropdown\": {\n \"sizePopupArrow\": 16,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidthFocus\": 4,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeSM\": 12,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"controlPaddingHorizontal\": 12,\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActiveHover\": \"#e0e9f9\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorError\": \"#ff4d4f\",\n \"colorBgElevated\": \"#ffffff\",\n \"paddingBlock\": 5,\n \"fontFamily\": \"SF Pro\"\n },\n \"Drawer\": {\n \"paddingXS\": 8,\n \"paddingLG\": 24,\n \"padding\": 16,\n \"marginSM\": 12,\n \"lineWidth\": 1,\n \"lineHeightLG\": 1.5,\n \"fontWeightStrong\": 600,\n \"fontSizeLG\": 16,\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorBgMask\": \"rgba(0, 0, 0, 0.45)\",\n \"colorBgElevated\": \"#ffffff\",\n \"lineWidthFocus\": 4\n },\n \"Divider\": {\n \"marginXS\": 8,\n \"marginLG\": 24,\n \"margin\": 16,\n \"lineWidth\": 1,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"lineHeight\": 1.5714285714285714,\n \"fontFamily\": \"SF Pro\"\n },\n \"Descriptions\": {\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"paddingLG\": 24,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidth\": 1,\n \"lineHeightSM\": 1.6666666666666667,\n \"lineHeightLG\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeSM\": 12,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"borderRadiusLG\": 8,\n \"colorTextTertiary\": \"rgba(0, 0, 0, 0.45)\",\n \"colorTextSecondary\": \"rgba(0, 0, 0, 0.65)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"titleColor\": \"rgba(0, 0, 0, 0.88)\",\n \"labelBg\": \"rgba(0, 0, 0, 0.02)\",\n \"contentColor\": \"rgba(0, 0, 0, 0.88)\",\n \"fontFamily\": \"SF Pro\",\n \"labelColor\": \"rgba(0, 0, 0, 0.45)\"\n },\n \"DatePicker\": {\n \"sizePopupArrow\": 16,\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"padding\": 16,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeightLG\": 1.5,\n \"lineHeight\": 1.5714285714285714,\n \"fontWeightStrong\": 600,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlPaddingHorizontalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorWarningOutline\": \"rgba(255, 215, 5, 0.1)\",\n \"colorWarningHover\": \"#ffd666\",\n \"colorWarning\": \"#faad14\",\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextLightSolid\": \"#ffffff\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorLinkHover\": \"#769de4\",\n \"colorLinkActive\": \"#4261ce\",\n \"colorLink\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorErrorOutline\": \"rgba(255, 38, 6, 0.06)\",\n \"colorErrorHover\": \"#ff7875\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgElevated\": \"#ffffff\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"hoverBorderColor\": \"#769de4\",\n \"cellHoverBg\": \"rgba(0, 0, 0, 0.04)\",\n \"cellHeight\": 24,\n \"activeBorderColor\": \"#4d75d9\",\n \"paddingInline\": 11,\n \"paddingInlineSM\": 7,\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorWarningBg\": \"#fffbe6\",\n \"colorWarningText\": \"#faad14\",\n \"colorErrorText\": \"#ff4d4f\",\n \"colorWarningBgHover\": \"#fff1b8\",\n \"colorErrorBgHover\": \"#fff1f0\",\n \"activeBg\": \"#ffffff\",\n \"hoverBg\": \"#ffffff\",\n \"cellBgDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"cellActiveWithRangeBg\": \"#f1f5fd\",\n \"cellHoverWithRangeBg\": \"#c8dfff\",\n \"cellRangeBorderColor\": \"#7cb3ff\",\n \"multipleItemBg\": \"rgba(0, 0, 0, 0.06)\",\n \"multipleItemBorderColor\": \"rgba(0, 0, 0, 0)\",\n \"multipleItemBorderColorDisabled\": \"rgba(0, 0, 0, 0)\",\n \"multipleItemColorDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"multipleSelectorBgDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"cellWidth\": 36,\n \"multipleItemHeight\": 24,\n \"multipleItemHeightLG\": 32,\n \"multipleItemHeightSM\": 16,\n \"paddingBlock\": 4,\n \"paddingBlockLG\": 7,\n \"paddingBlockSM\": 0,\n \"paddingInline 2\": 11,\n \"presetsMaxWidth\": 200,\n \"presetsWidth\": 120,\n \"textHeight\": 40,\n \"timeCellHeight\": 28,\n \"timeColumnHeight\": 224,\n \"timeColumnWidth\": 56,\n \"withoutTimeCellHeight\": 66,\n \"inputFontSize\": 14,\n \"inputFontSizeLG\": 16,\n \"inputFontSizeSM\": 12,\n \"fontHeight\": 22,\n \"fontHeightLG\": 24,\n \"fontFamily\": \"SF Pro\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\"\n },\n \"Collapse\": {\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"paddingLG\": 24,\n \"padding\": 16,\n \"marginSM\": 12,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"borderRadiusLG\": 8,\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorFillAlter\": \"rgba(0, 0, 0, 0.02)\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainer\": \"#ffffff\",\n \"headerBg\": \"rgba(0, 0, 0, 0.02)\",\n \"contentBg\": \"#ffffff\",\n \"fontHeight\": 22,\n \"fontHeightLG\": 24,\n \"lineHeightLG\": 1.5,\n \"fontFamily\": \"SF Pro\"\n },\n \"Checkbox\": {\n \"paddingXS\": 8,\n \"marginXS\": 8,\n \"lineWidthFocus\": 4,\n \"lineWidthBold\": 2,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"controlInteractiveSize\": 16,\n \"borderRadiusSM\": 4,\n \"colorWhite\": \"#ffffff\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"fontFamily\": \"SF Pro\"\n },\n \"Breadcrumb\": {\n \"paddingXXS\": 4,\n \"marginXXS\": 4,\n \"marginXS\": 8,\n \"lineWidthFocus\": 4,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeIcon\": 12,\n \"fontSize\": 14,\n \"borderRadiusSM\": 4,\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorBgTextHover\": \"rgba(0, 0, 0, 0.06)\",\n \"separatorColor\": \"rgba(0, 0, 0, 0.45)\",\n \"linkHoverColor\": \"rgba(0, 0, 0, 0.88)\",\n \"linkColor\": \"rgba(0, 0, 0, 0.45)\",\n \"lastItemColor\": \"rgba(0, 0, 0, 0.88)\",\n \"itemColor\": \"rgba(0, 0, 0, 0.45)\",\n \"separatorMargin\": 8,\n \"iconFontSize\": 14,\n \"fontHeight\": 22,\n \"fontFamily\": \"SF Pro\"\n },\n \"Anchor\": {\n \"paddingXXS\": 4,\n \"lineWidthBold\": 2,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSize\": 14,\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSplit\": \"rgba(0, 0, 0, 0.06)\",\n \"colorPrimary\": \"#4d75d9\",\n \"linkPaddingInlineStart\": 16,\n \"linkPaddingBlock\": 4,\n \"fontFamily\": \"SF Pro\"\n },\n \"Alert\": {\n \"paddingMD\": 20,\n \"paddingContentVerticalSM\": 8,\n \"paddingContentHorizontalLG\": 24,\n \"marginXS\": 8,\n \"marginSM\": 12,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"fontSizeLG\": 16,\n \"fontSizeIcon\": 12,\n \"fontSizeHeading3\": 24,\n \"fontSize\": 14,\n \"borderRadiusLG\": 8,\n \"colorWarningBorder\": \"#ffe58f\",\n \"colorWarningBg\": \"#fffbe6\",\n \"colorWarning\": \"#faad14\",\n \"colorTextHeading\": \"rgba(0, 0, 0, 0.88)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorSuccessBorder\": \"#b7eb8f\",\n \"colorSuccessBg\": \"#f6ffed\",\n \"colorSuccess\": \"#52c41a\",\n \"colorInfoBorder\": \"#c8d8f5\",\n \"colorInfoBg\": \"#f1f5fd\",\n \"colorInfo\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorErrorBorder\": \"#ffccc7\",\n \"colorErrorBg\": \"#fff2f0\",\n \"colorError\": \"#ff4d4f\",\n \"withDescriptionIconSize\": 24,\n \"fontFamily\": \"SF Pro\"\n },\n \"Space\": {\n \"paddingXS\": 8,\n \"paddingLG\": 24,\n \"padding\": 16\n },\n \"AutoComplete\": {\n \"paddingXXS\": 4,\n \"paddingXS\": 8,\n \"paddingSM\": 12,\n \"lineWidth\": 1,\n \"lineHeight\": 1.5714285714285714,\n \"controlPaddingHorizontalSM\": 8,\n \"controlPaddingHorizontal\": 12,\n \"controlOutlineWidth\": 2,\n \"controlOutline\": \"rgba(5, 145, 255, 0.1)\",\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlHeightXS\": 16,\n \"controlHeightSM\": 24,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"borderRadiusXS\": 2,\n \"borderRadiusSM\": 4,\n \"borderRadiusLG\": 8,\n \"borderRadius\": 6,\n \"colorWarningOutline\": \"rgba(255, 215, 5, 0.1)\",\n \"colorWarningHover\": \"#ffd666\",\n \"colorWarning\": \"#faad14\",\n \"colorTextTertiary\": \"rgba(0, 0, 0, 0.45)\",\n \"colorTextQuaternary\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextPlaceholder\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorPrimaryHover\": \"#769de4\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorIconHover\": \"rgba(0, 0, 0, 0.88)\",\n \"colorIcon\": \"rgba(0, 0, 0, 0.45)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorErrorOutline\": \"rgba(255, 38, 6, 0.06)\",\n \"colorErrorHover\": \"#ff7875\",\n \"colorError\": \"#ff4d4f\",\n \"colorBorder\": \"#d9d9d9\",\n \"colorBgElevated\": \"#ffffff\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"optionActiveBg\": \"rgba(0, 0, 0, 0.04)\",\n \"optionHeight\": 32,\n \"optionFontSize\": 14,\n \"fontFamily\": \"SF Pro\",\n \"fontSize\": 14,\n \"fontSizeIcon\": 12,\n \"fontSizeLG\": 16,\n \"fontSizeSM\": 12\n },\n \"Layout\": {\n \"bodyBg\": \"#f5f5f5\",\n \"footerBg\": \"#f5f5f5\",\n \"headerBg\": \"#001529\",\n \"headerColor\": \"rgba(0, 0, 0, 0.88)\",\n \"lightSiderBg\": \"#ffffff\",\n \"lightTriggerBg\": \"#ffffff\",\n \"lightTriggerColor\": \"rgba(0, 0, 0, 0.88)\",\n \"siderBg\": \"#001529\",\n \"triggerBg\": \"#002140\",\n \"triggerColor\": \"#ffffff\",\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"headerHeight\": 64,\n \"triggerHeight\": 48,\n \"zeroTriggerHeight\": 40,\n \"zeroTriggerWidth\": 40,\n \"borderRadius\": 6,\n \"fontSize\": 14,\n \"fontSizeXL\": 20\n },\n \"Mentions\": {\n \"fontFamily\": \"SF Pro\",\n \"fontSize\": 14,\n \"lineHeight\": 1.5714285714285714\n },\n \"Splitter\": {\n \"railSize\": 4,\n \"handleSizeHover\": 12,\n \"dotSize\": 8,\n \"controlSize\": 10,\n \"handleSize\": 10,\n \"trackHoverBg\": \"#a2bfee\",\n \"trackBgDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"trackBg\": \"#c8d8f5\",\n \"railHoverBg\": \"rgba(0, 0, 0, 0.06)\",\n \"railBg\": \"rgba(0, 0, 0, 0.04)\",\n \"handleColor\": \"#c8d8f5\",\n \"handleColorDisabled\": \"#bfbfbf\",\n \"handleActiveColor\": \"#4d75d9\",\n \"dotBorderColor\": \"#f0f0f0\",\n \"dotActiveBorderColor\": \"#c8d8f5\",\n \"lineWidth\": 1,\n \"controlHeightLG\": 40,\n \"controlHeight\": 32,\n \"colorTextDisabled\": \"rgba(0, 0, 0, 0.25)\",\n \"colorTextDescription\": \"rgba(0, 0, 0, 0.45)\",\n \"colorPrimaryBorderHover\": \"#a2bfee\",\n \"colorPrimaryBorder\": \"#c8d8f5\",\n \"colorPrimary\": \"#4d75d9\",\n \"colorFillTertiary\": \"rgba(0, 0, 0, 0.04)\",\n \"colorFillSecondary\": \"rgba(0, 0, 0, 0.06)\",\n \"colorFillContentHover\": \"rgba(0, 0, 0, 0.15)\",\n \"colorBorderSecondary\": \"#f0f0f0\",\n \"colorBgElevated\": \"#ffffff\",\n \"colorBgContainerDisabled\": \"rgba(0, 0, 0, 0.04)\",\n \"colorBgContainer\": \"#ffffff\",\n \"resizeSpinnerSize\": 20,\n \"lineHeight\": 1.5714285714285714,\n \"fontSize\": 14,\n \"fontFamily\": \"SF Pro\",\n \"controlHeightSM\": 24,\n \"borderRadiusXS\": 2,\n \"colorText\": \"rgba(0, 0, 0, 0.88)\",\n \"colorFill\": \"rgba(0, 0, 0, 0.15)\",\n \"controlItemBgActive\": \"#f1f5fd\",\n \"controlItemBgActiveHover\": \"#e0e9f9\",\n \"controlItemBgHover\": \"rgba(0, 0, 0, 0.04)\",\n \"fontSizeSM\": 12,\n \"splitBarSize\": 2,\n \"splitTriggerSize\": 6\n }\n }\n}","import { token } from '@/theme/light.json'\r\nimport { OverviewData, EndpointData } from '../entities'\r\nimport { nanoid } from 'nanoid'\r\n\r\nexport interface ApiNodeData extends OverviewData {}\r\n\r\nexport interface EndpointNodeData {\r\n endpoint: EndpointData\r\n api: OverviewData\r\n tagName: string\r\n}\r\n\r\nexport interface TagNodeData {\r\n tagName: string\r\n apiData: OverviewData\r\n}\r\n\r\nexport type NodeData = EndpointNodeData | OverviewData | TagNodeData\r\n\r\n// Type definitions\r\nexport interface TreeNode {\r\n title: string | React.ReactNode\r\n key: string\r\n selectable?: boolean\r\n isLeaf?: boolean\r\n method?: string\r\n children?: TreeNode[]\r\n data?: NodeData\r\n}\r\n\r\nexport interface EndpointItemProps {\r\n method: string\r\n title: string\r\n cx: (className: string) => string\r\n}\r\n\r\n// Method colors configuration\r\nexport const methodColors = {\r\n GET: {\r\n bg: token.colorPrimaryBgHover,\r\n color: token.colorPrimary,\r\n },\r\n POST: {\r\n bg: token['green.1'],\r\n color: token.colorSuccess,\r\n },\r\n DELETE: {\r\n bg: token.colorErrorBg,\r\n color: token.colorError,\r\n },\r\n PUT: {\r\n bg: token.colorWarningBg,\r\n color: token.colorWarning,\r\n },\r\n PATCH: {\r\n bg: token['volcano.5'],\r\n color: token.colorWhite,\r\n },\r\n OPTIONS: {\r\n bg: token['geekblue.2'],\r\n color: token['geekblue.6'],\r\n },\r\n HEAD: {\r\n bg: token['purple.1'],\r\n color: token['purple.5'],\r\n },\r\n TRACE: {\r\n bg: token['cyan.1'],\r\n color: token['cyan.5'],\r\n },\r\n}\r\n\r\nexport const buildTreeDataStructure = (data: OverviewData[] | null) => {\r\n if (!data) return []\r\n return data.map((api) => {\r\n return {\r\n title: api.title,\r\n key: api.id,\r\n selectable: true,\r\n data: api as OverviewData,\r\n children: Object.entries(api.tags).map(([tag, endpoints]) => {\r\n const tagId = `tag-${nanoid(8)}`\r\n return {\r\n title: tag,\r\n key: tagId,\r\n selectable: false,\r\n data: { tagName: tag, apiData: api } as TagNodeData, // Store tag info and parent API data\r\n children: endpoints.map((endpoint) => {\r\n return {\r\n title: endpoint.summary,\r\n key: endpoint.id,\r\n isLeaf: true,\r\n selectable: true,\r\n method: endpoint.method,\r\n data: { endpoint, api, tagName: tag } as EndpointNodeData, // Store endpoint, parent API, and tag info\r\n }\r\n }),\r\n }\r\n }),\r\n }\r\n })\r\n}\r\n\r\n// Helper function to find a node by key and return its data\r\nexport const findNodeByKey = (nodes: TreeNode[], targetKey: string): TreeNode | null => {\r\n for (const node of nodes) {\r\n if (node.key === targetKey) {\r\n return node\r\n }\r\n if (node.children && node.children.length > 0) {\r\n const found = findNodeByKey(node.children, targetKey)\r\n if (found) return found\r\n }\r\n }\r\n return null\r\n}\r\n\r\n// Helper function to check if an API section should be highlighted when its children are selected\r\nexport const isApiSectionHighlighted = (\r\n apiKey: string,\r\n selectedNode: string[] | undefined,\r\n treeDataStructure: TreeNode[]\r\n): boolean => {\r\n if (!selectedNode || selectedNode.length === 0) return false\r\n\r\n const selectedKey = selectedNode[0]\r\n if (selectedKey === apiKey) return false // Don't highlight if the API itself is selected\r\n\r\n // Find the selected node in the tree\r\n const findNodeParentApi = (nodes: TreeNode[], targetKey: string): string | null => {\r\n for (const node of nodes) {\r\n // If this is an API node (top level with data containing API info)\r\n if (\r\n node.data &&\r\n 'id' in node.data &&\r\n 'tags' in node.data &&\r\n !('endpoint' in node.data) &&\r\n !('tagName' in node.data)\r\n ) {\r\n const apiId = node.key\r\n\r\n // Check if the target is a direct child (tag or endpoint)\r\n if (node.children) {\r\n for (const child of node.children) {\r\n if (child.key === targetKey) {\r\n return apiId\r\n }\r\n // Check grandchildren (endpoints under tags)\r\n if (child.children) {\r\n for (const grandChild of child.children) {\r\n if (grandChild.key === targetKey) {\r\n return apiId\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n return null\r\n }\r\n\r\n const parentApiKey = findNodeParentApi(treeDataStructure, selectedKey)\r\n return parentApiKey === apiKey\r\n}\r\n\r\n// Get all keys for expand/collapse functionality\r\nexport const getAllTreeKeys = (data: TreeNode[]): string[] => {\r\n const keys: string[] = []\r\n const traverse = (nodes: TreeNode[]) => {\r\n nodes.forEach((node) => {\r\n keys.push(node.key)\r\n if (node.children && node.children.length > 0) {\r\n traverse(node.children)\r\n }\r\n })\r\n }\r\n traverse(data)\r\n return keys\r\n}\r\n\r\n// Filter tree data based on search\r\nexport const filterTreeData = (data: TreeNode[], searchText: string): TreeNode[] => {\r\n if (!searchText) return data\r\n\r\n // Helper function to recursively find original node in the default tree structure\r\n const findOriginalNode = (nodes: TreeNode[], key: string): TreeNode | null => {\r\n for (const node of nodes) {\r\n if (node.key === key) return node\r\n if (node.children) {\r\n const found = findOriginalNode(node.children, key)\r\n if (found) return found\r\n }\r\n }\r\n return null\r\n }\r\n\r\n const filterNode = (node: TreeNode): TreeNode | null => {\r\n let titleText = ''\r\n\r\n // Get the original title text from the default tree structure\r\n const originalNode = findOriginalNode(data, node.key)\r\n if (originalNode && typeof originalNode.title === 'string') {\r\n titleText = originalNode.title\r\n } else if (typeof node.title === 'string') {\r\n titleText = node.title\r\n }\r\n\r\n // For endpoints, also search by method + title combination\r\n let searchableText = titleText\r\n if (node.isLeaf && node.method) {\r\n // Include method in searchable text for endpoints\r\n searchableText = `${node.method} ${titleText}`.toLowerCase()\r\n } else {\r\n searchableText = titleText.toLowerCase()\r\n }\r\n\r\n const searchLower = searchText.toLowerCase()\r\n const matchesSearch = searchableText.includes(searchLower)\r\n\r\n if (node.children) {\r\n const filteredChildren = node.children\r\n .map((child: TreeNode) => filterNode(child))\r\n .filter((child): child is TreeNode => child !== null)\r\n\r\n if (matchesSearch || filteredChildren.length > 0) {\r\n return {\r\n ...node,\r\n children: filteredChildren,\r\n }\r\n }\r\n } else if (matchesSearch) {\r\n return node\r\n }\r\n\r\n return null\r\n }\r\n\r\n return data.map((node) => filterNode(node)).filter((node): node is TreeNode => node !== null)\r\n}\r\n\r\n// Helper function to get parent key for search expansion\r\nexport const getParentKey = (key: string, tree: TreeNode[]): string | null => {\r\n for (let i = 0; i < tree.length; i++) {\r\n const node = tree[i]\r\n if (node.children) {\r\n if (node.children.some((item: TreeNode) => item.key === key)) {\r\n return node.key\r\n }\r\n const parent = getParentKey(key, node.children)\r\n if (parent) {\r\n return parent\r\n }\r\n }\r\n }\r\n return null\r\n}\r\n\r\n// Sidebar style configuration\r\nexport const getSidebarStyles = (token: any, scope: (name: string) => string) => ({\r\n [scope('sider')]: {\r\n backgroundColor: token.colorBgContainer,\r\n maxWidth: '17.5rem',\r\n overflowY: 'auto' as const,\r\n overflowX: 'clip' as const,\r\n },\r\n [scope('content')]: {\r\n padding: token.padding,\r\n },\r\n [scope('controls')]: {\r\n display: 'flex',\r\n gap: token.marginXS,\r\n marginBottom: token.marginSM,\r\n },\r\n [scope('search-input')]: {\r\n flex: 1,\r\n },\r\n [scope('tree')]: {\r\n backgroundColor: 'transparent',\r\n '& .ant-tree-node-content-wrapper': {\r\n overflow: 'hidden',\r\n width: '100%',\r\n display: 'flex',\r\n alignItems: 'center',\r\n },\r\n '& .ant-tree-title': {\r\n width: '100%',\r\n overflow: 'hidden',\r\n display: 'flex',\r\n alignItems: 'center',\r\n marginBlock: 'auto',\r\n },\r\n '& .ant-tree-treenode': {\r\n width: '100%',\r\n padding: 0,\r\n },\r\n '& .ant-tree-node-content-wrapper:hover': {\r\n backgroundColor: token.colorFillTertiary,\r\n },\r\n },\r\n [scope('endpoint-item')]: {\r\n display: 'flex',\r\n alignItems: 'center',\r\n gap: token.marginXS,\r\n width: '100%',\r\n maxWidth: '100%',\r\n minWidth: '100%',\r\n },\r\n [scope('method-tag')]: {\r\n minWidth: '3.75rem',\r\n textAlign: 'center' as const,\r\n border: 'none',\r\n },\r\n [scope('endpoint-text')]: {\r\n flex: 1,\r\n maxWidth: '100%',\r\n },\r\n [scope('tag-title')]: {\r\n color: token.colorText,\r\n maxWidth: '100%',\r\n display: 'block',\r\n },\r\n [scope('api-title')]: {\r\n color: token.colorText,\r\n maxWidth: '100%',\r\n display: 'block',\r\n padding: 0,\r\n margin: 0,\r\n '&.highlighted': {\r\n color: token.colorPrimary,\r\n },\r\n },\r\n [scope('create-text')]: {\r\n color: token.colorTextSecondary,\r\n },\r\n})\r\n","import React from 'react'\r\nimport { Typography, Tag } from 'antd'\r\nimport { methodColors, TreeNode, EndpointItemProps, isApiSectionHighlighted } from './sidebar.utils'\r\n\r\nconst { Text } = Typography\r\n\r\n// Endpoint item component\r\nexport const EndpointItem: React.FC<EndpointItemProps> = ({ method, title, cx }) => {\r\n const methodStyle = methodColors[method as keyof typeof methodColors]\r\n\r\n return (\r\n <div className={cx('endpoint-item')}>\r\n <Tag\r\n className={cx('method-tag')}\r\n style={{\r\n backgroundColor: methodStyle?.bg,\r\n color: methodStyle?.color,\r\n border: 'none',\r\n }}\r\n >\r\n {method}\r\n </Tag>\r\n <Text className={cx('endpoint-text')} ellipsis={{ tooltip: title }} style={{ flex: 1 }}>\r\n {title}\r\n </Text>\r\n </div>\r\n )\r\n}\r\n\r\n// Convert tree data to renderable format\r\nexport const convertToRenderableTreeData = (\r\n treeDataStructure: TreeNode[],\r\n selectedNode: string[] | undefined,\r\n cx: (className: string) => string\r\n): TreeNode[] => {\r\n const renderNode = (node: TreeNode): TreeNode => {\r\n let title: React.ReactNode\r\n\r\n if (node.isLeaf && node.method) {\r\n // Render endpoint item\r\n title = (\r\n <EndpointItem\r\n method={node.method}\r\n title={typeof node.title === 'string' ? node.title.replace(`${node.method} `, '') : ''}\r\n cx={cx}\r\n />\r\n )\r\n } else if (\r\n node.data &&\r\n 'id' in node.data &&\r\n 'tags' in node.data &&\r\n !('endpoint' in node.data) &&\r\n !('tagName' in node.data)\r\n ) {\r\n // Render API title - check if node data is OverviewData (API data)\r\n const isHighlighted = isApiSectionHighlighted(node.key, selectedNode, treeDataStructure)\r\n title = (\r\n <Text\r\n className={cx('api-title') + (isHighlighted ? ' highlighted' : '')}\r\n ellipsis={{ tooltip: typeof node.title === 'string' ? node.title : '' }}\r\n >\r\n {node.title}\r\n </Text>\r\n )\r\n } else {\r\n // Render tag title\r\n title = (\r\n <Text\r\n className={cx('tag-title')}\r\n ellipsis={{ tooltip: typeof node.title === 'string' ? node.title : '' }}\r\n >\r\n {node.title}\r\n </Text>\r\n )\r\n }\r\n\r\n return {\r\n ...node,\r\n title,\r\n children: node.children ? node.children.map(renderNode) : undefined,\r\n }\r\n }\r\n\r\n return treeDataStructure.map(renderNode)\r\n}\r\n","'use client'\r\nimport React, { useState, useMemo } from 'react'\r\nimport { Layout, Input, Tree, Button } from 'antd'\r\nimport { useStyle } from '@/hooks/useStyle'\r\nimport { useStore } from '@/store'\r\nimport Minify from '@/assets/Minify.svg'\r\nimport {\r\n getAllTreeKeys,\r\n filterTreeData,\r\n getSidebarStyles,\r\n convertToRenderableTreeData,\r\n buildTreeDataStructure,\r\n findNodeByKey,\r\n NodeData,\r\n EndpointNodeData,\r\n TagNodeData,\r\n} from '../helper'\r\nimport { OverviewData } from '../entities'\r\n\r\nconst { Sider } = Layout\r\n\r\nexport const Sidebar: React.FC = () => {\r\n const expandedKeys = useStore((state) => state.view.expandedKeys)\r\n const setExpandedKeys = useStore((state) => state.view.setExpandedKeys)\r\n const setSelectedApi = useStore((state) => state.view.setSelectedApi)\r\n const setSelectedEndpoint = useStore((state) => state.view.setSelectedEndpoint)\r\n\r\n const [selectedNode, setSelectedNodeState] = useState<string[]>()\r\n const transformedData = useStore((state) => state.view.transformedData)\r\n const builtTreeData = useMemo(() => buildTreeDataStructure(transformedData), [transformedData])\r\n\r\n // Local state for search and expand/collapse\r\n const [searchValue, setSearchValue] = useState('')\r\n const [autoExpandParent, setAutoExpandParent] = useState(true)\r\n\r\n const { wrapSSR, cx } = useStyle('Sidebar', getSidebarStyles)\r\n\r\n // Handle search with expansion logic\r\n const handleSearch = (value: string) => {\r\n if (value) {\r\n // Get all keys that should be expanded when searching\r\n const allKeys = getAllTreeKeys(builtTreeData)\r\n setExpandedKeys(allKeys)\r\n setSearchValue(value)\r\n setAutoExpandParent(true)\r\n } else {\r\n setSearchValue(value)\r\n setAutoExpandParent(false)\r\n }\r\n }\r\n\r\n // Convert tree data to renderable format\r\n const renderTreeData = useMemo(() => {\r\n return convertToRenderableTreeData(builtTreeData, selectedNode, cx)\r\n }, [builtTreeData, selectedNode, cx])\r\n\r\n // Memoize filtered tree data\r\n const filteredTreeData = useMemo(() => {\r\n if (!searchValue) return renderTreeData\r\n\r\n // Filter using original tree structure, then convert to renderable format\r\n const filteredOriginal = filterTreeData(builtTreeData, searchValue)\r\n return convertToRenderableTreeData(filteredOriginal, selectedNode, cx)\r\n }, [builtTreeData, searchValue, selectedNode, cx])\r\n\r\n // Handle collapse all\r\n const collapseAll = () => {\r\n setExpandedKeys([])\r\n }\r\n\r\n // Utility function to handle node selection with typed data\r\n const handleNodeSelection = (nodeData: NodeData | undefined, nodeKey: string) => {\r\n if (!nodeData) return null\r\n\r\n if (nodeKey.startsWith('endpoint-')) {\r\n // Handle endpoint selection - data now contains endpoint, api, and tag info\r\n const endpointNodeData = nodeData as EndpointNodeData\r\n\r\n // Set the endpoint data and its parent API separately\r\n setSelectedEndpoint(endpointNodeData.endpoint)\r\n setSelectedApi(endpointNodeData.api)\r\n\r\n return {\r\n type: 'endpoint' as const,\r\n endpoint: endpointNodeData.endpoint,\r\n api: endpointNodeData.api,\r\n tag: endpointNodeData.tagName,\r\n }\r\n } else if (nodeKey.startsWith('api-') || nodeKey === 'custom-auth') {\r\n // Handle API selection\r\n const apiData = nodeData as OverviewData\r\n setSelectedApi(apiData)\r\n // Clear endpoint selection when selecting API directly\r\n setSelectedEndpoint(null)\r\n\r\n return {\r\n type: 'api' as const,\r\n api: apiData,\r\n }\r\n } else {\r\n // Handle tag selection (tags are not selectable in the current setup, but keeping for completeness)\r\n const tagData = nodeData as TagNodeData\r\n\r\n return {\r\n type: 'tag' as const,\r\n tag: tagData.tagName,\r\n api: tagData.apiData,\r\n }\r\n }\r\n }\r\n\r\n const onTreeNodeSelect = (selectedKeys: React.Key[]) => {\r\n const stringKeys = selectedKeys.map((key) => String(key))\r\n\r\n if (stringKeys.length === 0) {\r\n setSelectedNodeState([])\r\n setSelectedApi(null)\r\n setSelectedEndpoint(null)\r\n return\r\n }\r\n\r\n const selectedKey = stringKeys[0]\r\n const selectedNode = findNodeByKey(builtTreeData, selectedKey)\r\n\r\n if (selectedNode) {\r\n // Use the utility function to handle the selection\r\n handleNodeSelection(selectedNode.data, selectedKey)\r\n }\r\n\r\n setSelectedNodeState(stringKeys)\r\n }\r\n\r\n return wrapSSR(\r\n <Sider width={280} className={cx('sider')}>\r\n <div className={cx('content')}>\r\n <div className={cx('controls')}>\r\n <Input\r\n placeholder=\"Search by APIs or Endpoints\"\r\n value={searchValue}\r\n onChange={(e) => handleSearch(e.target.value)}\r\n allowClear\r\n className={cx('search-input')}\r\n />\r\n\r\n <Button onClick={collapseAll} title=\"Collapse All\" icon={<Minify />} />\r\n </div>\r\n <Tree\r\n showLine={{ showLeafIcon: false }}\r\n showIcon={false}\r\n expandedKeys={expandedKeys}\r\n autoExpandParent={autoExpandParent}\r\n selectedKeys={selectedNode}\r\n onSelect={onTreeNodeSelect}\r\n onExpand={(expandedKeysValue) => {\r\n setExpandedKeys(expandedKeysValue as string[])\r\n setAutoExpandParent(false)\r\n }}\r\n treeData={filteredTreeData}\r\n className={cx('tree')}\r\n />\r\n </div>\r\n </Sider>\r\n )\r\n}\r\n","'use client'\r\nimport React from 'react'\r\nimport { useStyle } from '../../hooks/useStyle'\r\n\r\nexport const MainContent: React.FC = () => {\r\n const { wrapSSR, cx } = useStyle('MainContent', (token, scope) => ({\r\n [scope('container')]: {\r\n backgroundColor: token.colorBgContainer,\r\n height: '100%',\r\n width: '100%',\r\n maxHeight: '100%',\r\n overflow: 'auto',\r\n borderRadius: token.borderRadius,\r\n padding: token.paddingXL,\r\n },\r\n }))\r\n\r\n return wrapSSR(<div className={cx('container')}></div>)\r\n}\r\n","import { HTTPMethod, OpenAPIFile } from '@/types/OpenApi'\r\nimport { OverviewData, EndpointData } from '../entities'\r\nimport { nanoid } from 'nanoid'\r\n\r\nexport const transformOpenApiToDocs = (api: OpenAPIFile): OverviewData => {\r\n const groupedPathsByTags: Record<string, EndpointData[]> = { default: [] }\r\n const validTags = new Set(api?.tags?.map(({ name }) => name) || [])\r\n const contextPath = Object.keys(api.paths)[0]\r\n for (const [path, methods] of Object.entries(api.paths)) {\r\n for (const [method, methodData] of Object.entries(methods)) {\r\n const entry = { ...methodData, method: method?.toUpperCase() as HTTPMethod, path }\r\n const resourceTags = methodData.tags ?? []\r\n\r\n const matchedTags = resourceTags.filter((tag) => validTags.has(tag))\r\n\r\n if (matchedTags.length > 0) {\r\n matchedTags.forEach((tag) => {\r\n if (!groupedPathsByTags[tag]) groupedPathsByTags[tag] = []\r\n groupedPathsByTags[tag].push({ ...entry, id: `endpoint-${nanoid(8)}` } as EndpointData)\r\n })\r\n } else {\r\n groupedPathsByTags.default.push({ ...entry, id: `endpoint-${nanoid(8)}` } as EndpointData)\r\n }\r\n }\r\n }\r\n\r\n return {\r\n ...api.info,\r\n id: `api-${nanoid(8)}`, // api prefix is used to identify what state should be changes (API | Endpoint)\r\n contextPath,\r\n tags: groupedPathsByTags,\r\n servers: api.servers,\r\n }\r\n}\r\n","'use client'\r\nimport { Header, Sidebar, MainContent } from './components'\r\nimport { AntdRegistry } from '@ant-design/nextjs-registry'\r\nimport { useStyle } from '../hooks/useStyle'\r\nimport { OpenAPIFile } from '@/types/OpenApi'\r\nimport { useEffect } from 'react'\r\nimport useStore from '@/store'\r\nimport { transformOpenApiToDocs } from './helper/mutate'\r\n\r\nexport const DocumentationLayout = ({ data }: { data: OpenAPIFile[] }) => {\r\n const { setOriginalData } = useStore(({ view }) => view)\r\n const { setTransformedData } = useStore(({ view }) => view)\r\n\r\n useEffect(() => {\r\n // Initialize original data\r\n setOriginalData(data)\r\n // Transform data to documentation format\r\n const transformedData = data.map(transformOpenApiToDocs)\r\n setTransformedData(transformedData)\r\n }, [data])\r\n\r\n const { cx } = useStyle('DocumentationLayout', (token, scope) => ({\r\n [scope('container')]: {\r\n display: 'flex',\r\n flexDirection: 'column',\r\n gap: token.marginLG,\r\n height: '100%',\r\n maxHeight: '100%',\r\n overflow: 'hidden',\r\n },\r\n [scope('layout')]: {\r\n display: 'flex',\r\n height: '100%',\r\n maxHeight: '100%',\r\n overflow: 'hidden',\r\n gap: token.marginLG,\r\n },\r\n }))\r\n return (\r\n <AntdRegistry>\r\n <div className={cx('container')}>\r\n <Header />\r\n <div className={cx('layout')}>\r\n <Sidebar />\r\n <MainContent />\r\n </div>\r\n </div>\r\n </AntdRegistry>\r\n )\r\n}\r\n"],"mappings":"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"}
|