@pisell/materials 3.0.47 → 3.0.49-gray

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.
Files changed (46) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/index.js +1 -1
  5. package/build/lowcode/meta.js +2 -2
  6. package/build/lowcode/preview.js +7 -7
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +11 -11
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +11 -11
  11. package/es/components/pisellFloatingPanel/index.d.ts +17 -0
  12. package/es/components/pisellFloatingPanel/index.js +89 -0
  13. package/es/components/pisellFloatingPanel/index.less +30 -0
  14. package/es/components/pisellModal/index.d.ts +20 -5
  15. package/es/components/pisellStatisticList/index.d.ts +18 -0
  16. package/es/components/pisellStatisticList/index.js +66 -0
  17. package/es/components/pisellStatisticList/index.less +43 -0
  18. package/es/components/table/Table/utils.d.ts +1 -1
  19. package/es/components/table/index.js +8 -1
  20. package/es/components/table/index.less +6 -0
  21. package/es/index.d.ts +2 -0
  22. package/es/index.js +3 -1
  23. package/lib/components/pisellFloatingPanel/index.d.ts +17 -0
  24. package/lib/components/pisellFloatingPanel/index.js +113 -0
  25. package/lib/components/pisellFloatingPanel/index.less +30 -0
  26. package/lib/components/pisellModal/index.d.ts +20 -5
  27. package/lib/components/pisellStatisticList/index.d.ts +18 -0
  28. package/lib/components/pisellStatisticList/index.js +109 -0
  29. package/lib/components/pisellStatisticList/index.less +43 -0
  30. package/lib/components/table/Table/utils.d.ts +1 -1
  31. package/lib/components/table/index.js +41 -23
  32. package/lib/components/table/index.less +6 -0
  33. package/lib/index.d.ts +2 -0
  34. package/lib/index.js +6 -0
  35. package/lowcode/input/meta.ts +25 -0
  36. package/lowcode/pisell-floating-panel/meta.ts +232 -0
  37. package/lowcode/pisell-statistic-list/meta.ts +264 -0
  38. package/package.json +1 -1
  39. package/dist/umd/materials.min.css +0 -1
  40. package/dist/umd/materials.min.js +0 -1
  41. package/dist/umd/static/DotsSix.57d66266.svg +0 -1
  42. package/dist/umd/static/arrow-left.e542294f.svg +0 -1
  43. package/dist/umd/static/arrow-right.763f03e0.svg +0 -1
  44. package/dist/umd/static/filter-lines.04a54ae9.svg +0 -1
  45. package/dist/umd/static/help-circle.31c9be40.svg +0 -1
  46. package/dist/umd/static/switch-vertical-01.7ebe3ba8.svg +0 -1
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ export interface PisellFloatingPanelProps {
4
+ fullHeight?: string | number;
5
+ retractHeight?: string | number;
6
+ width?: string | number;
7
+ open?: boolean;
8
+ onOpenChange?: (open: boolean) => void;
9
+ defaultOpen?: boolean;
10
+ isFloat?: boolean;
11
+ children?: React.ReactNode;
12
+ retractSlot?: React.ReactNode;
13
+ style?: React.CSSProperties;
14
+ retractIconStyle?: React.CSSProperties;
15
+ }
16
+ declare const PisellFloatingPanel: (props: PisellFloatingPanelProps) => React.JSX.Element;
17
+ export default PisellFloatingPanel;
@@ -0,0 +1,89 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
8
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
9
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
10
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
11
+ function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i.return && (_r = _i.return(), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
12
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
13
+ import React, { useEffect, useMemo, useState } from 'react';
14
+ import classNames from 'classnames';
15
+ import { useUpdateEffect } from "ahooks";
16
+ import Iconfont from "../iconfont";
17
+ import "./index.less";
18
+ var PisellFloatingPanel = function PisellFloatingPanel(props) {
19
+ var _props$defaultOpen = props.defaultOpen,
20
+ defaultOpen = _props$defaultOpen === void 0 ? false : _props$defaultOpen,
21
+ onOpenChange = props.onOpenChange,
22
+ isFloat = props.isFloat,
23
+ open = props.open,
24
+ width = props.width,
25
+ children = props.children,
26
+ retractHeight = props.retractHeight,
27
+ fullHeight = props.fullHeight,
28
+ retractSlot = props.retractSlot,
29
+ propsStyle = props.style,
30
+ retractIconStyle = props.retractIconStyle;
31
+ var _useState = useState(defaultOpen),
32
+ _useState2 = _slicedToArray(_useState, 2),
33
+ isOpen = _useState2[0],
34
+ setIsOpen = _useState2[1];
35
+ useUpdateEffect(function () {
36
+ if (open !== undefined) {
37
+ setIsOpen(open);
38
+ }
39
+ }, [open]);
40
+ useEffect(function () {
41
+ document.body.id = 'body';
42
+ }, []);
43
+
44
+ // 切换面板状态
45
+ var togglePanel = function togglePanel() {
46
+ var newOpenState = !isOpen;
47
+ setIsOpen(newOpenState);
48
+ if (onOpenChange) {
49
+ onOpenChange(newOpenState);
50
+ }
51
+ };
52
+ var style = useMemo(function () {
53
+ var height = fullHeight;
54
+ var transform = isOpen ? 'translateY(0)' : "translateY(calc(100% - ".concat(retractHeight, "))");
55
+ if (!isFloat) {
56
+ height = isOpen ? fullHeight : retractHeight;
57
+ transform = 'none';
58
+ }
59
+ return _objectSpread(_objectSpread({}, propsStyle), {}, {
60
+ height: height,
61
+ width: width,
62
+ position: isFloat ? 'fixed' : 'relative',
63
+ bottom: 0,
64
+ transition: '0.3s',
65
+ transform: transform
66
+ });
67
+ }, [fullHeight, isFloat, retractHeight, isOpen, width, propsStyle]);
68
+ var iconType = useMemo(function () {
69
+ if (isOpen) {
70
+ return isFloat ? 'pisell2-chevron-down-double' : 'pisell2-chevron-up-double';
71
+ }
72
+ return isFloat ? 'pisell2-chevron-up-double' : 'pisell2-chevron-down-double';
73
+ }, [isOpen, isFloat]);
74
+ return /*#__PURE__*/React.createElement("div", {
75
+ className: classNames('pisell-lowcode-floating-panel-wrap', _defineProperty({}, 'pisell-lowcode-floating-panel-wrap-floating', isFloat)),
76
+ style: style
77
+ }, /*#__PURE__*/React.createElement("div", {
78
+ className: "pisell-lowcode-floating-panel-header",
79
+ onClick: togglePanel
80
+ }, /*#__PURE__*/React.createElement("div", {
81
+ className: "pisell-lowcode-floating-panel-handle"
82
+ }, /*#__PURE__*/React.createElement(Iconfont, {
83
+ type: iconType,
84
+ style: retractIconStyle
85
+ }))), !isOpen && retractSlot, /*#__PURE__*/React.createElement("div", {
86
+ className: "pisell-lowcode-floating-panel-content"
87
+ }, children));
88
+ };
89
+ export default PisellFloatingPanel;
@@ -0,0 +1,30 @@
1
+ .pisell-lowcode-floating-panel-wrap {
2
+ background-color: #fff;
3
+ border-top-left-radius: 16px;
4
+ border-top-right-radius: 16px;
5
+ box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
6
+ overflow: hidden;
7
+ display: flex;
8
+ flex-direction: column;
9
+ }
10
+
11
+ .pisell-lowcode-floating-panel-wrap.pisell-lowcode-floating-panel-wrap-floating {
12
+ position: fixed;
13
+ bottom: 0;
14
+ left: 0;
15
+ }
16
+
17
+ .pisell-lowcode-floating-panel-content {
18
+ overflow-y: auto;
19
+ height: 100%;
20
+ }
21
+
22
+ .pisell-lowcode-floating-panel-header {
23
+ padding: 10px;
24
+ width: 100%;
25
+ height: 32px;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: center;
29
+ cursor: pointer;
30
+ }
@@ -32,12 +32,27 @@ export interface PisellModalProps extends ModalProps {
32
32
  }
33
33
  declare const PisellModal: {
34
34
  (props: PisellModalProps): React.JSX.Element;
35
- confirm: (props: import("./components/functions").PisellModalFuncProps) => any;
36
- info: (props: import("./components/functions").PisellModalFuncProps) => any;
37
- error: (props: import("./components/functions").PisellModalFuncProps) => any;
35
+ confirm: (props: import("./components/functions").PisellModalFuncProps) => {
36
+ destroy: () => void;
37
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
38
+ };
39
+ info: (props: import("./components/functions").PisellModalFuncProps) => {
40
+ destroy: () => void;
41
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
42
+ };
43
+ error: (props: import("./components/functions").PisellModalFuncProps) => {
44
+ destroy: () => void;
45
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
46
+ };
38
47
  warn: (props: import("./components/functions").PisellModalFuncProps) => any;
39
- warning: (props: import("./components/functions").PisellModalFuncProps) => any;
40
- success: (props: import("./components/functions").PisellModalFuncProps) => any;
48
+ warning: (props: import("./components/functions").PisellModalFuncProps) => {
49
+ destroy: () => void;
50
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
51
+ };
52
+ success: (props: import("./components/functions").PisellModalFuncProps) => {
53
+ destroy: () => void;
54
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
55
+ };
41
56
  Information: (props: import("./components/Information").InformationProps) => React.JSX.Element;
42
57
  };
43
58
  export default PisellModal;
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ export interface PisellStatisticListProps extends React.HTMLAttributes<HTMLDivElement> {
4
+ backgroundColors?: string[];
5
+ labelColor?: string;
6
+ valueColor?: string;
7
+ data: {
8
+ label: string;
9
+ value: string;
10
+ tip?: string;
11
+ children?: {
12
+ label: string;
13
+ value: string;
14
+ }[];
15
+ }[];
16
+ }
17
+ declare const PisellStatisticList: (props: PisellStatisticListProps) => React.JSX.Element;
18
+ export default PisellStatisticList;
@@ -0,0 +1,66 @@
1
+ var _excluded = ["backgroundColors", "labelColor", "valueColor", "data"];
2
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
4
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
5
+ import React from 'react';
6
+ import { Col, Row } from 'antd';
7
+ import PisellTooltip from "../pisellTooltip";
8
+ import Iconfont from "../iconfont";
9
+ import "./index.less";
10
+ var defaultColors = ['rgba(224, 79, 22, 0.20)', 'rgba(202, 133, 4, 0.20)', 'rgba(127, 86, 217, 0.22)', 'rgba(7, 148, 85, 0.20)', 'rgba(21, 112, 239, 0.23)'];
11
+ var PisellStatisticList = function PisellStatisticList(props) {
12
+ var _props$backgroundColo = props.backgroundColors,
13
+ backgroundColors = _props$backgroundColo === void 0 ? defaultColors : _props$backgroundColo,
14
+ _props$labelColor = props.labelColor,
15
+ labelColor = _props$labelColor === void 0 ? '#fff' : _props$labelColor,
16
+ _props$valueColor = props.valueColor,
17
+ valueColor = _props$valueColor === void 0 ? '#fff' : _props$valueColor,
18
+ data = props.data,
19
+ others = _objectWithoutProperties(props, _excluded);
20
+ return /*#__PURE__*/React.createElement("div", _extends({
21
+ className: "pisell-lowcode-statistic-list-wrap"
22
+ }, others), data.map(function (item, index) {
23
+ var _item$children;
24
+ return /*#__PURE__*/React.createElement("div", {
25
+ className: "pisell-lowcode-statistic-list-item",
26
+ style: {
27
+ background: backgroundColors[index % backgroundColors.length]
28
+ }
29
+ }, /*#__PURE__*/React.createElement("div", {
30
+ className: "pisell-lowcode-statistic-list-item-label",
31
+ style: {
32
+ color: labelColor
33
+ }
34
+ }, item.label, item.tip && /*#__PURE__*/React.createElement(PisellTooltip, {
35
+ title: item.tip
36
+ }, /*#__PURE__*/React.createElement(Iconfont, {
37
+ style: {
38
+ color: labelColor
39
+ },
40
+ type: "pisell2-help-circle",
41
+ className: "pisell-lowcode-statistic-list-item-label-tip-icon"
42
+ }))), /*#__PURE__*/React.createElement("div", {
43
+ className: "pisell-lowcode-statistic-list-item-value",
44
+ style: {
45
+ color: valueColor
46
+ }
47
+ }, item.value), !!((_item$children = item.children) !== null && _item$children !== void 0 && _item$children.length) && /*#__PURE__*/React.createElement(Row, {
48
+ className: "pisell-lowcode-statistic-list-item-children-wrap"
49
+ }, item.children.map(function (child) {
50
+ return /*#__PURE__*/React.createElement(Col, {
51
+ span: 12
52
+ }, /*#__PURE__*/React.createElement("span", {
53
+ className: "pisell-lowcode-statistic-list-item-children-label",
54
+ style: {
55
+ color: labelColor
56
+ }
57
+ }, child.label), /*#__PURE__*/React.createElement("span", {
58
+ className: "pisell-lowcode-statistic-list-item-children-value",
59
+ style: {
60
+ color: valueColor
61
+ }
62
+ }, child.value));
63
+ })));
64
+ }));
65
+ };
66
+ export default PisellStatisticList;
@@ -0,0 +1,43 @@
1
+ .pisell-lowcode-statistic-list-wrap {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 16px;
5
+ .pisell-lowcode-statistic-list-item {
6
+ padding: 16px;
7
+ border-radius: 8px;
8
+ border: 1px solid var(--Gray-600, #475467);
9
+ .pisell-lowcode-statistic-list-item-label {
10
+ color: var(--Base-White, #fff);
11
+ font-size: 14px;
12
+ font-weight: 600;
13
+ line-height: 20px; /* 142.857% */
14
+ display: flex;
15
+ gap: 10px;
16
+ align-items: center;
17
+ .pisell-lowcode-statistic-list-item-label-tip-icon {
18
+ font-size: 20px;
19
+ }
20
+ }
21
+ .pisell-lowcode-statistic-list-item-value {
22
+ color: var(--Base-White, #fff);
23
+ font-size: 18px;
24
+ font-weight: 700;
25
+ line-height: 28px; /* 155.556% */
26
+ }
27
+ .pisell-lowcode-statistic-list-item-children-wrap {
28
+ .pisell-lowcode-statistic-list-item-children-label {
29
+ color: var(--Base-White, #fff);
30
+ font-size: 12px;
31
+ font-weight: 400;
32
+ line-height: 18px; /* 150% */
33
+ margin-right: 4px;
34
+ }
35
+ .pisell-lowcode-statistic-list-item-children-value {
36
+ color: var(--Base-White, #fff);
37
+ font-size: 18px;
38
+ font-weight: 700;
39
+ line-height: 28px; /* 155.556% */
40
+ }
41
+ }
42
+ }
43
+ }
@@ -155,7 +155,7 @@ export declare const getSettingKeyArrByMode: ({ filter, columnSetting, dataSourc
155
155
  sort?: SortType | undefined;
156
156
  mode: "" | "localStorage" | "remote";
157
157
  currentViewMode: ModeType;
158
- }) => ("filter_setting" | "column_setting" | "gallery_setting" | "view_mode" | "group_by" | "order_by")[];
158
+ }) => ("view_mode" | "column_setting" | "order_by" | "group_by" | "gallery_setting" | "filter_setting")[];
159
159
  export declare const omit: (obj: Record<string, any>, keys: string[]) => Record<string, any>;
160
160
  export declare const stringify: (obj: Record<string, any>) => string;
161
161
  export {};
@@ -17,6 +17,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
17
17
  import { useDebounce, useSize } from 'ahooks';
18
18
  import { Form } from 'antd';
19
19
  import React, { forwardRef, useEffect, useImperativeHandle, useMemo, useRef } from 'react';
20
+ import classNames from 'classNames';
20
21
  import { useSharedState } from "../../hooks";
21
22
  import useEngineContext from "../../hooks/useEngineContext";
22
23
  import Actions from "./Actions";
@@ -79,6 +80,10 @@ var GridView = Provider( /*#__PURE__*/forwardRef(function (props, ref) {
79
80
  wait: 100
80
81
  });
81
82
  var utils = context === null || context === void 0 ? void 0 : (_context$appHelper = context.appHelper) === null || _context$appHelper === void 0 ? void 0 : _context$appHelper.utils;
83
+ var isTerminal = useMemo(function () {
84
+ var _utils$isTerminal;
85
+ return utils === null || utils === void 0 ? void 0 : (_utils$isTerminal = utils.isTerminal) === null || _utils$isTerminal === void 0 ? void 0 : _utils$isTerminal.call(utils);
86
+ }, [utils]);
82
87
  var tableId = useMemo(function () {
83
88
  if (props.__designMode === 'design') {
84
89
  return 'designMode-mock-table-id';
@@ -285,7 +290,9 @@ var GridView = Provider( /*#__PURE__*/forwardRef(function (props, ref) {
285
290
  },
286
291
  className: "materials-grid-form-wrap"
287
292
  }, /*#__PURE__*/React.createElement("div", {
288
- className: 'materials-grid',
293
+ className: classNames('materials-grid', {
294
+ 'materials-grid-terminal': isTerminal
295
+ }),
289
296
  style: style,
290
297
  ref: wrapRef
291
298
  }, /*#__PURE__*/React.createElement(Header, {
@@ -144,4 +144,10 @@
144
144
  justify-content: center;
145
145
  }
146
146
  }
147
+ }
148
+
149
+ .materials-grid-terminal {
150
+ .pisell-lowcode-table-cell-row-hover {
151
+ background-color: transparent !important;
152
+ }
147
153
  }
package/es/index.d.ts CHANGED
@@ -102,3 +102,5 @@ export { default as PisellCard } from './components/pisellCard';
102
102
  export { default as PisellInformationEntry } from './components/pisellInformationEntry';
103
103
  export { default as usePisellConfig } from './components/pisell-config-provider/hooks/usePisellConfig';
104
104
  export { globalConfig, default as PisellContext } from './components/pisell-config-provider/context';
105
+ export { default as PisellStatisticList } from './components/pisellStatisticList';
106
+ export { default as PisellFloatingPanel } from './components/pisellFloatingPanel';
package/es/index.js CHANGED
@@ -123,4 +123,6 @@ export { default as PisellAlert } from "./components/pisellAlert";
123
123
  export { default as PisellCard } from "./components/pisellCard";
124
124
  export { default as PisellInformationEntry } from "./components/pisellInformationEntry";
125
125
  export { default as usePisellConfig } from "./components/pisell-config-provider/hooks/usePisellConfig";
126
- export { globalConfig, default as PisellContext } from "./components/pisell-config-provider/context";
126
+ export { globalConfig, default as PisellContext } from "./components/pisell-config-provider/context";
127
+ export { default as PisellStatisticList } from "./components/pisellStatisticList";
128
+ export { default as PisellFloatingPanel } from "./components/pisellFloatingPanel";
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ export interface PisellFloatingPanelProps {
4
+ fullHeight?: string | number;
5
+ retractHeight?: string | number;
6
+ width?: string | number;
7
+ open?: boolean;
8
+ onOpenChange?: (open: boolean) => void;
9
+ defaultOpen?: boolean;
10
+ isFloat?: boolean;
11
+ children?: React.ReactNode;
12
+ retractSlot?: React.ReactNode;
13
+ style?: React.CSSProperties;
14
+ retractIconStyle?: React.CSSProperties;
15
+ }
16
+ declare const PisellFloatingPanel: (props: PisellFloatingPanelProps) => React.JSX.Element;
17
+ export default PisellFloatingPanel;
@@ -0,0 +1,113 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from))
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
17
+ return to;
18
+ };
19
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
+ // If the importer is in node compatibility mode or this is not an ESM
21
+ // file that has been converted to a CommonJS file using a Babel-
22
+ // compatible transform (i.e. "__esModule" has not been set), then set
23
+ // "default" to the CommonJS "module.exports" for node compatibility.
24
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
+ mod
26
+ ));
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
+
29
+ // src/components/pisellFloatingPanel/index.tsx
30
+ var pisellFloatingPanel_exports = {};
31
+ __export(pisellFloatingPanel_exports, {
32
+ default: () => pisellFloatingPanel_default
33
+ });
34
+ module.exports = __toCommonJS(pisellFloatingPanel_exports);
35
+ var import_react = __toESM(require("react"));
36
+ var import_classnames = __toESM(require("classnames"));
37
+ var import_ahooks = require("ahooks");
38
+ var import_iconfont = __toESM(require("../iconfont"));
39
+ var import_index = require("./index.less");
40
+ var PisellFloatingPanel = (props) => {
41
+ const {
42
+ defaultOpen = false,
43
+ onOpenChange,
44
+ isFloat,
45
+ open,
46
+ width,
47
+ children,
48
+ retractHeight,
49
+ fullHeight,
50
+ retractSlot,
51
+ style: propsStyle,
52
+ retractIconStyle
53
+ } = props;
54
+ const [isOpen, setIsOpen] = (0, import_react.useState)(defaultOpen);
55
+ (0, import_ahooks.useUpdateEffect)(() => {
56
+ if (open !== void 0) {
57
+ setIsOpen(open);
58
+ }
59
+ }, [open]);
60
+ (0, import_react.useEffect)(() => {
61
+ document.body.id = "body";
62
+ }, []);
63
+ const togglePanel = () => {
64
+ const newOpenState = !isOpen;
65
+ setIsOpen(newOpenState);
66
+ if (onOpenChange) {
67
+ onOpenChange(newOpenState);
68
+ }
69
+ };
70
+ const style = (0, import_react.useMemo)(() => {
71
+ let height = fullHeight;
72
+ let transform = isOpen ? "translateY(0)" : `translateY(calc(100% - ${retractHeight}))`;
73
+ if (!isFloat) {
74
+ height = isOpen ? fullHeight : retractHeight;
75
+ transform = "none";
76
+ }
77
+ return {
78
+ ...propsStyle,
79
+ height,
80
+ width,
81
+ position: isFloat ? "fixed" : "relative",
82
+ bottom: 0,
83
+ transition: "0.3s",
84
+ transform
85
+ };
86
+ }, [fullHeight, isFloat, retractHeight, isOpen, width, propsStyle]);
87
+ const iconType = (0, import_react.useMemo)(() => {
88
+ if (isOpen) {
89
+ return isFloat ? "pisell2-chevron-down-double" : "pisell2-chevron-up-double";
90
+ }
91
+ return isFloat ? "pisell2-chevron-up-double" : "pisell2-chevron-down-double";
92
+ }, [isOpen, isFloat]);
93
+ return /* @__PURE__ */ import_react.default.createElement(
94
+ "div",
95
+ {
96
+ className: (0, import_classnames.default)("pisell-lowcode-floating-panel-wrap", {
97
+ ["pisell-lowcode-floating-panel-wrap-floating"]: isFloat
98
+ }),
99
+ style
100
+ },
101
+ /* @__PURE__ */ import_react.default.createElement(
102
+ "div",
103
+ {
104
+ className: "pisell-lowcode-floating-panel-header",
105
+ onClick: togglePanel
106
+ },
107
+ /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode-floating-panel-handle" }, /* @__PURE__ */ import_react.default.createElement(import_iconfont.default, { type: iconType, style: retractIconStyle }))
108
+ ),
109
+ !isOpen && retractSlot,
110
+ /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode-floating-panel-content" }, children)
111
+ );
112
+ };
113
+ var pisellFloatingPanel_default = PisellFloatingPanel;
@@ -0,0 +1,30 @@
1
+ .pisell-lowcode-floating-panel-wrap {
2
+ background-color: #fff;
3
+ border-top-left-radius: 16px;
4
+ border-top-right-radius: 16px;
5
+ box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
6
+ overflow: hidden;
7
+ display: flex;
8
+ flex-direction: column;
9
+ }
10
+
11
+ .pisell-lowcode-floating-panel-wrap.pisell-lowcode-floating-panel-wrap-floating {
12
+ position: fixed;
13
+ bottom: 0;
14
+ left: 0;
15
+ }
16
+
17
+ .pisell-lowcode-floating-panel-content {
18
+ overflow-y: auto;
19
+ height: 100%;
20
+ }
21
+
22
+ .pisell-lowcode-floating-panel-header {
23
+ padding: 10px;
24
+ width: 100%;
25
+ height: 32px;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: center;
29
+ cursor: pointer;
30
+ }
@@ -32,12 +32,27 @@ export interface PisellModalProps extends ModalProps {
32
32
  }
33
33
  declare const PisellModal: {
34
34
  (props: PisellModalProps): React.JSX.Element;
35
- confirm: (props: import("./components/functions").PisellModalFuncProps) => any;
36
- info: (props: import("./components/functions").PisellModalFuncProps) => any;
37
- error: (props: import("./components/functions").PisellModalFuncProps) => any;
35
+ confirm: (props: import("./components/functions").PisellModalFuncProps) => {
36
+ destroy: () => void;
37
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
38
+ };
39
+ info: (props: import("./components/functions").PisellModalFuncProps) => {
40
+ destroy: () => void;
41
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
42
+ };
43
+ error: (props: import("./components/functions").PisellModalFuncProps) => {
44
+ destroy: () => void;
45
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
46
+ };
38
47
  warn: (props: import("./components/functions").PisellModalFuncProps) => any;
39
- warning: (props: import("./components/functions").PisellModalFuncProps) => any;
40
- success: (props: import("./components/functions").PisellModalFuncProps) => any;
48
+ warning: (props: import("./components/functions").PisellModalFuncProps) => {
49
+ destroy: () => void;
50
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
51
+ };
52
+ success: (props: import("./components/functions").PisellModalFuncProps) => {
53
+ destroy: () => void;
54
+ update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
55
+ };
41
56
  Information: (props: import("./components/Information").InformationProps) => React.JSX.Element;
42
57
  };
43
58
  export default PisellModal;
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ export interface PisellStatisticListProps extends React.HTMLAttributes<HTMLDivElement> {
4
+ backgroundColors?: string[];
5
+ labelColor?: string;
6
+ valueColor?: string;
7
+ data: {
8
+ label: string;
9
+ value: string;
10
+ tip?: string;
11
+ children?: {
12
+ label: string;
13
+ value: string;
14
+ }[];
15
+ }[];
16
+ }
17
+ declare const PisellStatisticList: (props: PisellStatisticListProps) => React.JSX.Element;
18
+ export default PisellStatisticList;