1 line
13 KiB
JSON
1 line
13 KiB
JSON
{"ast":null,"code":"\"use client\";\n\nvar __rest = this && this.__rest || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport * as React from 'react';\nimport CheckOutlined from \"@ant-design/icons/es/icons/CheckOutlined\";\nimport CloseOutlined from \"@ant-design/icons/es/icons/CloseOutlined\";\nimport classNames from 'classnames';\nimport RcSteps from 'rc-steps';\nimport { ConfigContext } from '../config-provider';\nimport useSize from '../config-provider/hooks/useSize';\nimport useBreakpoint from '../grid/hooks/useBreakpoint';\nimport Progress from '../progress';\nimport Tooltip from '../tooltip';\nimport useStyle from './style';\nimport useLegacyItems from './useLegacyItems';\nconst Steps = props => {\n const {\n percent,\n size: customizeSize,\n className,\n rootClassName,\n direction,\n items,\n responsive = true,\n current = 0,\n children,\n style\n } = props,\n restProps = __rest(props, [\"percent\", \"size\", \"className\", \"rootClassName\", \"direction\", \"items\", \"responsive\", \"current\", \"children\", \"style\"]);\n const {\n xs\n } = useBreakpoint(responsive);\n const {\n getPrefixCls,\n direction: rtlDirection,\n steps\n } = React.useContext(ConfigContext);\n const realDirectionValue = React.useMemo(() => responsive && xs ? 'vertical' : direction, [xs, direction]);\n const size = useSize(customizeSize);\n const prefixCls = getPrefixCls('steps', props.prefixCls);\n const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);\n const isInline = props.type === 'inline';\n const iconPrefix = getPrefixCls('', props.iconPrefix);\n const mergedItems = useLegacyItems(items, children);\n const mergedPercent = isInline ? undefined : percent;\n const mergedStyle = Object.assign(Object.assign({}, steps === null || steps === void 0 ? void 0 : steps.style), style);\n const stepsClassName = classNames(steps === null || steps === void 0 ? void 0 : steps.className, {\n [`${prefixCls}-rtl`]: rtlDirection === 'rtl',\n [`${prefixCls}-with-progress`]: mergedPercent !== undefined\n }, className, rootClassName, hashId, cssVarCls);\n const icons = {\n finish: /*#__PURE__*/React.createElement(CheckOutlined, {\n className: `${prefixCls}-finish-icon`\n }),\n error: /*#__PURE__*/React.createElement(CloseOutlined, {\n className: `${prefixCls}-error-icon`\n })\n };\n const stepIconRender = _ref => {\n let {\n node,\n status\n } = _ref;\n if (status === 'process' && mergedPercent !== undefined) {\n // currently it's hard-coded, since we can't easily read the actually width of icon\n const progressWidth = size === 'small' ? 32 : 40;\n // iconWithProgress\n return /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-progress-icon`\n }, /*#__PURE__*/React.createElement(Progress, {\n type: \"circle\",\n percent: mergedPercent,\n size: progressWidth,\n strokeWidth: 4,\n format: () => null\n }), node);\n }\n return node;\n };\n const itemRender = (item, stepItem) => item.description ? /*#__PURE__*/React.createElement(Tooltip, {\n title: item.description\n }, stepItem) : stepItem;\n return wrapCSSVar( /*#__PURE__*/React.createElement(RcSteps, Object.assign({\n icons: icons\n }, restProps, {\n style: mergedStyle,\n current: current,\n size: size,\n items: mergedItems,\n itemRender: isInline ? itemRender : undefined,\n stepIcon: stepIconRender,\n direction: realDirectionValue,\n prefixCls: prefixCls,\n iconPrefix: iconPrefix,\n className: stepsClassName\n })));\n};\nSteps.Step = RcSteps.Step;\nif (process.env.NODE_ENV !== 'production') {\n Steps.displayName = 'Steps';\n}\nexport default Steps;","map":{"version":3,"names":["__rest","s","e","t","p","Object","prototype","hasOwnProperty","call","indexOf","getOwnPropertySymbols","i","length","propertyIsEnumerable","React","CheckOutlined","CloseOutlined","classNames","RcSteps","ConfigContext","useSize","useBreakpoint","Progress","Tooltip","useStyle","useLegacyItems","Steps","props","percent","size","customizeSize","className","rootClassName","direction","items","responsive","current","children","style","restProps","xs","getPrefixCls","rtlDirection","steps","useContext","realDirectionValue","useMemo","prefixCls","wrapCSSVar","hashId","cssVarCls","isInline","type","iconPrefix","mergedItems","mergedPercent","undefined","mergedStyle","assign","stepsClassName","icons","finish","createElement","error","stepIconRender","_ref","node","status","progressWidth","strokeWidth","format","itemRender","item","stepItem","description","title","stepIcon","Step","process","env","NODE_ENV","displayName"],"sources":["C:/Users/Аришина)/Desktop/promo/node_modules/antd/es/steps/index.js"],"sourcesContent":["\"use client\";\n\nvar __rest = this && this.__rest || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport * as React from 'react';\nimport CheckOutlined from \"@ant-design/icons/es/icons/CheckOutlined\";\nimport CloseOutlined from \"@ant-design/icons/es/icons/CloseOutlined\";\nimport classNames from 'classnames';\nimport RcSteps from 'rc-steps';\nimport { ConfigContext } from '../config-provider';\nimport useSize from '../config-provider/hooks/useSize';\nimport useBreakpoint from '../grid/hooks/useBreakpoint';\nimport Progress from '../progress';\nimport Tooltip from '../tooltip';\nimport useStyle from './style';\nimport useLegacyItems from './useLegacyItems';\nconst Steps = props => {\n const {\n percent,\n size: customizeSize,\n className,\n rootClassName,\n direction,\n items,\n responsive = true,\n current = 0,\n children,\n style\n } = props,\n restProps = __rest(props, [\"percent\", \"size\", \"className\", \"rootClassName\", \"direction\", \"items\", \"responsive\", \"current\", \"children\", \"style\"]);\n const {\n xs\n } = useBreakpoint(responsive);\n const {\n getPrefixCls,\n direction: rtlDirection,\n steps\n } = React.useContext(ConfigContext);\n const realDirectionValue = React.useMemo(() => responsive && xs ? 'vertical' : direction, [xs, direction]);\n const size = useSize(customizeSize);\n const prefixCls = getPrefixCls('steps', props.prefixCls);\n const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);\n const isInline = props.type === 'inline';\n const iconPrefix = getPrefixCls('', props.iconPrefix);\n const mergedItems = useLegacyItems(items, children);\n const mergedPercent = isInline ? undefined : percent;\n const mergedStyle = Object.assign(Object.assign({}, steps === null || steps === void 0 ? void 0 : steps.style), style);\n const stepsClassName = classNames(steps === null || steps === void 0 ? void 0 : steps.className, {\n [`${prefixCls}-rtl`]: rtlDirection === 'rtl',\n [`${prefixCls}-with-progress`]: mergedPercent !== undefined\n }, className, rootClassName, hashId, cssVarCls);\n const icons = {\n finish: /*#__PURE__*/React.createElement(CheckOutlined, {\n className: `${prefixCls}-finish-icon`\n }),\n error: /*#__PURE__*/React.createElement(CloseOutlined, {\n className: `${prefixCls}-error-icon`\n })\n };\n const stepIconRender = _ref => {\n let {\n node,\n status\n } = _ref;\n if (status === 'process' && mergedPercent !== undefined) {\n // currently it's hard-coded, since we can't easily read the actually width of icon\n const progressWidth = size === 'small' ? 32 : 40;\n // iconWithProgress\n return /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-progress-icon`\n }, /*#__PURE__*/React.createElement(Progress, {\n type: \"circle\",\n percent: mergedPercent,\n size: progressWidth,\n strokeWidth: 4,\n format: () => null\n }), node);\n }\n return node;\n };\n const itemRender = (item, stepItem) => item.description ? /*#__PURE__*/React.createElement(Tooltip, {\n title: item.description\n }, stepItem) : stepItem;\n return wrapCSSVar( /*#__PURE__*/React.createElement(RcSteps, Object.assign({\n icons: icons\n }, restProps, {\n style: mergedStyle,\n current: current,\n size: size,\n items: mergedItems,\n itemRender: isInline ? itemRender : undefined,\n stepIcon: stepIconRender,\n direction: realDirectionValue,\n prefixCls: prefixCls,\n iconPrefix: iconPrefix,\n className: stepsClassName\n })));\n};\nSteps.Step = RcSteps.Step;\nif (process.env.NODE_ENV !== 'production') {\n Steps.displayName = 'Steps';\n}\nexport default Steps;"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]} |