1 line
14 KiB
JSON
1 line
14 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};\n/* eslint-disable react/no-array-index-key */\nimport * as React from 'react';\nimport classNames from 'classnames';\nimport { matchScreen } from '../_util/responsiveObserver';\nimport { ConfigContext } from '../config-provider';\nimport useSize from '../config-provider/hooks/useSize';\nimport useBreakpoint from '../grid/hooks/useBreakpoint';\nimport DEFAULT_COLUMN_MAP from './constant';\nimport DescriptionsContext from './DescriptionsContext';\nimport useItems from './hooks/useItems';\nimport useRow from './hooks/useRow';\nimport DescriptionsItem from './Item';\nimport Row from './Row';\nimport useStyle from './style';\nconst Descriptions = props => {\n const {\n prefixCls: customizePrefixCls,\n title,\n extra,\n column,\n colon = true,\n bordered,\n layout,\n children,\n className,\n rootClassName,\n style,\n size: customizeSize,\n labelStyle,\n contentStyle,\n items\n } = props,\n restProps = __rest(props, [\"prefixCls\", \"title\", \"extra\", \"column\", \"colon\", \"bordered\", \"layout\", \"children\", \"className\", \"rootClassName\", \"style\", \"size\", \"labelStyle\", \"contentStyle\", \"items\"]);\n const {\n getPrefixCls,\n direction,\n descriptions\n } = React.useContext(ConfigContext);\n const prefixCls = getPrefixCls('descriptions', customizePrefixCls);\n const screens = useBreakpoint();\n // Column count\n const mergedColumn = React.useMemo(() => {\n var _a;\n if (typeof column === 'number') {\n return column;\n }\n return (_a = matchScreen(screens, Object.assign(Object.assign({}, DEFAULT_COLUMN_MAP), column))) !== null && _a !== void 0 ? _a : 3;\n }, [screens, column]);\n // Items with responsive\n const mergedItems = useItems(screens, items, children);\n const mergedSize = useSize(customizeSize);\n const rows = useRow(mergedColumn, mergedItems);\n const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);\n // ======================== Render ========================\n const contextValue = React.useMemo(() => ({\n labelStyle,\n contentStyle\n }), [labelStyle, contentStyle]);\n return wrapCSSVar( /*#__PURE__*/React.createElement(DescriptionsContext.Provider, {\n value: contextValue\n }, /*#__PURE__*/React.createElement(\"div\", Object.assign({\n className: classNames(prefixCls, descriptions === null || descriptions === void 0 ? void 0 : descriptions.className, {\n [`${prefixCls}-${mergedSize}`]: mergedSize && mergedSize !== 'default',\n [`${prefixCls}-bordered`]: !!bordered,\n [`${prefixCls}-rtl`]: direction === 'rtl'\n }, className, rootClassName, hashId, cssVarCls),\n style: Object.assign(Object.assign({}, descriptions === null || descriptions === void 0 ? void 0 : descriptions.style), style)\n }, restProps), (title || extra) && ( /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-header`\n }, title && /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-title`\n }, title), extra && /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-extra`\n }, extra))), /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-view`\n }, /*#__PURE__*/React.createElement(\"table\", null, /*#__PURE__*/React.createElement(\"tbody\", null, rows.map((row, index) => ( /*#__PURE__*/React.createElement(Row, {\n key: index,\n index: index,\n colon: colon,\n prefixCls: prefixCls,\n vertical: layout === 'vertical',\n bordered: bordered,\n row: row\n })))))))));\n};\nif (process.env.NODE_ENV !== 'production') {\n Descriptions.displayName = 'Descriptions';\n}\nexport { DescriptionsContext };\nDescriptions.Item = DescriptionsItem;\nexport default Descriptions;","map":{"version":3,"names":["__rest","s","e","t","p","Object","prototype","hasOwnProperty","call","indexOf","getOwnPropertySymbols","i","length","propertyIsEnumerable","React","classNames","matchScreen","ConfigContext","useSize","useBreakpoint","DEFAULT_COLUMN_MAP","DescriptionsContext","useItems","useRow","DescriptionsItem","Row","useStyle","Descriptions","props","prefixCls","customizePrefixCls","title","extra","column","colon","bordered","layout","children","className","rootClassName","style","size","customizeSize","labelStyle","contentStyle","items","restProps","getPrefixCls","direction","descriptions","useContext","screens","mergedColumn","useMemo","_a","assign","mergedItems","mergedSize","rows","wrapCSSVar","hashId","cssVarCls","contextValue","createElement","Provider","value","map","row","index","key","vertical","process","env","NODE_ENV","displayName","Item"],"sources":["C:/Users/Аришина)/Desktop/promo/node_modules/antd/es/descriptions/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};\n/* eslint-disable react/no-array-index-key */\nimport * as React from 'react';\nimport classNames from 'classnames';\nimport { matchScreen } from '../_util/responsiveObserver';\nimport { ConfigContext } from '../config-provider';\nimport useSize from '../config-provider/hooks/useSize';\nimport useBreakpoint from '../grid/hooks/useBreakpoint';\nimport DEFAULT_COLUMN_MAP from './constant';\nimport DescriptionsContext from './DescriptionsContext';\nimport useItems from './hooks/useItems';\nimport useRow from './hooks/useRow';\nimport DescriptionsItem from './Item';\nimport Row from './Row';\nimport useStyle from './style';\nconst Descriptions = props => {\n const {\n prefixCls: customizePrefixCls,\n title,\n extra,\n column,\n colon = true,\n bordered,\n layout,\n children,\n className,\n rootClassName,\n style,\n size: customizeSize,\n labelStyle,\n contentStyle,\n items\n } = props,\n restProps = __rest(props, [\"prefixCls\", \"title\", \"extra\", \"column\", \"colon\", \"bordered\", \"layout\", \"children\", \"className\", \"rootClassName\", \"style\", \"size\", \"labelStyle\", \"contentStyle\", \"items\"]);\n const {\n getPrefixCls,\n direction,\n descriptions\n } = React.useContext(ConfigContext);\n const prefixCls = getPrefixCls('descriptions', customizePrefixCls);\n const screens = useBreakpoint();\n // Column count\n const mergedColumn = React.useMemo(() => {\n var _a;\n if (typeof column === 'number') {\n return column;\n }\n return (_a = matchScreen(screens, Object.assign(Object.assign({}, DEFAULT_COLUMN_MAP), column))) !== null && _a !== void 0 ? _a : 3;\n }, [screens, column]);\n // Items with responsive\n const mergedItems = useItems(screens, items, children);\n const mergedSize = useSize(customizeSize);\n const rows = useRow(mergedColumn, mergedItems);\n const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);\n // ======================== Render ========================\n const contextValue = React.useMemo(() => ({\n labelStyle,\n contentStyle\n }), [labelStyle, contentStyle]);\n return wrapCSSVar( /*#__PURE__*/React.createElement(DescriptionsContext.Provider, {\n value: contextValue\n }, /*#__PURE__*/React.createElement(\"div\", Object.assign({\n className: classNames(prefixCls, descriptions === null || descriptions === void 0 ? void 0 : descriptions.className, {\n [`${prefixCls}-${mergedSize}`]: mergedSize && mergedSize !== 'default',\n [`${prefixCls}-bordered`]: !!bordered,\n [`${prefixCls}-rtl`]: direction === 'rtl'\n }, className, rootClassName, hashId, cssVarCls),\n style: Object.assign(Object.assign({}, descriptions === null || descriptions === void 0 ? void 0 : descriptions.style), style)\n }, restProps), (title || extra) && ( /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-header`\n }, title && /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-title`\n }, title), extra && /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-extra`\n }, extra))), /*#__PURE__*/React.createElement(\"div\", {\n className: `${prefixCls}-view`\n }, /*#__PURE__*/React.createElement(\"table\", null, /*#__PURE__*/React.createElement(\"tbody\", null, rows.map((row, index) => ( /*#__PURE__*/React.createElement(Row, {\n key: index,\n index: index,\n colon: colon,\n prefixCls: prefixCls,\n vertical: layout === 'vertical',\n bordered: bordered,\n row: row\n })))))))));\n};\nif (process.env.NODE_ENV !== 'production') {\n Descriptions.displayName = 'Descriptions';\n}\nexport { DescriptionsContext };\nDescriptions.Item = DescriptionsItem;\nexport default Descriptions;"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]} |