@pointcloud/pcloud-components 0.1.18 → 0.1.20
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 +323 -314
- package/dist/esm/AdvancedFilter/interface.d.ts +4 -0
- package/dist/esm/AuthComponent/index.d.ts +2 -2
- package/dist/esm/AuthComponent/interface.d.ts +2 -1
- package/dist/esm/ConfigProvider/interface.d.ts +1 -1
- package/dist/esm/DForm/DItem/itemType.d.ts +1 -1
- package/dist/esm/DForm/DItem/itemsRender.d.ts +1 -1
- package/dist/esm/DForm/DItem/itemsRender.js +6 -6
- package/dist/esm/DForm/index.js +6 -7
- package/dist/esm/DForm/index.less +44 -32
- package/dist/esm/DModal/index.d.ts +1 -0
- package/dist/esm/DModal/index.js +1 -0
- package/dist/esm/ErrorBoundary/index.d.ts +2 -2
- package/dist/esm/InfiniteScrollList/index.d.ts +54 -0
- package/dist/esm/InfiniteScrollList/index.js +169 -0
- package/dist/esm/InfiniteScrollList/styles/index.less +22 -0
- package/dist/esm/LabelValue/index.d.ts +1 -2
- package/dist/esm/LabelValue/interface.d.ts +2 -1
- package/dist/esm/Loading/index.d.ts +3 -3
- package/dist/esm/Loading/interface.d.ts +2 -1
- package/dist/esm/Loading/loading.js +0 -1
- package/dist/esm/ModalForm/index.d.ts +11 -0
- package/dist/esm/ModalForm/index.js +45 -0
- package/dist/esm/NoData/index.d.ts +2 -2
- package/dist/esm/NoData/interface.d.ts +2 -1
- package/dist/esm/PictureCard/index.d.ts +16 -0
- package/dist/esm/PictureCard/index.js +79 -0
- package/dist/esm/PictureCard/index.less +28 -0
- package/dist/esm/WordCloud/index.d.ts +7 -0
- package/dist/esm/WordCloud/index.js +21 -0
- package/dist/esm/index.d.ts +14 -3
- package/dist/esm/index.js +5 -1
- package/dist/umd/pcloud-components.min.css +1 -1
- package/dist/umd/pcloud-components.min.js +1 -1
- package/package.json +105 -99
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
2
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-unused-expressions */
|
|
4
|
+
import React, { useState, useContext } from 'react';
|
|
5
|
+
import classNames from 'classnames';
|
|
6
|
+
import { ConfigContext } from "../ConfigProvider";
|
|
7
|
+
import { Image } from 'antd';
|
|
8
|
+
import "./index.less";
|
|
9
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
11
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
12
|
+
var PictureCard = function PictureCard(props) {
|
|
13
|
+
var _classNames2;
|
|
14
|
+
var className = props.className,
|
|
15
|
+
_props$layout = props.layout,
|
|
16
|
+
layout = _props$layout === void 0 ? 'vertical' : _props$layout,
|
|
17
|
+
src = props.src,
|
|
18
|
+
_props$preview = props.preview,
|
|
19
|
+
preview = _props$preview === void 0 ? false : _props$preview,
|
|
20
|
+
imageWidth = props.imageWidth,
|
|
21
|
+
content = props.content,
|
|
22
|
+
style = props.style,
|
|
23
|
+
_props$bordered = props.bordered,
|
|
24
|
+
bordered = _props$bordered === void 0 ? true : _props$bordered,
|
|
25
|
+
_props$hoverable = props.hoverable,
|
|
26
|
+
hoverable = _props$hoverable === void 0 ? true : _props$hoverable;
|
|
27
|
+
var _useContext = useContext(ConfigContext),
|
|
28
|
+
prefixCls = _useContext.prefixCls,
|
|
29
|
+
getPrefixCls = _useContext.getPrefixCls;
|
|
30
|
+
var classname = getPrefixCls('picture-card');
|
|
31
|
+
var wrapperClass = classNames(_defineProperty({}, "".concat(prefixCls, "-picture-card"), !!prefixCls), (_classNames2 = {}, _defineProperty(_classNames2, "".concat(classname, "-hoverable"), hoverable), _defineProperty(_classNames2, "".concat(classname, "-bordered"), bordered), _classNames2), classname, className, layout);
|
|
32
|
+
var _useState = useState(false),
|
|
33
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
34
|
+
visible = _useState2[0],
|
|
35
|
+
setVisible = _useState2[1];
|
|
36
|
+
return /*#__PURE__*/_jsxs("div", {
|
|
37
|
+
className: wrapperClass,
|
|
38
|
+
style: style,
|
|
39
|
+
children: [Array.isArray(src) ? /*#__PURE__*/_jsxs(_Fragment, {
|
|
40
|
+
children: [/*#__PURE__*/_jsx(Image, {
|
|
41
|
+
src: src[0],
|
|
42
|
+
preview: preview && {
|
|
43
|
+
visible: false
|
|
44
|
+
},
|
|
45
|
+
width: imageWidth,
|
|
46
|
+
onClick: function onClick(e) {
|
|
47
|
+
e.stopPropagation();
|
|
48
|
+
// eslint-disable-next-line no-unused-expressions
|
|
49
|
+
preview && setVisible(true);
|
|
50
|
+
}
|
|
51
|
+
}), /*#__PURE__*/_jsx("div", {
|
|
52
|
+
style: {
|
|
53
|
+
display: 'none'
|
|
54
|
+
},
|
|
55
|
+
children: /*#__PURE__*/_jsx(Image.PreviewGroup, {
|
|
56
|
+
preview: {
|
|
57
|
+
visible: visible,
|
|
58
|
+
onVisibleChange: function onVisibleChange(vis) {
|
|
59
|
+
return setVisible(vis);
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
children: src.map(function (item) {
|
|
63
|
+
return /*#__PURE__*/_jsx(Image, {
|
|
64
|
+
src: item
|
|
65
|
+
}, item);
|
|
66
|
+
})
|
|
67
|
+
})
|
|
68
|
+
})]
|
|
69
|
+
}) : /*#__PURE__*/_jsx(Image, {
|
|
70
|
+
src: src,
|
|
71
|
+
preview: preview,
|
|
72
|
+
width: imageWidth
|
|
73
|
+
}), content && /*#__PURE__*/_jsx("div", {
|
|
74
|
+
className: "info",
|
|
75
|
+
children: content
|
|
76
|
+
})]
|
|
77
|
+
});
|
|
78
|
+
};
|
|
79
|
+
export default PictureCard;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
@import '../commonStyle/index.less';
|
|
2
|
+
|
|
3
|
+
.@{prefix}-picture-card {
|
|
4
|
+
display: inline-block;
|
|
5
|
+
padding: 10px;
|
|
6
|
+
transition: box-shadow 0.3s linear;
|
|
7
|
+
|
|
8
|
+
.info {
|
|
9
|
+
margin-top: 10px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&-bordered {
|
|
13
|
+
border: 1px solid rgba(0, 0, 0, 6%);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&-hoverable {
|
|
17
|
+
&:hover {
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
border-color: transparent;
|
|
20
|
+
box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 16%), 0 3px 6px rgba(0, 0, 0, 12%), 0 5px 12px 4px rgba(0, 0, 0, 9%);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.horizontal {
|
|
25
|
+
display: flex;
|
|
26
|
+
justify-content: space-around;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
3
|
+
import { useContext } from 'react';
|
|
4
|
+
import classNames from 'classnames';
|
|
5
|
+
import ReactWordcloud from 'react-wordcloud';
|
|
6
|
+
import { ConfigContext } from "../ConfigProvider";
|
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
|
+
var WordCloud = function WordCloud(props) {
|
|
9
|
+
var _props$className = props.className,
|
|
10
|
+
className = _props$className === void 0 ? '' : _props$className;
|
|
11
|
+
var _useContext = useContext(ConfigContext),
|
|
12
|
+
prefixCls = _useContext.prefixCls,
|
|
13
|
+
getPrefixCls = _useContext.getPrefixCls;
|
|
14
|
+
var classname = getPrefixCls('word-cloud');
|
|
15
|
+
var wrapperClass = classNames(_defineProperty({}, "".concat(prefixCls, "-word-cloud"), !!prefixCls), classname, className);
|
|
16
|
+
return /*#__PURE__*/_jsx("div", {
|
|
17
|
+
className: wrapperClass,
|
|
18
|
+
children: /*#__PURE__*/_jsx(ReactWordcloud, _objectSpread({}, props))
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
export default WordCloud;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
export { default as LabelValue } from './LabelValue';
|
|
2
|
-
export type { LabelValueProps } from './LabelValue';
|
|
2
|
+
export type { LabelValueProps } from './LabelValue/interface';
|
|
3
3
|
export { default as AdvancedFilter } from './AdvancedFilter';
|
|
4
|
+
export type { AdvancedFilterProps, FormFilterProps, FotmItemProps, InputSearchProps } from './AdvancedFilter/interface';
|
|
4
5
|
export { default as AuthComponent } from './AuthComponent';
|
|
5
|
-
export type {
|
|
6
|
+
export type { AuthComponentProps } from './AuthComponent/interface';
|
|
6
7
|
export { default as ErrorBoundary } from './ErrorBoundary';
|
|
7
8
|
export { default as ConfigProvider } from './ConfigProvider';
|
|
9
|
+
export { default as PictureCard } from './PictureCard';
|
|
10
|
+
export type { PictureCardProps } from './PictureCard';
|
|
8
11
|
export { default as Loading } from './Loading';
|
|
12
|
+
export type { LoadingProps } from './Loading/interface';
|
|
9
13
|
export { default as NoData } from './NoData';
|
|
14
|
+
export type { NoDataProps } from './NoData/interface';
|
|
10
15
|
export type { DInputProps } from './DInput';
|
|
11
16
|
export { default as DInput } from './DInput';
|
|
12
17
|
export type { DSelectProps } from './DSelect';
|
|
@@ -21,9 +26,15 @@ export type { DColumnType, DTableProps, DTableSourceProps, TableParamsProps } fr
|
|
|
21
26
|
export { default as DTable } from './DTable';
|
|
22
27
|
export type { DFormProps, DFormRefProps, DItemProps } from './DForm';
|
|
23
28
|
export { default as DForm } from './DForm';
|
|
24
|
-
export type { DModalProps } from './DModal/interface';
|
|
25
29
|
export { default as DModal } from './DModal';
|
|
30
|
+
export type { DModalProps } from './DModal/interface';
|
|
31
|
+
export { default as ModalForm } from './ModalForm';
|
|
32
|
+
export type { ModalFormProps } from './ModalForm';
|
|
26
33
|
export { default as ColorPicker } from './ColorPicker';
|
|
27
34
|
export type { ColorPickerType, TwitterPickerType, HuePickerType, AlphaPickerType, BlockPickerType, ChromePickerType, CompactPickerType, CirclePickerType, SliderPickerType, } from './ColorPicker/interface';
|
|
28
35
|
export { default as ScrollNumber } from './ScrollNumber';
|
|
29
36
|
export type { ScrollNumberProps } from './ScrollNumber';
|
|
37
|
+
export type { WordCloudProps } from './WordCloud';
|
|
38
|
+
export { default as WordCloud } from './WordCloud';
|
|
39
|
+
export type { InfiniteScrollListProps } from './InfiniteScrollList';
|
|
40
|
+
export { default as InfiniteScrollList } from './InfiniteScrollList';
|
package/dist/esm/index.js
CHANGED
|
@@ -3,6 +3,7 @@ export { default as AdvancedFilter } from "./AdvancedFilter";
|
|
|
3
3
|
export { default as AuthComponent } from "./AuthComponent";
|
|
4
4
|
export { default as ErrorBoundary } from "./ErrorBoundary";
|
|
5
5
|
export { default as ConfigProvider } from "./ConfigProvider";
|
|
6
|
+
export { default as PictureCard } from "./PictureCard";
|
|
6
7
|
export { default as Loading } from "./Loading";
|
|
7
8
|
export { default as NoData } from "./NoData";
|
|
8
9
|
export { default as DInput } from "./DInput";
|
|
@@ -13,5 +14,8 @@ export { default as DUpload } from "./DUpload";
|
|
|
13
14
|
export { default as DTable } from "./DTable";
|
|
14
15
|
export { default as DForm } from "./DForm";
|
|
15
16
|
export { default as DModal } from "./DModal";
|
|
17
|
+
export { default as ModalForm } from "./ModalForm";
|
|
16
18
|
export { default as ColorPicker } from "./ColorPicker";
|
|
17
|
-
export { default as ScrollNumber } from "./ScrollNumber";
|
|
19
|
+
export { default as ScrollNumber } from "./ScrollNumber";
|
|
20
|
+
export { default as WordCloud } from "./WordCloud";
|
|
21
|
+
export { default as InfiniteScrollList } from "./InfiniteScrollList";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.pui-label-value{display:inline-flex}.pui-label-value span:first-child{max-width:120px;padding-right:4px;white-space:nowrap}.pui-label-value span:last-child{flex:1 1}.pui-label-value span:last-child.no-wrap{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pui-search-filter{align-items:center;background-color:#fff;margin-top:10px;width:100%}.pui-search-filter span.ant-collapse-header-text{cursor:auto!important;display:inline-block;width:100%}.pui-search-filter .ant-collapse-content-box{padding:0}.pui-search-filter .search-header{display:flex;width:100%}.pui-search-filter .search-header .left{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:no-wrap}.pui-search-filter .search-header .left :global .ant-radio-wrapper:first-child{border-left:1px solid #d9d9d9;border-radius:5px 0 0 5px}.pui-search-filter .search-header .left :global .ant-radio-wrapper:last-child{border-radius:0 5px 5px 0}.pui-search-filter .search-header .left :global .ant-radio-wrapper{border:1px solid #d9d9d9;border-left-color:#fff;margin-right:0;padding:4px 6px}.pui-search-filter .search-header .left :global .ant-radio-wrapper .ant-radio{display:none}.pui-search-filter .search-header .left :global .ant-radio-wrapper:hover{color:#1890ff}.pui-search-filter .search-header .left :global .ant-radio-wrapper-checked{background:#fff;border:1px solid #1890ff;border-left:1px solid #1890ff!important;color:#1890ff;z-index:1}.pui-search-filter .search-header .right{display:flex;justify-content:center}.pui-search-filter .search-header .right .input{border-radius:4px;width:200px}.pui-search-filter .search-header .right .button{background-color:#ff7e00;border-radius:4px;color:#fff;margin-left:10px}.pui-search-filter .search-header .right .button:active,.pui-search-filter .search-header .right .button:focus,.pui-search-filter .search-header .right .button:hover{border-color:transparent}.pui-search-filter .search-header .right .button .icon{margin-left:8px;transition:transform .4s}.pui-search-filter .search-header .right .button .icon.down{transform:rotate(180deg)}.pui-search-filter .search-header .right .button .icon.up{transform:rotate(0deg)}.pui-search-filter .title{align-items:center;border-bottom:1px solid #f0f0f0;display:flex;font-weight:700;margin:0 10px;padding-bottom:10px}.pui-search-filter .title span.icon{background-color:#ff7e00;border-radius:2px;height:16px;margin-right:6px;width:4px}.pui-search-filter .search-content .filter-row{display:flex;flex-wrap:wrap;padding:10px;width:100%}.pui-search-filter .search-content .filter-col{height:30px;line-height:30px;margin-bottom:10px}.pui-search-filter .search-content .filter-col .ant-picker{width:100%}.pui-search-filter .search-content .search-btn{justify-content:center}.pui-search-filter .search-content .search-btn>button{margin:0 5px}.pui-error-boundary{align-items:center;background-color:#dd7f7f;border-radius:10px;display:flex;flex-direction:column;justify-content:center;margin:20px;padding:15px;width:auto}.pui-error-boundary .error-text{margin-top:20px}.pui-error-boundary .error-refresh{background-color:#4593ef;border-radius:5px;color:#fff;cursor:pointer;font-weight:700;height:40px;line-height:40px;text-align:center;width:140px}.pui-error-boundary .errorDetiles .detilesLink{color:blue}.pui-error-boundary .errorDetiles .errordetails{background-color:#ccc6be;border:1px solid #777;border-radius:5px;color:#777;font-size:80%;padding:10px}.pui-loading .mask{height:100%;left:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:100000}.pui-loading .loading{background:#fff;border-radius:10px;box-shadow:3px 3px 3px rgba(0,0,0,.2);padding:20px;z-index:100001}.pui-loading .loading,.pui-nodata{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.pui-nodata .not-data-image{display:block;height:100px}.pui-nodata .no-data-text{color:#000;display:inline-block;font-size:14px;font-weight:400;margin-top:5px;opacity:.65;text-align:center;width:100%}.pui-cascader-dropdown .ant-cascader-menu::-webkit-scrollbar{height:8px;width:8px}.pui-cascader-dropdown .ant-cascader-menu::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border-radius:8px}.pui-cascader-dropdown .ant-cascader-menu::-webkit-scrollbar-track{border-radius:2px}.pui-cascader-dropdown .ant-cascader-menu::-webkit-scrollbar-corner{background-color:#f1f1f1}.pui-tree-select-dropdown .ant-select-tree-node-content-wrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pui-tree-select-dropdown .ant-select-tree-node-content-wrapper .ant-select-tree-title{overflow:hidden}.pui-upload .preview .ant-upload-list-item-actions a[target=_blank][rel="noopener noreferrer"]{opacity:1!important;pointer-events:auto!important}.pui-upload .ant-upload-list.ant-upload-list-picture-card .ant-upload-span .ant-upload-list-item-thumbnail{height:46px}.pui-upload .ant-upload-list.ant-upload-list-picture-card .ant-upload-span .ant-upload-list-item-name{display:inline;display:initial;position:absolute}.pui-table .ant-spin-container,.pui-table .ant-spin-nested-loading,.pui-table .ant-table,.pui-table .ant-table-container{height:100%;width:100%}.pui-table .ant-table-body{max-height:calc(100% - 56px);max-width:100%;min-height:calc(100% - 56px);min-width:100%;overflow-y:auto!important;position:absolute}.pui-table .ant-table-body .ant-table-tbody>tr>td.ant-table-cell.d-table-cell-wrap{white-space:normal}.pui-table .ant-table-body::-webkit-scrollbar{height:8px;width:4px}.pui-table .ant-table-body::-webkit-scrollbar-thumb{background-color:#0084ff}.pui-table .ant-table-body::-webkit-scrollbar-track{background-color:#f1f1f1;border-radius:2px}.pui-table .ant-table-body::-webkit-scrollbar-corner{background-color:#f1f1f1}.pui-table .ant-spin-nested-loading>div>.ant-spin{max-height:none}.pui-table .ant-pagination-total-text span{color:#40a9ff;font-weight:700}.pui-table.height-on-page .ant-table{height:calc(100% - 56px)}.pui-form .form-wrapper
|
|
1
|
+
.pui-label-value{display:inline-flex}.pui-label-value span:first-child{max-width:120px;padding-right:4px;white-space:nowrap}.pui-label-value span:last-child{flex:1 1}.pui-label-value span:last-child.no-wrap{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pui-search-filter{align-items:center;background-color:#fff;margin-top:10px;width:100%}.pui-search-filter span.ant-collapse-header-text{cursor:auto!important;display:inline-block;width:100%}.pui-search-filter .ant-collapse-content-box{padding:0}.pui-search-filter .search-header{display:flex;width:100%}.pui-search-filter .search-header .left{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:no-wrap}.pui-search-filter .search-header .left :global .ant-radio-wrapper:first-child{border-left:1px solid #d9d9d9;border-radius:5px 0 0 5px}.pui-search-filter .search-header .left :global .ant-radio-wrapper:last-child{border-radius:0 5px 5px 0}.pui-search-filter .search-header .left :global .ant-radio-wrapper{border:1px solid #d9d9d9;border-left-color:#fff;margin-right:0;padding:4px 6px}.pui-search-filter .search-header .left :global .ant-radio-wrapper .ant-radio{display:none}.pui-search-filter .search-header .left :global .ant-radio-wrapper:hover{color:#1890ff}.pui-search-filter .search-header .left :global .ant-radio-wrapper-checked{background:#fff;border:1px solid #1890ff;border-left:1px solid #1890ff!important;color:#1890ff;z-index:1}.pui-search-filter .search-header .right{display:flex;justify-content:center}.pui-search-filter .search-header .right .input{border-radius:4px;width:200px}.pui-search-filter .search-header .right .button{background-color:#ff7e00;border-radius:4px;color:#fff;margin-left:10px}.pui-search-filter .search-header .right .button:active,.pui-search-filter .search-header .right .button:focus,.pui-search-filter .search-header .right .button:hover{border-color:transparent}.pui-search-filter .search-header .right .button .icon{margin-left:8px;transition:transform .4s}.pui-search-filter .search-header .right .button .icon.down{transform:rotate(180deg)}.pui-search-filter .search-header .right .button .icon.up{transform:rotate(0deg)}.pui-search-filter .title{align-items:center;border-bottom:1px solid #f0f0f0;display:flex;font-weight:700;margin:0 10px;padding-bottom:10px}.pui-search-filter .title span.icon{background-color:#ff7e00;border-radius:2px;height:16px;margin-right:6px;width:4px}.pui-search-filter .search-content .filter-row{display:flex;flex-wrap:wrap;padding:10px;width:100%}.pui-search-filter .search-content .filter-col{height:30px;line-height:30px;margin-bottom:10px}.pui-search-filter .search-content .filter-col .ant-picker{width:100%}.pui-search-filter .search-content .search-btn{justify-content:center}.pui-search-filter .search-content .search-btn>button{margin:0 5px}.pui-error-boundary{align-items:center;background-color:#dd7f7f;border-radius:10px;display:flex;flex-direction:column;justify-content:center;margin:20px;padding:15px;width:auto}.pui-error-boundary .error-text{margin-top:20px}.pui-error-boundary .error-refresh{background-color:#4593ef;border-radius:5px;color:#fff;cursor:pointer;font-weight:700;height:40px;line-height:40px;text-align:center;width:140px}.pui-error-boundary .errorDetiles .detilesLink{color:blue}.pui-error-boundary .errorDetiles .errordetails{background-color:#ccc6be;border:1px solid #777;border-radius:5px;color:#777;font-size:80%;padding:10px}.pui-picture-card{display:inline-block;padding:10px;transition:box-shadow .3s linear}.pui-picture-card .info{margin-top:10px}.pui-picture-card-bordered{border:1px solid rgba(0,0,0,.06)}.pui-picture-card-hoverable:hover{border-color:transparent;box-shadow:0 1px 2px -2px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.09);cursor:pointer}.pui-picture-card.horizontal{display:flex;justify-content:space-around}.pui-loading .mask{height:100%;left:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:100000}.pui-loading .loading{background:#fff;border-radius:10px;box-shadow:3px 3px 3px rgba(0,0,0,.2);padding:20px;z-index:100001}.pui-loading .loading,.pui-nodata{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.pui-nodata .not-data-image{display:block;height:100px}.pui-nodata .no-data-text{color:#000;display:inline-block;font-size:14px;font-weight:400;margin-top:5px;opacity:.65;text-align:center;width:100%}.pui-cascader-dropdown .ant-cascader-menu::-webkit-scrollbar{height:8px;width:8px}.pui-cascader-dropdown .ant-cascader-menu::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border-radius:8px}.pui-cascader-dropdown .ant-cascader-menu::-webkit-scrollbar-track{border-radius:2px}.pui-cascader-dropdown .ant-cascader-menu::-webkit-scrollbar-corner{background-color:#f1f1f1}.pui-tree-select-dropdown .ant-select-tree-node-content-wrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pui-tree-select-dropdown .ant-select-tree-node-content-wrapper .ant-select-tree-title{overflow:hidden}.pui-upload .preview .ant-upload-list-item-actions a[target=_blank][rel="noopener noreferrer"]{opacity:1!important;pointer-events:auto!important}.pui-upload .ant-upload-list.ant-upload-list-picture-card .ant-upload-span .ant-upload-list-item-thumbnail{height:46px}.pui-upload .ant-upload-list.ant-upload-list-picture-card .ant-upload-span .ant-upload-list-item-name{display:inline;display:initial;position:absolute}.pui-table .ant-spin-container,.pui-table .ant-spin-nested-loading,.pui-table .ant-table,.pui-table .ant-table-container{height:100%;width:100%}.pui-table .ant-table-body{max-height:calc(100% - 56px);max-width:100%;min-height:calc(100% - 56px);min-width:100%;overflow-y:auto!important;position:absolute}.pui-table .ant-table-body .ant-table-tbody>tr>td.ant-table-cell.d-table-cell-wrap{white-space:normal}.pui-table .ant-table-body::-webkit-scrollbar{height:8px;width:4px}.pui-table .ant-table-body::-webkit-scrollbar-thumb{background-color:#0084ff}.pui-table .ant-table-body::-webkit-scrollbar-track{background-color:#f1f1f1;border-radius:2px}.pui-table .ant-table-body::-webkit-scrollbar-corner{background-color:#f1f1f1}.pui-table .ant-spin-nested-loading>div>.ant-spin{max-height:none}.pui-table .ant-pagination-total-text span{color:#40a9ff;font-weight:700}.pui-table.height-on-page .ant-table{height:calc(100% - 56px)}.pui-form .form-wrapper>.ant-form-item{margin-bottom:24px;margin-right:0;min-height:32px}.pui-form .ant-input-number,.pui-form .ant-picker{width:100%}.pui-form.ant-form-horizontal .ant-form-item-label{min-width:80px}.pui-form.ant-form-inline .form-wrapper,.pui-form.ant-form-inline.inlineVertical .form-wrapper{align-items:flex-end;display:flex;flex-wrap:wrap;height:min-content}.pui-form.ant-form-inline .form-wrapper>.ant-form-item,.pui-form.ant-form-inline.inlineVertical .form-wrapper>.ant-form-item{padding-right:16px}.pui-form.ant-form-inline.inlineVertical .ant-form-item-row{flex-direction:column}.pui-form.ant-form-inline.inlineVertical .ant-form-item-row .ant-form-item-label{text-align:left}.pui-modal-container .ant-modal-wrap .ant-modal{height:100%;max-width:none}.pui-modal-container .ant-modal-wrap .ant-modal .ant-modal-content{height:100%;width:100%}.pui-absolute-modal-container .ant-modal-wrap{position:fixed}.pui-relative-modal-container .ant-modal-wrap{position:absolute}.pui-color-picker .sketch-picker{box-shadow:none!important;padding:0!important}.trigger{border:5px solid #fff;border-radius:2px;box-shadow:0 0 2px #000;cursor:pointer;display:inline-block;height:26px;width:60px}.pui-infinite-scroll-wrapper .ant-list .ant-row{margin-right:0!important}.scroll-container{position:relative}.scroll-container .backtop{right:50px}.scroll-container .up{background:#007aff;border-radius:3px;color:#fff;text-align:center}
|