@flatbiz/antd 4.2.66 → 4.2.69

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.
@@ -0,0 +1,3 @@
1
+ /*! @flatjs/forge MIT @flatbiz/antd */
2
+ function n(){n=Object.assign?Object.assign.bind():function(n){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var e in t){if(Object.prototype.hasOwnProperty.call(t,e)){n[e]=t[e]}}}return n};return n.apply(this,arguments)}function r(n,r){if(n==null)return{};var t={};var e=Object.keys(n);var a,i;for(i=0;i<e.length;i++){a=e[i];if(r.indexOf(a)>=0)continue;t[a]=n[a]}return t}export{n as _,r as a};
3
+ //# sourceMappingURL=_rollupPluginBabelHelpers-fc015ef2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_rollupPluginBabelHelpers-fc015ef2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
File without changes
@@ -0,0 +1,5 @@
1
+ /* eslint-disable */
2
+ import './index.css';
3
+ /*! @flatjs/forge MIT @flatbiz/antd */
4
+ import{ColorPicker as n}from"antd";import{jsx as o}from"react/jsx-runtime";var r=function r(t){return o(n,{value:t.value,onChange:function n(o){t.onChange==null?void 0:t.onChange(o.toHexString())}})};export{r as ColorPickerWrapper};
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["@flatbiz/antd/src/color-picker-wrapper/color-picker.tsx"],"sourcesContent":["import { ColorPicker, ColorPickerProps } from 'antd';\n\nexport type ColorPickerWrapperProps = Omit<ColorPickerProps, 'value' | 'onChange'> & {\n /** 格式:#1677ff */\n value?: string;\n /** 转换成 hex 格式颜色字符串,返回格式如:#1677ff */\n onChange?: (hex?: string) => void;\n};\n\nexport const ColorPickerWrapper = (props: ColorPickerWrapperProps) => {\n return (\n <ColorPicker\n value={props.value}\n onChange={(color) => {\n props.onChange?.(color.toHexString());\n }}\n />\n );\n};\n"],"names":["ColorPickerWrapper","props","_jsx","ColorPicker","value","onChange","color","toHexString"],"mappings":";+EASaA,EAAqB,SAArBA,EAAsBC,GACjC,OACEC,EAACC,EAAW,CACVC,MAAOH,EAAMG,MACbC,SAAU,SAAAA,EAACC,GACTL,EAAMI,UAANJ,UAAAA,EAAAA,EAAMI,SAAWC,EAAMC,cACzB,GAGN"}
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable */
2
2
  import './index.css';
3
3
  /*! @flatjs/forge MIT @flatbiz/antd */
4
- export{F as FormItemWrapper}from"../form-item-wrapper-dfe2ebd9.js";import"../_rollupPluginBabelHelpers-1f4d8910.js";import"@flatbiz/utils";import"antd";import"react";import"react/jsx-runtime";
4
+ export{F as FormItemWrapper}from"../form-item-wrapper-208febed.js";import"../_rollupPluginBabelHelpers-1f4d8910.js";import"@flatbiz/utils";import"antd";import"react";import"react/jsx-runtime";
5
5
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,3 @@
1
+ /*! @flatjs/forge MIT @flatbiz/antd */
2
+ import{_ as r,a as e}from"./_rollupPluginBabelHelpers-1f4d8910.js";import{composeProps as a}from"@flatbiz/utils";import{Form as i}from"antd";import{isValidElement as t,cloneElement as l}from"react";import{jsx as n,jsxs as o}from"react/jsx-runtime";var p=["wrapper","children","inputNormalize"],f=["wrapper","isClear","children","before","after","inputNormalize","outputNormalize"];var u=function e(i){var t=i.wrapper,f=i.children,u=i.inputNormalize,m=r(i,p);var s=m.hasOwnProperty("value");if(s&&u){m["value"]=u(m["value"])}var c=l(f,a(f.props,m,true));if(t){return t(c)}if(i.before||i.after){return o("div",{style:{display:"flex",alignItems:"center"},children:[i.before?n("span",{style:{marginRight:10},children:i.before}):null,n("div",{style:{flex:1},children:c}),i.after?n("span",{style:{marginLeft:10},children:i.after}):null]})}return c};var m=function a(l){var o=l.wrapper,p=l.isClear,m=l.children,s=l.before,c=l.after,d=l.inputNormalize,h=l.outputNormalize,v=r(l,f);if(p)return null;return n(i.Item,e({normalize:h},v,{children:t(m)?n(u,{wrapper:o,before:s,after:c,inputNormalize:d,children:m}):m}))};export{m as F};
3
+ //# sourceMappingURL=form-item-wrapper-208febed.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-item-wrapper-208febed.js","sources":["@flatbiz/antd/src/form-item-wrapper/form-item-wrapper.tsx"],"sourcesContent":["import { composeProps, TAny } from '@flatbiz/utils';\nimport { Form, FormItemProps } from 'antd';\nimport { cloneElement, isValidElement, ReactElement, ReactNode } from 'react';\n\nexport interface FormItemWrapperProps extends FormItemProps {\n wrapper?: (children: ReactNode) => ReactElement;\n /** 设置wrapper后,before、after失效 */\n before?: ReactNode;\n /** 设置wrapper后,before、after失效 */\n after?: ReactNode;\n /** value 序列化处理 */\n inputNormalize?: (value?: TAny) => TAny;\n /**\n * onChange 参数序列化处理\n * 如果设置 normalize 属性,outputNormalize将失效\n */\n outputNormalize?: (value?: TAny) => TAny;\n /** 是否清楚 Form.Item */\n isClear?: boolean;\n}\n\ntype FormItemWrapperChildrenProps = Pick<\n FormItemWrapperProps,\n 'wrapper' | 'after' | 'before' | 'inputNormalize'\n> & {\n children: ReactElement;\n};\n\nconst FormItemWrapperChildren = (props: FormItemWrapperChildrenProps) => {\n const { wrapper, children, inputNormalize, ...rest } = props;\n // composeProps 合并执行 Form.Item 传的 onChange 以及组件本身的方法\n const hasValue = rest.hasOwnProperty('value');\n if (hasValue && inputNormalize) {\n rest['value'] = inputNormalize(rest['value']);\n }\n const _children = cloneElement(children, composeProps(children.props, rest, true));\n if (wrapper) {\n return wrapper(_children);\n }\n if (props.before || props.after) {\n return (\n <div style={{ display: 'flex', alignItems: 'center' }}>\n {props.before ? <span style={{ marginRight: 10 }}>{props.before}</span> : null}\n <div style={{ flex: 1 }}>{_children}</div>\n {props.after ? <span style={{ marginLeft: 10 }}>{props.after}</span> : null}\n </div>\n );\n }\n return _children;\n};\n\n/**\n * 对 Form.Item 包装处理\n * ```\n * 1. 为 children 增加 before、after\n * 2. 对输入、输出数据进行序列化处理\n * ```\n */\nexport const FormItemWrapper = (props: FormItemWrapperProps) => {\n const { wrapper, isClear, children, before, after, inputNormalize, outputNormalize, ...rest } = props;\n\n if (isClear) return null;\n\n return (\n <Form.Item normalize={outputNormalize} {...rest}>\n {isValidElement(children) ? (\n <FormItemWrapperChildren\n wrapper={wrapper}\n before={before}\n after={after}\n inputNormalize={inputNormalize}\n >\n {children}\n </FormItemWrapperChildren>\n ) : (\n children\n )}\n </Form.Item>\n );\n};\n"],"names":["FormItemWrapperChildren","props","wrapper","children","inputNormalize","rest","_objectWithoutPropertiesLoose","_excluded","hasValue","hasOwnProperty","_children","cloneElement","composeProps","before","after","_jsxs","style","display","alignItems","_jsx","marginRight","flex","marginLeft","FormItemWrapper","isClear","outputNormalize","_excluded2","Form","Item","_extends","normalize","isValidElement"],"mappings":";6XA4BA,IAAMA,EAA0B,SAA1BA,EAA2BC,GAC/B,IAAQC,EAA+CD,EAA/CC,QAASC,EAAsCF,EAAtCE,SAAUC,EAA4BH,EAA5BG,eAAmBC,EAAIC,EAAKL,EAAKM,GAE5D,IAAMC,EAAWH,EAAKI,eAAe,SACrC,GAAID,GAAYJ,EAAgB,CAC9BC,EAAK,SAAWD,EAAeC,EAAK,SACtC,CACA,IAAMK,EAAYC,EAAaR,EAAUS,EAAaT,EAASF,MAAOI,EAAM,OAC5E,GAAIH,EAAS,CACX,OAAOA,EAAQQ,EACjB,CACA,GAAIT,EAAMY,QAAUZ,EAAMa,MAAO,CAC/B,OACEC,EAAA,MAAA,CAAKC,MAAO,CAAEC,QAAS,OAAQC,WAAY,UAAWf,SACnDF,CAAAA,EAAMY,OAASM,EAAA,OAAA,CAAMH,MAAO,CAAEI,YAAa,IAAKjB,SAAEF,EAAMY,SAAiB,KAC1EM,EAAA,MAAA,CAAKH,MAAO,CAAEK,KAAM,GAAIlB,SAAEO,IACzBT,EAAMa,MAAQK,EAAA,OAAA,CAAMH,MAAO,CAAEM,WAAY,IAAKnB,SAAEF,EAAMa,QAAgB,OAG7E,CACA,OAAOJ,CACT,MASaa,EAAkB,SAAlBA,EAAmBtB,GAC9B,IAAQC,EAAwFD,EAAxFC,QAASsB,EAA+EvB,EAA/EuB,QAASrB,EAAsEF,EAAtEE,SAAUU,EAA4DZ,EAA5DY,OAAQC,EAAoDb,EAApDa,MAAOV,EAA6CH,EAA7CG,eAAgBqB,EAA6BxB,EAA7BwB,gBAAoBpB,EAAIC,EAAKL,EAAKyB,GAErG,GAAIF,EAAS,OAAO,KAEpB,OACEL,EAACQ,EAAKC,KAAIC,EAAA,CAACC,UAAWL,GAAqBpB,EAAI,CAAAF,SAC5C4B,EAAe5B,GACdgB,EAACnB,EAAuB,CACtBE,QAASA,EACTW,OAAQA,EACRC,MAAOA,EACPV,eAAgBA,EAAeD,SAE9BA,IAGHA,IAIR"}
@@ -0,0 +1,3 @@
1
+ /*! @flatjs/forge MIT @flatbiz/antd */
2
+ import{_ as t}from"./_rollupPluginBabelHelpers-fc015ef2.js";import{Select as e,Pagination as r}from"antd";import"react";import{jsx as n}from"react/jsx-runtime";var o=function r(o){return n(e,t({size:"small"},o,{placement:"topLeft"}))};o.Option=e.Option;e.Option;var i=function r(o){return n(e,t({size:"middle"},o,{placement:"topLeft"}))};i.Option=e.Option;var p=function e(p){var a=p.size==="small"?o:i;return n(r,t({},p,{selectComponentClass:a}))};export{p as P,o as S};
3
+ //# sourceMappingURL=index-e98b9352.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-e98b9352.js","sources":["@flatbiz/antd/src/pagination-wrapper/select.tsx","@flatbiz/antd/src/pagination-wrapper/pagination.tsx"],"sourcesContent":["import { Select, SelectProps } from 'antd';\nimport * as React from 'react';\n\ntype CompoundedComponent = React.FC<SelectProps> & {\n Option: typeof Select.Option;\n};\n\n/**\n * 由于 antd 5.3.x 分页Pagination组件,存在点击分页选择框框时,一直朝下\n * issues:https://github.com/ant-design/ant-design/issues/36866\n * 为了兼容,在 Pagination 中添加了 selectComponentClass 属性,后期antd 官方优化了bug,可取消 配置selectComponentClass\n * @param props\n * @returns\n */\nexport const SmallSelect: CompoundedComponent = (props) => (\n <Select size=\"small\" {...props} placement=\"topLeft\" />\n);\n\nSmallSelect.Option = Select.Option;\n\nexport const LargeSelect: CompoundedComponent = (props) => (\n <Select size=\"large\" {...props} placement=\"topLeft\" />\n);\n\nLargeSelect.Option = Select.Option;\n\nexport const MiddleSelect: CompoundedComponent = (props) => (\n <Select size=\"middle\" {...props} placement=\"topLeft\" />\n);\n\nMiddleSelect.Option = Select.Option;\n","import { Pagination, PaginationProps } from 'antd';\nimport { MiddleSelect, SmallSelect } from './select';\n\n/**\n * 由于 antd 5.3.x 分页Pagination组件,存在点击分页选择框时,一直朝下\n * issues:https://github.com/ant-design/ant-design/issues/36866\n * 为了兼容,在 Pagination 中添加了 selectComponentClass 属性,后期antd 官方优化了bug,可取消 配置selectComponentClass\n * @param props\n * @returns\n */\nexport const PaginationWrapper = (props: PaginationProps) => {\n const selectComponentClass = props.size === 'small' ? SmallSelect : MiddleSelect;\n return <Pagination {...props} selectComponentClass={selectComponentClass} />;\n};\n"],"names":["SmallSelect","props","_jsx","Select","_extends","size","placement","Option","MiddleSelect","PaginationWrapper","selectComponentClass","Pagination"],"mappings":";oKAcaA,EAAmC,SAAnCA,EAAoCC,GAAK,OACpDC,EAACC,EAAMC,EAAA,CAACC,KAAK,SAAYJ,EAAK,CAAEK,UAAU,YAAY,EAGxDN,EAAYO,OAASJ,EAAOI,OAMPJ,EAAOI,OAErB,IAAMC,EAAoC,SAApCA,EAAqCP,GAAK,OACrDC,EAACC,EAAMC,EAAA,CAACC,KAAK,UAAaJ,EAAK,CAAEK,UAAU,YAAY,EAGzDE,EAAaD,OAASJ,EAAOI,WCpBhBE,EAAoB,SAApBA,EAAqBR,GAChC,IAAMS,EAAuBT,EAAMI,OAAS,QAAUL,EAAcQ,EACpE,OAAON,EAACS,EAAUP,KAAKH,EAAK,CAAES,qBAAsBA,IACtD"}
package/esm/index.js CHANGED
@@ -85,5 +85,5 @@ import './tree-selector-wrapper/index.css';
85
85
  import './tree-wrapper/index.css';
86
86
  import './index.css';
87
87
  /*! @flatjs/forge MIT @flatbiz/antd */
88
- export{A as AnchorSteps}from"./anchor-steps-601a335f.js";export{a as ButtonOperate,B as ButtonOperateItemContent}from"./button-operate-d00df6c9.js";export{B as ButtonWrapper}from"./button-wrapper-125fce50.js";export{C as CascaderWrapper}from"./cascader-wrapper-2f6a926f.js";export{CheckList}from"./check-list/index.js";export{C as CheckboxWrapper}from"./checkbox-wrapper-018a5c59.js";export{C as ConfigProviderWrapper}from"./config-provider-wrapper-dfe8f592.js";export{createDrawerWrapperModel}from"./create-drawer-wrapper-model/index.js";export{createModalWrapperModel}from"./create-modal-wrapper-model/index.js";export{C as CssNodeHover}from"./css-node-hover-ed7b9860.js";export{D as DataRender}from"./data-render-07c0ab6b.js";export{D as DatePickerWrapper}from"./date-picker-wrapper-ba650858.js";export{D as DateRangePickerWrapper}from"./date-range-picker-wrapper-fb15c592.js";export{D as DateRangePickerWrapperFormItem}from"./date-range-picker-wrapper-form-item-688cf465.js";export{d as dialogAlert}from"./dialog-alert-89d37729.js";export{d as dialogConfirm}from"./dialog-confirm-74fc9337.js";export{d as dialogDrawer}from"./dialog-drawer-550ce42c.js";export{D as DialogDrawerContent}from"./content-c0e49ffb.js";export{d as dialogLoading}from"./dialog-loading-53cf2c60.js";export{d as dialogModal}from"./dialog-modal-4a0c72c5.js";export{D as DragCollapse}from"./drag-collapse-433fb1e0.js";export{D as DragCollapseFormList}from"./drag-collapse-24ccfe8c.js";export{D as DrawerWrapper}from"./drawer-wrapper-9af2f178.js";export{D as DropdownMenuWrapper}from"./dropdown-menu-wrapper-3a565fd8.js";export{d as dynamicNode}from"./dynamic-node-c7864af4.js";export{EasyTable}from"./easy-table/index.js";export{E as EditableField}from"./editable-field-bcac193d.js";export{E as EditableFieldProvider}from"./editable-field-provider-3223073a.js";export{E as EditableTable}from"./editable-table-64554cac.js";export{E as EditorWrapper}from"./editor-wrapper-ff6e75b7.js";export{fbaHooks}from"./fba-hooks/index.js";export{f as fbaUtils}from"./fba-utils-f9e11d02.js";export{F as FileImport}from"./file-import-890a1df9.js";export{F as FlexLayout}from"./flex-layout-8d2b668b.js";export{FormGrid}from"./form-grid/index.js";export{FormItemGroup}from"./form-item-group/index.js";export{F as FormItemHidden}from"./form-item-hidden-45541774.js";export{F as FormItemWrapper}from"./form-item-wrapper-dfe2ebd9.js";export{G as Gap}from"./gap-284e1f59.js";export{I as IconWrapper}from"./icon-wrapper-ed5fcacc.js";export{I as InputSearchWrapper}from"./input-search-wrapper-10d4a9b9.js";export{I as InputTextAreaWrapper}from"./input-text-area-wrapper-1f22992b.js";export{I as InputWrapper}from"./input-wrapper-338ae416.js";export{L as LabelValueLayout}from"./label-value-layout-beb35b0d.js";export{LocalLoading}from"./local-loading/index.js";export{M as ModalAction}from"./modal-action-5c5ca8a7.js";export{M as ModalWrapper}from"./modal-wrapper-ff8df98b.js";export{P as PageFixedFooter}from"./page-fixed-footer-9ec2b46c.js";export{P as Page404}from"./page404-f087129a.js";export{P as PaginationWrapper}from"./pagination-0e66a3b5.js";export{P as Permission}from"./permission-17ed4d0b.js";export{preDefinedClassName}from"./pre-defined-class-name/index.js";export{R as RadioGroupWrapper}from"./radio-group-wrapper-b34746d1.js";export{R as RelationTree}from"./relation-tree-7bec12bd.js";export{R as RequestStatus}from"./request-status-03fc60e2.js";export{R as RichTextEditor}from"./rich-text-editor-213daa34.js";export{R as RichTextViewer}from"./rich-text-viewer-4a859351.js";export{R as RollLocationCenter}from"./center-a4dfda6f.js";export{R as RollLocationInView}from"./in-view-448ba714.js";export{R as RuleDescribe}from"./rule-describe-b4a8e831.js";export{S as SelectorWrapper}from"./selector-wrapper-efc44920.js";export{S as SelectorWrapperSearch}from"./selector-wrapper-search-54866dd6.js";export{S as SelectorWrapperSimple}from"./selector-wrapper-simple-7b34f7bd.js";export{S as SimpleLayout}from"./simple-layout-0dce0d39.js";export{S as SmsCountDown}from"./sms-count-down-c2609386.js";export{styles}from"./styles/index.js";export{S as SwitchConfirmWrapper}from"./switch-confirm-wrapper-984d57c4.js";export{S as SwitchWrapper}from"./switch-wrapper-f20b9a58.js";export{t as tableCellRender}from"./cell-render-4934a7de.js";export{T as TableScrollbar}from"./table-scrollbar-66c1682c.js";export{T as TableTitleTooltip}from"./title-render-4f255df0.js";export{T as TabsWrapper}from"./tabs-wrapper-0a2da713.js";export{T as TagGroup}from"./tag-group-4fbcaa14.js";export{T as TagListSelect}from"./tag-list-select-066f682f.js";export{T as TagWrapper}from"./tag-wrapper-6d8b505e.js";export{T as TextCssEllipsis}from"./text-css-ellipsis-9135d4c5.js";export{T as TextOverflowRender}from"./text-overflow-render-7a6541f5.js";export{T as TimePickerWrapper}from"./time-picker-wrapper-f1d26d96.js";export{T as TimeRangePickerWrapper}from"./time-range-picker-wrapper-be9850b5.js";export{T as TimeRangePickerWrapperFormItem}from"./time-range-picker-wrapper-form-item-9df6c0f4.js";export{T as TreeSelectorWrapper}from"./tree-selector-wrapper-1e520ad1.js";export{TreeWrapper}from"./tree-wrapper/index.js";export{U as UploadWrapper}from"./upload-wrapper-bd9ef592.js";import"@dimjs/utils/cjs/class-names";import"antd";import"react";import"react/jsx-runtime";import"@ant-design/icons/es/icons/MoreOutlined";import"./_rollupPluginBabelHelpers-1f4d8910.js";import"@dimjs/lang/cjs/is-undefined";import"@dimjs/lang/cjs/is-plain-object";import"@dimjs/lang/cjs/is-string";import"@dimjs/lang/cjs/is-promise";import"@wove/react/cjs/hooks";import"@ant-design/icons/es/icons/LoadingOutlined";import"@flatbiz/utils";import"@ant-design/icons/es/icons/RedoOutlined";import"@dimjs/utils/cjs/extend";import"@dimjs/model";import"@dimjs/model-react";import"@wove/react/cjs/create-ctx";import"antd/es/locale/en_US";import"antd/es/locale/zh_CN";import"dayjs";import"dayjs/locale/en";import"dayjs/locale/zh-cn";import"dayjs/plugin/advancedFormat";import"dayjs/plugin/customParseFormat";import"dayjs/plugin/localeData";import"dayjs/plugin/utc";import"dayjs/plugin/weekday";import"dayjs/plugin/weekOfYear";import"dayjs/plugin/weekYear";import"./time-53b3f55f.js";import"@dimjs/lang/cjs/is-array";import"react-dom/client";import"./dom-4d04aa64.js";import"./context-1f2093c6.js";import"ahooks";import"@dimjs/utils/cjs/array";import"@dnd-kit/core";import"@dnd-kit/sortable";import"@ant-design/icons/es/icons/DragOutlined";import"@dnd-kit/utilities";import"@ant-design/icons/es/icons/SaveOutlined";import"@ant-design/icons/es/icons/ExclamationCircleFilled";import"@ant-design/icons/es/icons/DownOutlined";import"@ant-design/icons/es/icons/UpOutlined";import"react-is";import"@ant-design/icons/es/icons/CloseOutlined";import"@ant-design/icons/es/icons/CheckOutlined";import"@dimjs/lang/cjs/is-number";import"@ant-design/icons/es/icons/EditOutlined";import"./context-25d0b686.js";import"@ant-design/icons/es/icons/PlusOutlined";import"@dimjs/lang/cjs/is-boolean";import"@ant-design/icons/es/icons/DeleteOutlined";import"@wove/react/cjs/editor";import"./use-responsive-point-21b8c601.js";import"@dimjs/lang/cjs/is-deep-equal";import"@tinymce/tinymce-react";import"@ant-design/icons/es/icons/PlusCircleOutlined";import"@ant-design/icons/es/icons/FullscreenOutlined";import"@dimjs/utils/cjs/get";import"@dimjs/utils/cjs/json";import"pubsub-js";import"@dimjs/lang/cjs/is-object";import"@dimjs/lang/cjs/is-empty";import"@ant-design/icons/es/icons/QuestionCircleOutlined";import"dayjs/plugin/isSameOrAfter";import"dayjs/plugin/isSameOrBefore";import"@ant-design/icons/es/icons/CaretDownFilled";import"dequal";import"@dimjs/utils/cjs/tree";import"react-dom";
88
+ export{A as AnchorSteps}from"./anchor-steps-601a335f.js";export{a as ButtonOperate,B as ButtonOperateItemContent}from"./button-operate-d00df6c9.js";export{B as ButtonWrapper}from"./button-wrapper-125fce50.js";export{C as CascaderWrapper}from"./cascader-wrapper-2f6a926f.js";export{CheckList}from"./check-list/index.js";export{C as CheckboxWrapper}from"./checkbox-wrapper-018a5c59.js";export{C as ConfigProviderWrapper}from"./config-provider-wrapper-dfe8f592.js";export{createDrawerWrapperModel}from"./create-drawer-wrapper-model/index.js";export{createModalWrapperModel}from"./create-modal-wrapper-model/index.js";export{C as CssNodeHover}from"./css-node-hover-ed7b9860.js";export{D as DataRender}from"./data-render-07c0ab6b.js";export{D as DatePickerWrapper}from"./date-picker-wrapper-ba650858.js";export{D as DateRangePickerWrapper}from"./date-range-picker-wrapper-fb15c592.js";export{D as DateRangePickerWrapperFormItem}from"./date-range-picker-wrapper-form-item-688cf465.js";export{d as dialogAlert}from"./dialog-alert-89d37729.js";export{d as dialogConfirm}from"./dialog-confirm-74fc9337.js";export{d as dialogDrawer}from"./dialog-drawer-550ce42c.js";export{D as DialogDrawerContent}from"./content-c0e49ffb.js";export{d as dialogLoading}from"./dialog-loading-53cf2c60.js";export{d as dialogModal}from"./dialog-modal-4a0c72c5.js";export{D as DragCollapse}from"./drag-collapse-433fb1e0.js";export{D as DragCollapseFormList}from"./drag-collapse-24ccfe8c.js";export{D as DrawerWrapper}from"./drawer-wrapper-9af2f178.js";export{D as DropdownMenuWrapper}from"./dropdown-menu-wrapper-3a565fd8.js";export{d as dynamicNode}from"./dynamic-node-c7864af4.js";export{EasyTable}from"./easy-table/index.js";export{E as EditableField}from"./editable-field-bcac193d.js";export{E as EditableFieldProvider}from"./editable-field-provider-3223073a.js";export{E as EditableTable}from"./editable-table-64554cac.js";export{E as EditorWrapper}from"./editor-wrapper-ff6e75b7.js";export{fbaHooks}from"./fba-hooks/index.js";export{f as fbaUtils}from"./fba-utils-f9e11d02.js";export{F as FileImport}from"./file-import-890a1df9.js";export{F as FlexLayout}from"./flex-layout-8d2b668b.js";export{FormGrid}from"./form-grid/index.js";export{FormItemGroup}from"./form-item-group/index.js";export{F as FormItemHidden}from"./form-item-hidden-45541774.js";export{F as FormItemWrapper}from"./form-item-wrapper-208febed.js";export{G as Gap}from"./gap-284e1f59.js";export{I as IconWrapper}from"./icon-wrapper-ed5fcacc.js";export{I as InputSearchWrapper}from"./input-search-wrapper-10d4a9b9.js";export{I as InputTextAreaWrapper}from"./input-text-area-wrapper-1f22992b.js";export{I as InputWrapper}from"./input-wrapper-338ae416.js";export{L as LabelValueLayout}from"./label-value-layout-beb35b0d.js";export{LocalLoading}from"./local-loading/index.js";export{M as ModalAction}from"./modal-action-5c5ca8a7.js";export{M as ModalWrapper}from"./modal-wrapper-ff8df98b.js";export{P as PageFixedFooter}from"./page-fixed-footer-9ec2b46c.js";export{P as Page404}from"./page404-f087129a.js";export{P as PaginationWrapper}from"./pagination-0e66a3b5.js";export{P as Permission}from"./permission-17ed4d0b.js";export{preDefinedClassName}from"./pre-defined-class-name/index.js";export{R as RadioGroupWrapper}from"./radio-group-wrapper-b34746d1.js";export{R as RelationTree}from"./relation-tree-7bec12bd.js";export{R as RequestStatus}from"./request-status-03fc60e2.js";export{R as RichTextEditor}from"./rich-text-editor-213daa34.js";export{R as RichTextViewer}from"./rich-text-viewer-4a859351.js";export{R as RollLocationCenter}from"./center-a4dfda6f.js";export{R as RollLocationInView}from"./in-view-448ba714.js";export{R as RuleDescribe}from"./rule-describe-b4a8e831.js";export{S as SelectorWrapper}from"./selector-wrapper-efc44920.js";export{S as SelectorWrapperSearch}from"./selector-wrapper-search-54866dd6.js";export{S as SelectorWrapperSimple}from"./selector-wrapper-simple-7b34f7bd.js";export{S as SimpleLayout}from"./simple-layout-0dce0d39.js";export{S as SmsCountDown}from"./sms-count-down-c2609386.js";export{styles}from"./styles/index.js";export{S as SwitchConfirmWrapper}from"./switch-confirm-wrapper-984d57c4.js";export{S as SwitchWrapper}from"./switch-wrapper-f20b9a58.js";export{t as tableCellRender}from"./cell-render-4934a7de.js";export{T as TableScrollbar}from"./table-scrollbar-66c1682c.js";export{T as TableTitleTooltip}from"./title-render-4f255df0.js";export{T as TabsWrapper}from"./tabs-wrapper-0a2da713.js";export{T as TagGroup}from"./tag-group-4fbcaa14.js";export{T as TagListSelect}from"./tag-list-select-066f682f.js";export{T as TagWrapper}from"./tag-wrapper-6d8b505e.js";export{T as TextCssEllipsis}from"./text-css-ellipsis-9135d4c5.js";export{T as TextOverflowRender}from"./text-overflow-render-7a6541f5.js";export{T as TimePickerWrapper}from"./time-picker-wrapper-f1d26d96.js";export{T as TimeRangePickerWrapper}from"./time-range-picker-wrapper-be9850b5.js";export{T as TimeRangePickerWrapperFormItem}from"./time-range-picker-wrapper-form-item-9df6c0f4.js";export{T as TreeSelectorWrapper}from"./tree-selector-wrapper-1e520ad1.js";export{TreeWrapper}from"./tree-wrapper/index.js";export{U as UploadWrapper}from"./upload-wrapper-bd9ef592.js";import"@dimjs/utils/cjs/class-names";import"antd";import"react";import"react/jsx-runtime";import"@ant-design/icons/es/icons/MoreOutlined";import"./_rollupPluginBabelHelpers-1f4d8910.js";import"@dimjs/lang/cjs/is-undefined";import"@dimjs/lang/cjs/is-plain-object";import"@dimjs/lang/cjs/is-string";import"@dimjs/lang/cjs/is-promise";import"@wove/react/cjs/hooks";import"@ant-design/icons/es/icons/LoadingOutlined";import"@flatbiz/utils";import"@ant-design/icons/es/icons/RedoOutlined";import"@dimjs/utils/cjs/extend";import"@dimjs/model";import"@dimjs/model-react";import"@wove/react/cjs/create-ctx";import"antd/es/locale/en_US";import"antd/es/locale/zh_CN";import"dayjs";import"dayjs/locale/en";import"dayjs/locale/zh-cn";import"dayjs/plugin/advancedFormat";import"dayjs/plugin/customParseFormat";import"dayjs/plugin/localeData";import"dayjs/plugin/utc";import"dayjs/plugin/weekday";import"dayjs/plugin/weekOfYear";import"dayjs/plugin/weekYear";import"./time-53b3f55f.js";import"@dimjs/lang/cjs/is-array";import"react-dom/client";import"./dom-4d04aa64.js";import"./context-1f2093c6.js";import"ahooks";import"@dimjs/utils/cjs/array";import"@dnd-kit/core";import"@dnd-kit/sortable";import"@ant-design/icons/es/icons/DragOutlined";import"@dnd-kit/utilities";import"@ant-design/icons/es/icons/SaveOutlined";import"@ant-design/icons/es/icons/ExclamationCircleFilled";import"@ant-design/icons/es/icons/DownOutlined";import"@ant-design/icons/es/icons/UpOutlined";import"react-is";import"@ant-design/icons/es/icons/CloseOutlined";import"@ant-design/icons/es/icons/CheckOutlined";import"@dimjs/lang/cjs/is-number";import"@ant-design/icons/es/icons/EditOutlined";import"./context-25d0b686.js";import"@ant-design/icons/es/icons/PlusOutlined";import"@dimjs/lang/cjs/is-boolean";import"@ant-design/icons/es/icons/DeleteOutlined";import"@wove/react/cjs/editor";import"./use-responsive-point-21b8c601.js";import"@dimjs/lang/cjs/is-deep-equal";import"@tinymce/tinymce-react";import"@ant-design/icons/es/icons/PlusCircleOutlined";import"@ant-design/icons/es/icons/FullscreenOutlined";import"@dimjs/utils/cjs/get";import"@dimjs/utils/cjs/json";import"pubsub-js";import"@dimjs/lang/cjs/is-object";import"@dimjs/lang/cjs/is-empty";import"@ant-design/icons/es/icons/QuestionCircleOutlined";import"dayjs/plugin/isSameOrAfter";import"dayjs/plugin/isSameOrBefore";import"@ant-design/icons/es/icons/CaretDownFilled";import"dequal";import"@dimjs/utils/cjs/tree";import"react-dom";
89
89
  //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ .tips-title{border:1px solid #d9d9d9;border-radius:8px;padding:24px;position:relative}.tips-title-title{background-color:#fff;font-weight:600;left:10px;padding:0 10px;position:absolute;top:0;transform:translateY(-50%)}.tips-title-small{padding:12px}
@@ -0,0 +1,5 @@
1
+ /* eslint-disable */
2
+ import './index.css';
3
+ /*! @flatjs/forge MIT @flatbiz/antd */
4
+ import{classNames as i}from"@dimjs/utils/cjs/class-names";import t from"@ant-design/icons/es/icons/QuestionCircleOutlined";import{Space as e}from"antd";import{jsx as l,jsxs as s}from"react/jsx-runtime";var n=function n(r){if(r.hidden)return null;var o=r.helpIcon?r.helpIcon:r.onHelp?l(t,{onClick:r.onHelp}):null;return s("div",{className:i("tips-title",{"tips-title-small":r.size==="small"},r.className),style:r.style,children:[s(e,{className:"tips-title-title",size:5,direction:"horizontal",children:[r.title,o]}),l("div",{className:"tips-title-content",children:r.children})]})};export{n as TipsTitle};
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["@flatbiz/antd/src/tips-title/tips-title.tsx"],"sourcesContent":["import { QuestionCircleOutlined } from '@ant-design/icons';\nimport { classNames } from '@dimjs/utils';\nimport { Space } from 'antd';\nimport { CSSProperties, ReactElement, type ReactNode } from 'react';\nimport './style.less';\n\nexport type TipsTitleProps = {\n className?: string;\n style?: CSSProperties;\n title: string;\n children: ReactNode;\n size?: 'default' | 'small';\n /** 自定义 help icon */\n helpIcon?: ReactElement;\n /** 配置 helpIcon 后,此参数失效 */\n onHelp?: () => void;\n hidden?: boolean;\n};\n\nexport const TipsTitle = (props: TipsTitleProps) => {\n if (props.hidden) return null;\n const helpElement = props.helpIcon ? (\n props.helpIcon\n ) : props.onHelp ? (\n <QuestionCircleOutlined onClick={props.onHelp} />\n ) : null;\n\n return (\n <div\n className={classNames(\n 'tips-title',\n {\n 'tips-title-small': props.size === 'small',\n },\n props.className,\n )}\n style={props.style}\n >\n <Space className=\"tips-title-title\" size={5} direction=\"horizontal\">\n {props.title}\n {helpElement}\n </Space>\n <div className=\"tips-title-content\">{props.children}</div>\n </div>\n );\n};\n"],"names":["TipsTitle","props","hidden","helpElement","helpIcon","onHelp","_jsx","_QuestionCircleOutlined","onClick","_jsxs","className","_classNames","size","style","children","Space","direction","title"],"mappings":";8MAmBaA,EAAY,SAAZA,EAAaC,GACxB,GAAIA,EAAMC,OAAQ,OAAO,KACzB,IAAMC,EAAcF,EAAMG,SACxBH,EAAMG,SACJH,EAAMI,OACRC,EAAAC,EAAA,CAAwBC,QAASP,EAAMI,SACrC,KAEJ,OACEI,EAAA,MAAA,CACEC,UAAWC,EACT,aACA,CACE,mBAAoBV,EAAMW,OAAS,SAErCX,EAAMS,WAERG,MAAOZ,EAAMY,MAAMC,SAAA,CAEnBL,EAACM,EAAK,CAACL,UAAU,mBAAmBE,KAAM,EAAGI,UAAU,aAAYF,SAChEb,CAAAA,EAAMgB,MACNd,KAEHG,EAAA,MAAA,CAAKI,UAAU,qBAAoBI,SAAEb,EAAMa,aAGjD"}
package/index.d.ts CHANGED
@@ -1,21 +1,19 @@
1
+ /// <reference types="node" />
1
2
  /// <reference types="prop-types" />
2
3
  /// <reference types="scheduler" />
3
4
 
4
5
  import { API, ModelType } from '@dimjs/model';
5
6
  import { DateFormatType, TAny, TNoopDefine, TPlainObject } from '@flatbiz/utils';
6
7
  import { IAllProps } from '@tinymce/tinymce-react';
7
- import { ButtonProps, CascaderProps, CheckboxProps, CollapseProps, DrawerProps, DropdownProps, FormInstance, FormItemProps, FormListFieldData, FormListOperation, InputNumberProps, InputProps, ModalProps, PaginationProps, PopconfirmProps, RadioGroupProps, RowProps, SelectProps, SpaceProps, SwitchProps, TableProps, TabsProps, TagProps, TimePickerProps, TimeRangePickerProps, TooltipProps, TreeProps, TreeSelectProps, UploadProps } from 'antd';
8
+ import { ButtonProps, CascaderProps, CheckboxProps, CollapseProps, ColorPickerProps, DrawerProps, DropdownProps, FormInstance, FormItemProps, FormListFieldData, FormListOperation, InputNumberProps, InputProps, ModalProps, PaginationProps, PopconfirmProps, RadioGroupProps, RowProps, SelectProps, SpaceProps, SwitchProps, TableProps, TabsProps, TagProps, TimePickerProps, TimeRangePickerProps, TooltipProps, TreeProps, TreeSelectProps, UploadProps } from 'antd';
8
9
  import { ConfigProviderProps } from 'antd/es/config-provider';
9
- import { PickerDateProps } from 'antd/es/date-picker/generatePicker';
10
+ import { PickerDateProps, RangePickerDateProps } from 'antd/es/date-picker/generatePicker';
10
11
  import { FormListProps } from 'antd/es/form';
11
12
  import { CheckboxGroupProps } from 'antd/lib/checkbox';
12
- import { RangePickerDateProps } from 'antd/lib/date-picker/generatePicker';
13
13
  import { SearchProps, TextAreaProps } from 'antd/lib/input';
14
14
  import { ColumnsType } from 'antd/lib/table';
15
15
  import { UploadChangeParam } from 'antd/lib/upload';
16
16
  import { UploadFile } from 'antd/lib/upload/interface';
17
- import dayjs from 'dayjs';
18
- import { Dayjs } from 'dayjs';
19
17
  import { CSSProperties, DependencyList, FC, ReactElement, ReactNode } from 'react';
20
18
  import { Editor as TinyMCEEditor } from 'tinymce';
21
19
 
@@ -32,7 +30,7 @@ export type AnchorStepsProps = {
32
30
  * @param props
33
31
  * @returns
34
32
  */
35
- export declare const AnchorSteps: (props: AnchorStepsProps) => JSX.Element;
33
+ export declare const AnchorSteps: (props: AnchorStepsProps) => import("react/jsx-runtime").JSX.Element;
36
34
  export type ButtonWrapperProps = Omit<ButtonProps, "onClick"> & {
37
35
  onClick?: (e: React.MouseEvent<HTMLElement>) => Promise<TAny> | void;
38
36
  debounceDuration?: number;
@@ -48,11 +46,11 @@ export type ButtonWrapperProps = Omit<ButtonProps, "onClick"> & {
48
46
  * @param props
49
47
  * @returns
50
48
  */
51
- export declare const ButtonWrapper: (props: ButtonWrapperProps) => JSX.Element | null;
49
+ export declare const ButtonWrapper: (props: ButtonWrapperProps) => import("react/jsx-runtime").JSX.Element | null;
52
50
  export type ConfigProviderWrapperProps = Omit<ConfigProviderProps, "locale"> & {
53
51
  locale?: "en" | "zh-cn";
54
52
  };
55
- export declare const ConfigProviderWrapper: (props: ConfigProviderWrapperProps) => JSX.Element;
53
+ export declare const ConfigProviderWrapper: (props: ConfigProviderWrapperProps) => import("react/jsx-runtime").JSX.Element;
56
54
  export type DialogModalProps = Omit<ModalProps, "onOk" | "onCancel" | "getContainer" | "open" | "open" | "okButtonProps" | "cancelButtonProps"> & {
57
55
  onOk?: (form: FormInstance, e: React.MouseEvent<HTMLElement>) => void | Promise<void>;
58
56
  onCancel?: (form: FormInstance, e: React.MouseEvent<HTMLElement>) => void | Promise<void>;
@@ -140,7 +138,7 @@ export interface DropdownMenuWrapperProps extends Omit<DropdownProps, "menu"> {
140
138
  * 1. Dropdown默认弹框根节点在组件内部,通过isFixed=true可设置弹框根节点在body下
141
139
  * ```
142
140
  */
143
- export declare const DropdownMenuWrapper: (props: DropdownMenuWrapperProps) => JSX.Element;
141
+ export declare const DropdownMenuWrapper: (props: DropdownMenuWrapperProps) => import("react/jsx-runtime").JSX.Element;
144
142
  export interface ButtonOperateItem extends ButtonWrapperProps {
145
143
  hidden?: boolean;
146
144
  /** hover 提示文字,isFold=true无效 */
@@ -182,7 +180,7 @@ export interface ButtonOperateProps {
182
180
  }
183
181
  export declare const ButtonOperateItemContent: (props: Pick<ButtonOperateItem, "hoverTips" | "tipsType"> & {
184
182
  content: ReactNode;
185
- }) => JSX.Element;
183
+ }) => import("react/jsx-runtime").JSX.Element;
186
184
  /**
187
185
  * 按钮组合处理组件
188
186
  * ```
@@ -199,7 +197,7 @@ export type TRequestStatusProps = {
199
197
  messageConfig?: Partial<Record<TRequestStatus, string>>;
200
198
  loading?: boolean;
201
199
  };
202
- export declare const RequestStatus: (props: TRequestStatusProps) => JSX.Element;
200
+ export declare const RequestStatus: (props: TRequestStatusProps) => import("react/jsx-runtime").JSX.Element;
203
201
  export type CascaderWrapperServiceConfig = {
204
202
  params?: TPlainObject;
205
203
  onRequest?: (params?: TAny) => TAny;
@@ -289,7 +287,7 @@ export type CheckListItemProps = {
289
287
  className?: string;
290
288
  style?: CSSProperties;
291
289
  };
292
- export declare const CheckList: (<T extends "radio" | "multi">(props: CheckListProps<T>) => JSX.Element) & {
290
+ export declare const CheckList: (<T extends "radio" | "multi">(props: CheckListProps<T>) => import("react/jsx-runtime").JSX.Element) & {
293
291
  Item: (props: CheckListItemProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;
294
292
  };
295
293
  export type CheckboxWrapperProps = Omit<CheckboxProps, "checked" | "defaultChecked" | "onChange"> & {
@@ -310,7 +308,14 @@ export type CheckboxWrapperProps = Omit<CheckboxProps, "checked" | "defaultCheck
310
308
  * </Form.Item>
311
309
  * ```
312
310
  */
313
- export declare const CheckboxWrapper: (props: CheckboxWrapperProps) => JSX.Element;
311
+ export declare const CheckboxWrapper: (props: CheckboxWrapperProps) => import("react/jsx-runtime").JSX.Element;
312
+ export type ColorPickerWrapperProps = Omit<ColorPickerProps, "value" | "onChange"> & {
313
+ /** 格式:#1677ff */
314
+ value?: string;
315
+ /** 转换成 hex 格式颜色字符串,返回格式如:#1677ff */
316
+ onChange?: (hex?: string) => void;
317
+ };
318
+ export declare const ColorPickerWrapper: (props: ColorPickerWrapperProps) => import("react/jsx-runtime").JSX.Element;
314
319
  export interface DrawerStateType {
315
320
  title: string;
316
321
  /**
@@ -375,7 +380,7 @@ export type CssHoverProps = {
375
380
  * @param props
376
381
  * @returns
377
382
  */
378
- export declare const CssNodeHover: (props: CssHoverProps) => JSX.Element;
383
+ export declare const CssNodeHover: (props: CssHoverProps) => import("react/jsx-runtime").JSX.Element;
379
384
  export type DataRenderProps = {
380
385
  isEmpty: boolean | (() => boolean);
381
386
  empty?: ReactElement;
@@ -400,10 +405,10 @@ export type DataRenderProps = {
400
405
  * </DataRender>
401
406
  * ```
402
407
  */
403
- export declare const DataRender: (props: DataRenderProps) => JSX.Element;
408
+ export declare const DataRender: (props: DataRenderProps) => import("react/jsx-runtime").JSX.Element;
404
409
  export type TDayjsDateType = "YYYY-MM-DD HH:mm:ss" | "YYYY-MM-DD HH:mm" | "YYYY-MM-DD HH" | "YYYY-MM-DD" | (string & {});
405
410
  export type TDayjsTimeType = "HH:mm:ss" | "HH:mm" | "HH" | "mm:ss" | "mm" | "ss" | (string & {});
406
- export type DatePickerWrapperProps = Omit<PickerDateProps<dayjs.Dayjs>, "value" | "onChange" | "format"> & {
411
+ export type DatePickerWrapperProps = Omit<PickerDateProps<TAny>, "value" | "onChange" | "format"> & {
407
412
  value?: string;
408
413
  onChange?: (value?: string) => void;
409
414
  disabledDateConfig?: {
@@ -429,8 +434,8 @@ export type DatePickerWrapperProps = Omit<PickerDateProps<dayjs.Dayjs>, "value"
429
434
  * 5. 设置 disabledTime 后,内置的disabledTime逻辑将失效
430
435
  * ```
431
436
  */
432
- export declare const DatePickerWrapper: (props: DatePickerWrapperProps) => JSX.Element;
433
- export type DateRangePickerWrapperProps = Omit<RangePickerDateProps<Dayjs>, "value" | "onChange" | "onCalendarChange" | "disabledDate" | "format"> & {
437
+ export declare const DatePickerWrapper: (props: DatePickerWrapperProps) => import("react/jsx-runtime").JSX.Element;
438
+ export type DateRangePickerWrapperProps = Omit<RangePickerDateProps<TAny>, "value" | "onChange" | "onCalendarChange" | "disabledDate" | "format"> & {
434
439
  value?: [
435
440
  string,
436
441
  string
@@ -470,7 +475,7 @@ export type DateRangePickerWrapperProps = Omit<RangePickerDateProps<Dayjs>, "val
470
475
  * TODO: 存在场景缺陷,当设置maxDays、showTime后,在选择单个日期不通过确认按钮直接切换输入框,无法获取回调,无法约束disabledDate
471
476
  * ```
472
477
  */
473
- export declare const DateRangePickerWrapper: (props: DateRangePickerWrapperProps) => JSX.Element;
478
+ export declare const DateRangePickerWrapper: (props: DateRangePickerWrapperProps) => import("react/jsx-runtime").JSX.Element;
474
479
  export type FormItemNamePath = string | number | Array<string | number>;
475
480
  export type DateRangePickerWrapperFormItemProps = Omit<FormItemProps, "name"> & {
476
481
  /**
@@ -494,7 +499,7 @@ export type DateRangePickerWrapperFormItemProps = Omit<FormItemProps, "name"> &
494
499
  * 2. 会在form中产生一个 `__#invalid_date_xxxx_xxxx` 的无效字段,可以直接忽略
495
500
  * ```
496
501
  */
497
- export declare const DateRangePickerWrapperFormItem: (props: DateRangePickerWrapperFormItemProps) => JSX.Element;
502
+ export declare const DateRangePickerWrapperFormItem: (props: DateRangePickerWrapperFormItemProps) => import("react/jsx-runtime").JSX.Element;
498
503
  export type DialogAlertProps = Omit<DialogModalProps, "onOk" | "cancelHidden" | "cancelButtonProps" | "onCancel" | "onClick"> & {
499
504
  onClick?: (e: React.MouseEvent<HTMLElement>) => void | Promise<void>;
500
505
  };
@@ -591,7 +596,7 @@ export type DialogDrawerContentProps = {
591
596
  * 1. 设置 footer 后,okHidden、cancelHidden、okButtonExtraProps、cancelButtonExtraProps、okText、cancelText、onOk、onCancel全部失效
592
597
  * ```
593
598
  */
594
- export declare const DialogDrawerContent: (props: DialogDrawerContentProps) => JSX.Element;
599
+ export declare const DialogDrawerContent: (props: DialogDrawerContentProps) => import("react/jsx-runtime").JSX.Element;
595
600
  export type DialogLoadingProps = {
596
601
  className?: string;
597
602
  message?: string;
@@ -648,7 +653,7 @@ export type DragCollapseProps = {
648
653
  * @param props
649
654
  * @returns
650
655
  */
651
- export declare const DragCollapse: (props: DragCollapseProps) => JSX.Element;
656
+ export declare const DragCollapse: (props: DragCollapseProps) => import("react/jsx-runtime").JSX.Element;
652
657
  export type DragCollapseFormListHeaderProps = {
653
658
  /** Form.List item fieldData */
654
659
  formListFieldData: FormListFieldData;
@@ -707,7 +712,7 @@ export type DragCollapseFormListProps = {
707
712
  * 1. FormList数组中必须要有 uid 唯一值字段
708
713
  * ```
709
714
  */
710
- export declare const DragCollapseFormList: (props: DragCollapseFormListProps) => JSX.Element;
715
+ export declare const DragCollapseFormList: (props: DragCollapseFormListProps) => import("react/jsx-runtime").JSX.Element;
711
716
  export interface DrawerOperationProps {
712
717
  loading?: boolean;
713
718
  okText?: string;
@@ -732,8 +737,8 @@ export type DrawerWrapperProps = {
732
737
  declare const DrawerWrapperContent: (props: {
733
738
  operationProps?: DrawerOperationProps;
734
739
  children?: ReactNode;
735
- }) => JSX.Element;
736
- declare const DrawerWrapperFooter: (props: any) => JSX.Element;
740
+ }) => import("react/jsx-runtime").JSX.Element;
741
+ declare const DrawerWrapperFooter: (props: any) => import("react/jsx-runtime").JSX.Element;
737
742
  /**
738
743
  * 弹窗机制
739
744
  * @deprecated 已过时 4.3.0版本移除;请使用 dialogDrawer.open
@@ -866,6 +871,8 @@ export type EasyTableProps = {
866
871
  * ```
867
872
  */
868
873
  isInline?: boolean;
874
+ /** Form 实例 */
875
+ form?: FormInstance;
869
876
  };
870
877
  export type FormOperateColProps = {
871
878
  className?: string;
@@ -987,7 +994,7 @@ export declare const EasyTable: import("react").ForwardRefExoticComponent<EasyTa
987
994
  *5. Filter 子节点包含 hidden = true 会被忽略
988
995
  *```
989
996
  */
990
- Filter: (props: EasyTableFilterProps) => JSX.Element;
997
+ Filter: (props: EasyTableFilterProps) => import("react/jsx-runtime").JSX.Element;
991
998
  /**
992
999
  * 表格渲染
993
1000
  * @param props
@@ -996,7 +1003,7 @@ export declare const EasyTable: import("react").ForwardRefExoticComponent<EasyTa
996
1003
  * 2. 分页功能已内置处理,不调用 onChange
997
1004
  * ```
998
1005
  */
999
- Table: <T extends import("@flatbiz/utils").TPlainObject>(props: EasyTableTableProps<T>) => JSX.Element;
1006
+ Table: <T extends import("@flatbiz/utils").TPlainObject>(props: EasyTableTableProps<T>) => import("react/jsx-runtime").JSX.Element;
1000
1007
  /**
1001
1008
  * @deprecated 已过时 4.3.0版本移除,请使用 useEasyTable
1002
1009
  */
@@ -1062,7 +1069,7 @@ export interface EditableFieldProviderProps {
1062
1069
  * @param props
1063
1070
  * @returns
1064
1071
  */
1065
- export declare const EditableFieldProvider: (props: EditableFieldProviderProps) => JSX.Element;
1072
+ export declare const EditableFieldProvider: (props: EditableFieldProviderProps) => import("react/jsx-runtime").JSX.Element;
1066
1073
  export type SelectorWrapperValue = string | number | Array<string | number> | TPlainObject<string | number> | Array<TPlainObject<string | number>>;
1067
1074
  export type SelectorServiceConfig = {
1068
1075
  params?: TPlainObject;
@@ -1154,7 +1161,7 @@ export type SelectorWrapperProps = Omit<SelectProps, "onSearch" | "notFoundConte
1154
1161
  * 1. 不支持搜索 + 调用服务模式
1155
1162
  * ```
1156
1163
  */
1157
- export declare const SelectorWrapper: (props: SelectorWrapperProps) => JSX.Element;
1164
+ export declare const SelectorWrapper: (props: SelectorWrapperProps) => import("react/jsx-runtime").JSX.Element;
1158
1165
  export type UploadWrapperFileItem = {
1159
1166
  uid: string;
1160
1167
  name: string;
@@ -1205,7 +1212,7 @@ export type UploadWrapperProps<T extends TPlainObject = TPlainObject> = {
1205
1212
  * ```
1206
1213
  *
1207
1214
  */
1208
- export declare const UploadWrapper: (props: UploadWrapperProps) => JSX.Element;
1215
+ export declare const UploadWrapper: (props: UploadWrapperProps) => import("react/jsx-runtime").JSX.Element;
1209
1216
  export type EditableTableName = string | number | Array<string | number>;
1210
1217
  export type EditableTableRecordType = FormListFieldData & {
1211
1218
  operation: FormListOperation;
@@ -1379,7 +1386,7 @@ export type EditableTableProps = {
1379
1386
  /** 隐藏底部`新增`按钮,设置 onTableAfterRender后 失效 */
1380
1387
  hiddenFooterBtn?: boolean;
1381
1388
  };
1382
- export declare const EditableTable: (props: EditableTableProps) => JSX.Element;
1389
+ export declare const EditableTable: (props: EditableTableProps) => import("react/jsx-runtime").JSX.Element;
1383
1390
  export type EditorWrapperProps = {
1384
1391
  onChange?: (data?: string) => void;
1385
1392
  value?: string;
@@ -1407,7 +1414,7 @@ export type EditorWrapperProps = {
1407
1414
  *
1408
1415
  * ```
1409
1416
  */
1410
- export declare const EditorWrapper: (props: EditorWrapperProps) => JSX.Element;
1417
+ export declare const EditorWrapper: (props: EditorWrapperProps) => import("react/jsx-runtime").JSX.Element;
1411
1418
  export type ShouldUpdateFunc<T> = (prev: T | undefined, next: T) => boolean;
1412
1419
  declare function usePrevious<T>(state: T, shouldUpdate?: ShouldUpdateFunc<T>): T | undefined;
1413
1420
  export declare const fbaHooks: {
@@ -1454,7 +1461,7 @@ export type FileImportProps = {
1454
1461
  * ```
1455
1462
  */
1456
1463
  export declare const FileImport: {
1457
- (props: FileImportProps): JSX.Element;
1464
+ (props: FileImportProps): import("react/jsx-runtime").JSX.Element;
1458
1465
  defaultProps: {
1459
1466
  name: string;
1460
1467
  accept: string;
@@ -1478,7 +1485,7 @@ export type FlexLayoutProps = {
1478
1485
  * @param props
1479
1486
  * @returns
1480
1487
  */
1481
- export declare const FlexLayout: (props: FlexLayoutProps) => JSX.Element;
1488
+ export declare const FlexLayout: (props: FlexLayoutProps) => import("react/jsx-runtime").JSX.Element;
1482
1489
  export type FormColProps = {
1483
1490
  span?: number;
1484
1491
  /** 屏幕 < 576px */
@@ -1506,7 +1513,7 @@ export declare const FormGrid: {
1506
1513
  * 2. 子元素只能是 FormCol、FormOperateCol,其他会被忽略
1507
1514
  * 3. 所有子元素中只能存在一个 FormOperateCol
1508
1515
  */
1509
- Row: (props: FormRowProps) => JSX.Element;
1516
+ Row: (props: FormRowProps) => import("react/jsx-runtime").JSX.Element;
1510
1517
  /**
1511
1518
  * 网格响应式布局,默认值:{ xs: 24, sm: 12, md: 12, lg: 8, xl: 8, xxl: 6 }
1512
1519
  *```
@@ -1521,7 +1528,7 @@ export declare const FormGrid: {
1521
1528
  * ```
1522
1529
  */
1523
1530
  Col: {
1524
- (props: FormColProps): JSX.Element | null;
1531
+ (props: FormColProps): import("react/jsx-runtime").JSX.Element | null;
1525
1532
  domTypeName: string;
1526
1533
  };
1527
1534
  /**
@@ -1534,7 +1541,7 @@ export declare const FormGrid: {
1534
1541
  * ```
1535
1542
  */
1536
1543
  OperateCol: {
1537
- (props: FormOperateColProps): JSX.Element | null;
1544
+ (props: FormOperateColProps): import("react/jsx-runtime").JSX.Element | null;
1538
1545
  domTypeName: string;
1539
1546
  };
1540
1547
  };
@@ -1563,13 +1570,13 @@ export type FormItemCardProps = {
1563
1570
  titleSign?: boolean;
1564
1571
  };
1565
1572
  export declare const FormItemGroup: {
1566
- HorizontalUnion: (props: FormItemHorizontalUnionProps) => JSX.Element;
1573
+ HorizontalUnion: (props: FormItemHorizontalUnionProps) => import("react/jsx-runtime").JSX.Element;
1567
1574
  Card: import("react").FC<FormItemCardProps>;
1568
1575
  };
1569
1576
  export type FormItemHiddenProps = {
1570
- name: string;
1577
+ name: string | Array<string | number>;
1571
1578
  };
1572
- export declare const FormItemHidden: (props: FormItemHiddenProps) => JSX.Element;
1579
+ export declare const FormItemHidden: (props: FormItemHiddenProps) => import("react/jsx-runtime").JSX.Element;
1573
1580
  export interface FormItemWrapperProps extends FormItemProps {
1574
1581
  wrapper?: (children: ReactNode) => ReactElement;
1575
1582
  /** 设置wrapper后,before、after失效 */
@@ -1583,6 +1590,8 @@ export interface FormItemWrapperProps extends FormItemProps {
1583
1590
  * 如果设置 normalize 属性,outputNormalize将失效
1584
1591
  */
1585
1592
  outputNormalize?: (value?: TAny) => TAny;
1593
+ /** 是否清楚 Form.Item */
1594
+ isClear?: boolean;
1586
1595
  }
1587
1596
  /**
1588
1597
  * 对 Form.Item 包装处理
@@ -1591,7 +1600,7 @@ export interface FormItemWrapperProps extends FormItemProps {
1591
1600
  * 2. 对输入、输出数据进行序列化处理
1592
1601
  * ```
1593
1602
  */
1594
- export declare const FormItemWrapper: (props: FormItemWrapperProps) => JSX.Element;
1603
+ export declare const FormItemWrapper: (props: FormItemWrapperProps) => import("react/jsx-runtime").JSX.Element | null;
1595
1604
  export type GapProps = {
1596
1605
  height?: number;
1597
1606
  width?: number;
@@ -1604,7 +1613,7 @@ export type GapProps = {
1604
1613
  * @param props
1605
1614
  * @returns
1606
1615
  */
1607
- export declare const Gap: (props: GapProps) => JSX.Element;
1616
+ export declare const Gap: (props: GapProps) => import("react/jsx-runtime").JSX.Element;
1608
1617
  export type IconWrapperProps = {
1609
1618
  hoverTips?: string | React.ReactElement;
1610
1619
  /**
@@ -1621,7 +1630,7 @@ export type IconWrapperProps = {
1621
1630
  hideHoverBgColor?: boolean;
1622
1631
  hidden?: boolean;
1623
1632
  };
1624
- export declare const IconWrapper: (props: IconWrapperProps) => JSX.Element | null;
1633
+ export declare const IconWrapper: (props: IconWrapperProps) => import("react/jsx-runtime").JSX.Element | null;
1625
1634
  export type InputSearchWrapperProps = Omit<SearchProps, "defaultValue">;
1626
1635
  /**
1627
1636
  * ```
@@ -1634,7 +1643,7 @@ export type InputSearchWrapperProps = Omit<SearchProps, "defaultValue">;
1634
1643
  *
1635
1644
  * ```
1636
1645
  */
1637
- export declare const InputSearchWrapper: (props: InputSearchWrapperProps) => JSX.Element;
1646
+ export declare const InputSearchWrapper: (props: InputSearchWrapperProps) => import("react/jsx-runtime").JSX.Element;
1638
1647
  export type InputTextAreaWrapperProps = Omit<TextAreaProps, "defaultValue"> & {
1639
1648
  debounceDuration?: number;
1640
1649
  };
@@ -1649,7 +1658,7 @@ export type InputTextAreaWrapperProps = Omit<TextAreaProps, "defaultValue"> & {
1649
1658
  *
1650
1659
  * ```
1651
1660
  */
1652
- export declare const InputTextAreaWrapper: (props: InputTextAreaWrapperProps) => JSX.Element;
1661
+ export declare const InputTextAreaWrapper: (props: InputTextAreaWrapperProps) => import("react/jsx-runtime").JSX.Element;
1653
1662
  export type InputWrapperProps = Omit<InputProps, "defaultValue"> & {
1654
1663
  debounceDuration?: number;
1655
1664
  };
@@ -1664,7 +1673,7 @@ export type InputWrapperProps = Omit<InputProps, "defaultValue"> & {
1664
1673
  * 6. 可设置防抖执行时间
1665
1674
  * ```
1666
1675
  */
1667
- export declare const InputWrapper: (props: InputWrapperProps) => JSX.Element;
1676
+ export declare const InputWrapper: (props: InputWrapperProps) => import("react/jsx-runtime").JSX.Element;
1668
1677
  export type LabelValueLayoutProps = {
1669
1678
  options: {
1670
1679
  label: string | ReactElement;
@@ -1681,7 +1690,7 @@ export type LabelValueLayoutProps = {
1681
1690
  * options[].span 是 Description.Item 的数量。 span={2} 会占用两个 DescriptionItem 的宽度
1682
1691
  * options[].hidden 是否隐藏 Description.Item
1683
1692
  */
1684
- export declare const LabelValueLayout: (props: LabelValueLayoutProps) => JSX.Element;
1693
+ export declare const LabelValueLayout: (props: LabelValueLayoutProps) => import("react/jsx-runtime").JSX.Element;
1685
1694
  export type LocalLoadingServiceConfig = {
1686
1695
  onRequest: (params?: TAny) => Promise<TPlainObject>;
1687
1696
  params?: TPlainObject;
@@ -1751,7 +1760,7 @@ export interface ModalActionProps {
1751
1760
  * </ModalAction>
1752
1761
  * ```
1753
1762
  */
1754
- export declare const ModalAction: (props: ModalActionProps) => JSX.Element;
1763
+ export declare const ModalAction: (props: ModalActionProps) => import("react/jsx-runtime").JSX.Element;
1755
1764
  export interface ModalOperationOldProps {
1756
1765
  loading?: boolean;
1757
1766
  okText?: string;
@@ -1773,8 +1782,8 @@ export type ModalWrapperProps = {
1773
1782
  declare const ModalWrapperContent: (props: {
1774
1783
  operationProps?: ModalOperationOldProps;
1775
1784
  children?: ReactNode;
1776
- }) => JSX.Element;
1777
- declare const ModalWrapperFooter: (props: any) => JSX.Element;
1785
+ }) => import("react/jsx-runtime").JSX.Element;
1786
+ declare const ModalWrapperFooter: (props: any) => import("react/jsx-runtime").JSX.Element;
1778
1787
  /**
1779
1788
  * 弹窗机制
1780
1789
  * @deprecated 已过时 4.3.0版本移除,后面版本会移除;请使用 dialogModal.open
@@ -1796,11 +1805,11 @@ export type PageFixedFooterProps = {
1796
1805
  children?: ReactNode | ReactNode[];
1797
1806
  hidden?: boolean;
1798
1807
  };
1799
- export declare const PageFixedFooter: (props: PageFixedFooterProps) => JSX.Element | null;
1808
+ export declare const PageFixedFooter: (props: PageFixedFooterProps) => import("react/jsx-runtime").JSX.Element | null;
1800
1809
  export type Page404Props = {
1801
1810
  message?: string;
1802
1811
  };
1803
- export declare const Page404: (props: Page404Props) => JSX.Element;
1812
+ export declare const Page404: (props: Page404Props) => import("react/jsx-runtime").JSX.Element;
1804
1813
  /**
1805
1814
  * 由于 antd 5.3.x 分页Pagination组件,存在点击分页选择框时,一直朝下
1806
1815
  * issues:https://github.com/ant-design/ant-design/issues/36866
@@ -1808,12 +1817,12 @@ export declare const Page404: (props: Page404Props) => JSX.Element;
1808
1817
  * @param props
1809
1818
  * @returns
1810
1819
  */
1811
- export declare const PaginationWrapper: (props: PaginationProps) => JSX.Element;
1820
+ export declare const PaginationWrapper: (props: PaginationProps) => import("react/jsx-runtime").JSX.Element;
1812
1821
  export interface PermissionProps {
1813
1822
  name?: string;
1814
1823
  children?: ReactNode | ReactNode[];
1815
1824
  }
1816
- export declare const Permission: (props: PermissionProps) => JSX.Element | null;
1825
+ export declare const Permission: (props: PermissionProps) => import("react/jsx-runtime").JSX.Element | null;
1817
1826
  /**
1818
1827
  * 预定义className
1819
1828
  * ```
@@ -1883,7 +1892,7 @@ export type CustomRadioGroupProps = {
1883
1892
  * @param props
1884
1893
  * @returns
1885
1894
  */
1886
- export declare const RadioGroupWrapper: (props: CustomRadioGroupProps) => JSX.Element;
1895
+ export declare const RadioGroupWrapper: (props: CustomRadioGroupProps) => import("react/jsx-runtime").JSX.Element;
1887
1896
  export type RelationProps = {
1888
1897
  /** 左侧Tag+线占用宽度 */
1889
1898
  tagLineWidth?: number;
@@ -1936,7 +1945,7 @@ export type TRelationTreeOperate = {
1936
1945
  remove: (uid: string) => void;
1937
1946
  onChange: (name: string, value: TAny) => void;
1938
1947
  };
1939
- export declare const RelationTree: (props: RelationTreeProps) => JSX.Element;
1948
+ export declare const RelationTree: (props: RelationTreeProps) => import("react/jsx-runtime").JSX.Element;
1940
1949
  export interface RichTextEditorProps extends Omit<IAllProps, "onChange" | "init"> {
1941
1950
  onChange?: (data?: string) => void;
1942
1951
  /** 上传图片服务 */
@@ -1977,7 +1986,7 @@ export interface RichTextEditorProps extends Omit<IAllProps, "onChange" | "init"
1977
1986
  * 默认比例:[{ min: 0, max: 1000, ratio: 0.5 }, { min: 1000, ratio: 0.3 }]
1978
1987
  * ```
1979
1988
  */
1980
- export declare const RichTextEditor: (props: RichTextEditorProps) => JSX.Element;
1989
+ export declare const RichTextEditor: (props: RichTextEditorProps) => import("react/jsx-runtime").JSX.Element;
1981
1990
  export type RichTextViewerProps = {
1982
1991
  value: string;
1983
1992
  className?: string;
@@ -1997,7 +2006,7 @@ export type RichTextViewerProps = {
1997
2006
  * @param props
1998
2007
  * @returns
1999
2008
  */
2000
- export declare const RichTextViewer: (props: RichTextViewerProps) => JSX.Element;
2009
+ export declare const RichTextViewer: (props: RichTextViewerProps) => import("react/jsx-runtime").JSX.Element;
2001
2010
  export type RollLocationCenterProps = {
2002
2011
  renderList: {
2003
2012
  activeKey: string;
@@ -2009,7 +2018,7 @@ export type RollLocationCenterProps = {
2009
2018
  style?: CSSProperties;
2010
2019
  className?: string;
2011
2020
  };
2012
- export declare const RollLocationCenter: (props: RollLocationCenterProps) => JSX.Element;
2021
+ export declare const RollLocationCenter: (props: RollLocationCenterProps) => import("react/jsx-runtime").JSX.Element;
2013
2022
  export type RollLocationInViewProps = {
2014
2023
  renderList: {
2015
2024
  activeKey: string;
@@ -2022,7 +2031,7 @@ export type RollLocationInViewProps = {
2022
2031
  style?: CSSProperties;
2023
2032
  className?: string;
2024
2033
  };
2025
- export declare const RollLocationInView: (props: RollLocationInViewProps) => JSX.Element;
2034
+ export declare const RollLocationInView: (props: RollLocationInViewProps) => import("react/jsx-runtime").JSX.Element;
2026
2035
  export type RuleDataItem = {
2027
2036
  title?: string | ReactElement;
2028
2037
  desc?: string | ReactElement;
@@ -2036,7 +2045,7 @@ export type RuleDescribeProps = {
2036
2045
  ruleItemTitleStyle?: CSSProperties;
2037
2046
  ruleItemDescStyle?: CSSProperties;
2038
2047
  };
2039
- export declare const RuleDescribe: (props: RuleDescribeProps) => JSX.Element;
2048
+ export declare const RuleDescribe: (props: RuleDescribeProps) => import("react/jsx-runtime").JSX.Element;
2040
2049
  export type SelectorWrapperSearchServiceConfig = {
2041
2050
  params?: TPlainObject;
2042
2051
  onRequest: (params?: TAny) => TAny;
@@ -2088,7 +2097,7 @@ export type SelectorWrapperSearchProps = Omit<SelectProps, "onSearch" | "notFoun
2088
2097
  * 3. 不会对value、onChange做任何处理
2089
2098
  * ```
2090
2099
  */
2091
- export declare const SelectorWrapperSearch: (props: SelectorWrapperSearchProps) => JSX.Element;
2100
+ export declare const SelectorWrapperSearch: (props: SelectorWrapperSearchProps) => import("react/jsx-runtime").JSX.Element;
2092
2101
  export type SelectorWrapperSimpleServiceConfig = {
2093
2102
  params?: TPlainObject;
2094
2103
  onRequest: (params?: TAny) => TAny;
@@ -2138,7 +2147,7 @@ export type SelectorWrapperSimpleProps = Omit<SelectProps, "onSearch" | "notFoun
2138
2147
  * 3. 不会对value、onChange做任何处理
2139
2148
  * ```
2140
2149
  */
2141
- export declare const SelectorWrapperSimple: (props: SelectorWrapperSimpleProps) => JSX.Element;
2150
+ export declare const SelectorWrapperSimple: (props: SelectorWrapperSimpleProps) => import("react/jsx-runtime").JSX.Element;
2142
2151
  export type SimpleLayoutProps = {
2143
2152
  className?: string;
2144
2153
  style?: CSSProperties;
@@ -2182,7 +2191,7 @@ export type SimpleLayoutProps = {
2182
2191
  * ```
2183
2192
  */
2184
2193
  export declare const SimpleLayout: {
2185
- (props: SimpleLayoutProps): JSX.Element;
2194
+ (props: SimpleLayoutProps): import("react/jsx-runtime").JSX.Element;
2186
2195
  defaultProps: {
2187
2196
  titleLeftLine: boolean;
2188
2197
  layoutType: string;
@@ -2271,7 +2280,7 @@ export type SwitchConfirmWrapperProps = Omit<SwitchProps, "defaultChecked" | "on
2271
2280
  * </Form.Item>
2272
2281
  * ```
2273
2282
  */
2274
- export declare const SwitchConfirmWrapper: (props: SwitchConfirmWrapperProps) => JSX.Element;
2283
+ export declare const SwitchConfirmWrapper: (props: SwitchConfirmWrapperProps) => import("react/jsx-runtime").JSX.Element;
2275
2284
  export type SwitchWrapperValue = string | number | boolean;
2276
2285
  export type SwitchWrapperProps = Omit<SwitchProps, "checked" | "defaultChecked" | "onChange"> & {
2277
2286
  value?: SwitchWrapperValue;
@@ -2302,7 +2311,7 @@ export type SwitchWrapperProps = Omit<SwitchProps, "checked" | "defaultChecked"
2302
2311
  * 6. 可设置 serviceConfig 配置服务调用交互
2303
2312
  * ```
2304
2313
  */
2305
- export declare const SwitchWrapper: (props: SwitchWrapperProps) => JSX.Element;
2314
+ export declare const SwitchWrapper: (props: SwitchWrapperProps) => import("react/jsx-runtime").JSX.Element;
2306
2315
  export type TagListSelectValue = string | number | boolean;
2307
2316
  export type TagListSelectDataItem = {
2308
2317
  label: string;
@@ -2412,7 +2421,7 @@ export declare const tableCellRender: {
2412
2421
  * }))
2413
2422
  * ```
2414
2423
  */
2415
- operateCell: (options: (item: TAny, index: number) => ButtonOperateProps) => (_value: string | number, record: any, index: number) => JSX.Element;
2424
+ operateCell: (options: (item: TAny, index: number) => ButtonOperateProps) => (_value: string | number, record: any, index: number) => import("react/jsx-runtime").JSX.Element;
2416
2425
  /**
2417
2426
  * 实现字段超出隐藏,默认长度10个字符
2418
2427
  * ```
@@ -2420,7 +2429,7 @@ export declare const tableCellRender: {
2420
2429
  * 2. 会讲字符转出字节进行计算显示
2421
2430
  * ```
2422
2431
  */
2423
- tooltipCell: (showMaxNumber?: number, defaultValue?: string) => (value: string | number) => string | number | JSX.Element | undefined;
2432
+ tooltipCell: (showMaxNumber?: number, defaultValue?: string) => (value: string | number) => string | number | import("react/jsx-runtime").JSX.Element | undefined;
2424
2433
  /**
2425
2434
  * ```
2426
2435
  * 使用方式1
@@ -2430,7 +2439,7 @@ export declare const tableCellRender: {
2430
2439
  * tableCellRender.selectorCell([{ label: '已开启', value: 1 }], { 1: '#108ee9' })
2431
2440
  * ```
2432
2441
  */
2433
- selectorCell: (selectorList: TagListSelectProps["dataList"], colorMap?: TagListSelectProps["colorMap"]) => (value: string | number) => JSX.Element;
2442
+ selectorCell: (selectorList: TagListSelectProps["dataList"], colorMap?: TagListSelectProps["colorMap"]) => (value: string | number) => import("react/jsx-runtime").JSX.Element;
2434
2443
  /**
2435
2444
  * 单元格对象数据处理,支持多级处理
2436
2445
  * ```
@@ -2456,7 +2465,7 @@ export type TableScrollProps = {
2456
2465
  * ```
2457
2466
  */
2458
2467
  export declare const TableScrollbar: ({ children, target, ...props }: TableScrollProps) => import("react").FunctionComponentElement<{
2459
- summary: (...args: any[]) => JSX.Element;
2468
+ summary: (...args: any[]) => import("react/jsx-runtime").JSX.Element;
2460
2469
  }>;
2461
2470
  export type TableTitleTooltipProps = {
2462
2471
  title: string;
@@ -2474,7 +2483,7 @@ export type TableTitleTooltipProps = {
2474
2483
  * @param props
2475
2484
  * @returns
2476
2485
  */
2477
- export declare const TableTitleTooltip: (props: TableTitleTooltipProps) => JSX.Element;
2486
+ export declare const TableTitleTooltip: (props: TableTitleTooltipProps) => import("react/jsx-runtime").JSX.Element;
2478
2487
  export type TabsWrapperProps = TabsProps & {
2479
2488
  /**
2480
2489
  * Tabs Header 提供 Sticky 效果,默认值:true
@@ -2502,7 +2511,7 @@ export type TabsWrapperProps = TabsProps & {
2502
2511
  * 缓存模式:会话缓存,在浏览器关闭后,会清除
2503
2512
  * ```
2504
2513
  */
2505
- export declare const TabsWrapper: (props: TabsWrapperProps) => JSX.Element;
2514
+ export declare const TabsWrapper: (props: TabsWrapperProps) => import("react/jsx-runtime").JSX.Element;
2506
2515
  export type TagGroupDataItem = {
2507
2516
  label: string;
2508
2517
  value: string | number;
@@ -2528,7 +2537,7 @@ export type TagWrapperProps = Omit<TagProps, "onClick"> & {
2528
2537
  /**
2529
2538
  * 为 Tag 添加 loading 效果
2530
2539
  */
2531
- export declare const TagWrapper: (props: TagWrapperProps) => JSX.Element;
2540
+ export declare const TagWrapper: (props: TagWrapperProps) => import("react/jsx-runtime").JSX.Element;
2532
2541
  export type CssTextEllipsisProps = {
2533
2542
  text?: string;
2534
2543
  width: number;
@@ -2538,7 +2547,7 @@ export type CssTextEllipsisProps = {
2538
2547
  * @param props
2539
2548
  * @returns
2540
2549
  */
2541
- export declare const TextCssEllipsis: (props: CssTextEllipsisProps) => JSX.Element;
2550
+ export declare const TextCssEllipsis: (props: CssTextEllipsisProps) => import("react/jsx-runtime").JSX.Element;
2542
2551
  export type TextOverflowRenderProps = {
2543
2552
  /** width 宽度控制超长 */
2544
2553
  width?: number;
@@ -2564,7 +2573,7 @@ export type TextOverflowRenderProps = {
2564
2573
  * @param props
2565
2574
  * @returns
2566
2575
  */
2567
- export declare const TextOverflowRender: (props: TextOverflowRenderProps) => JSX.Element;
2576
+ export declare const TextOverflowRender: (props: TextOverflowRenderProps) => import("react/jsx-runtime").JSX.Element;
2568
2577
  export type TimePickerWrapperProps = Omit<TimePickerProps, "value" | "onChange" | "format"> & {
2569
2578
  value?: string;
2570
2579
  onChange?: (value?: string) => void;
@@ -2594,7 +2603,7 @@ export type TimePickerWrapperProps = Omit<TimePickerProps, "value" | "onChange"
2594
2603
  * 5. 设置disabledTime后,disabledTimeConfig配置将失效
2595
2604
  * ```
2596
2605
  */
2597
- export declare const TimePickerWrapper: (props: TimePickerWrapperProps) => JSX.Element;
2606
+ export declare const TimePickerWrapper: (props: TimePickerWrapperProps) => import("react/jsx-runtime").JSX.Element;
2598
2607
  export type TimeRangePickerWrapperProps = Omit<TimeRangePickerProps, "value" | "onChange" | "format"> & {
2599
2608
  value?: [
2600
2609
  string,
@@ -2629,7 +2638,7 @@ export type TimeRangePickerWrapperProps = Omit<TimeRangePickerProps, "value" | "
2629
2638
  * 4. 设置disabledTime后,disabledTimeConfig配置将失效
2630
2639
  * ```
2631
2640
  */
2632
- export declare const TimeRangePickerWrapper: (props: TimeRangePickerWrapperProps) => JSX.Element;
2641
+ export declare const TimeRangePickerWrapper: (props: TimeRangePickerWrapperProps) => import("react/jsx-runtime").JSX.Element;
2633
2642
  export type TimeRangePickerWrapperFormItemProps = Omit<FormItemProps, "name"> & {
2634
2643
  /**
2635
2644
  * 开始的时间name
@@ -2652,7 +2661,20 @@ export type TimeRangePickerWrapperFormItemProps = Omit<FormItemProps, "name"> &
2652
2661
  * 2. 会在form中产生一个 `__#invalid_time_xxxx_xxxx` 的无效字段,可以直接忽略
2653
2662
  * ```
2654
2663
  */
2655
- export declare const TimeRangePickerWrapperFormItem: (props: TimeRangePickerWrapperFormItemProps) => JSX.Element;
2664
+ export declare const TimeRangePickerWrapperFormItem: (props: TimeRangePickerWrapperFormItemProps) => import("react/jsx-runtime").JSX.Element;
2665
+ export type TipsTitleProps = {
2666
+ className?: string;
2667
+ style?: CSSProperties;
2668
+ title: string;
2669
+ children: ReactNode;
2670
+ size?: "default" | "small";
2671
+ /** 自定义 help icon */
2672
+ helpIcon?: ReactElement;
2673
+ /** 配置 helpIcon 后,此参数失效 */
2674
+ onHelp?: () => void;
2675
+ hidden?: boolean;
2676
+ };
2677
+ export declare const TipsTitle: (props: TipsTitleProps) => import("react/jsx-runtime").JSX.Element | null;
2656
2678
  export type TreeSelectorWrapperValue = string | number | Array<string | number> | TPlainObject<string | number> | Array<TPlainObject<string | number>>;
2657
2679
  export type TreeSelectorServiceConfig = {
2658
2680
  params?: TPlainObject;
@@ -2766,184 +2788,7 @@ export type TreeSelectorWrapperProps = Omit<TreeSelectProps, "treeExpandedKeys"
2766
2788
  * 2. 父节点默认不返回,需要返回请设置showCheckedStrategy
2767
2789
  * ```
2768
2790
  */
2769
- export declare const TreeSelectorWrapper: (props: TreeSelectorWrapperProps) => JSX.Element;
2770
- export type TreeWrapperValue = string | number | Array<string | number> | TPlainObject<string | number> | Array<TPlainObject<string | number>>;
2771
- export type TreeServiceConfig = {
2772
- params?: TPlainObject;
2773
- requiredParamsKeys?: string[];
2774
- onRequest?: (params?: TAny) => TAny;
2775
- /**
2776
- * 响应数据适配器
2777
- */
2778
- onRequestResultAdapter?: (respData: TAny) => TPlainObject[];
2779
- };
2780
- export type TreeLoadDataServiceConfig = {
2781
- getParams: (dataItem: TPlainObject) => TPlainObject;
2782
- onRequest: (params: TPlainObject) => TAny;
2783
- /**
2784
- * 响应数据适配器
2785
- */
2786
- onRequestResultAdapter?: (respData: TAny) => TPlainObject[];
2787
- };
2788
- export type TreeWrapperMenuItem = {
2789
- title: string;
2790
- onClick: (dataItem: TPlainObject, event: any) => void;
2791
- icon?: ReactElement;
2792
- };
2793
- export type TreeWrapperProps = Omit<TreeProps, "treeData" | "onExpand" | "selectedKeys" | "checkedKeys" | "onCheck" | "onSelect" | "fieldNames" | "multiple" | "loadData" | "icon" | "defaultCheckedKeys" | "defaultExpandParent" | "defaultSelectedKeys"> & {
2794
- modelKey: string;
2795
- /**
2796
- * useEffect依赖项数组,用于重新发起获取接口数据
2797
- */
2798
- effectDependencyList?: DependencyList;
2799
- /**
2800
- * 请求服务需求的数据,当设置`selectorTreeList`后无效果
2801
- */
2802
- serviceConfig?: TreeServiceConfig;
2803
- loadDataServiceConfig?: TreeLoadDataServiceConfig;
2804
- /**
2805
- * 当设置selectorTreeList后,serviceConfig将失效
2806
- * ```
2807
- * 1. 不支持异步数据,异步使用serviceConfig方式
2808
- * ```
2809
- */
2810
- selectorTreeList?: TPlainObject[];
2811
- /**
2812
- * 通过服务获取数据后回调,当设置`selectorList`后无效果
2813
- * ```
2814
- * 相同modelKey,同时发起多个渲染时,只有第一个会执行 onSelectorTreeListChange 回调
2815
- * ```
2816
- */
2817
- onSelectorTreeListChange?: (dataList: TPlainObject[]) => void;
2818
- onRequestResponseChange?: (data: TAny) => void;
2819
- onChange?: (selectedKey?: TreeWrapperValue, operateNodeData?: TPlainObject[] | TPlainObject, operateAllNodeDataList?: TPlainObject[]) => void;
2820
- fieldNames?: {
2821
- label?: string;
2822
- value?: string;
2823
- children?: string;
2824
- };
2825
- /**
2826
- * 搜索关键字,打开tree折叠过滤关键字
2827
- */
2828
- searchValue?: string;
2829
- /**
2830
- * checkable模式下,onChange是否返回父节点,默认值true
2831
- * 1. checkStrictly = true,模式下失效
2832
- */
2833
- checkableResponseParentNode?: boolean;
2834
- loadDataFlag?: boolean;
2835
- /**
2836
- * 菜单结构类型 tile/平铺 fold/折叠;默认:fold
2837
- * @deprecated 已过期 4.3.0版本移除,请使用 menus
2838
- * ```
2839
- * 自定义设置 titleRender 后失效
2840
- * ```
2841
- */
2842
- menuLayoutType?: "tile" | "fold";
2843
- /**
2844
- * 获取菜单类别
2845
- * @param dataItem
2846
- * @deprecated 已过期 4.3.0版本移除,请使用 menus
2847
- * @returns
2848
- * ```
2849
- * 1. menuLayoutType = tile 无效
2850
- * 2. 自定义设置 titleRender 后失效
2851
- * ```
2852
- */
2853
- getMenuOptions?: (dataItem: TPlainObject) => DropdownMenuItem[] | ButtonOperateItem[];
2854
- /**
2855
- * 根据 menuLayoutType 类型赋值
2856
- * @deprecated 已过期 4.3.0版本移除,请使用 menuOptions
2857
- */
2858
- menuOptions?: {
2859
- tile?: (dataItem: TPlainObject) => ButtonOperateProps;
2860
- fold?: (dataItem: TPlainObject) => DropdownMenuItem[];
2861
- };
2862
- /**
2863
- * 菜单触发类型,默认:click
2864
- * ```
2865
- * 自定义设置 titleRender 后失效
2866
- * ```
2867
- */
2868
- menuTriggerType?: "click" | "hover";
2869
- menus?: (dataItem: any) => ButtonOperateProps;
2870
- showSearch?: boolean;
2871
- onSearchValueChange?: (searchValue?: string) => void;
2872
- searchPlaceholder?: string;
2873
- searchStyle?: CSSProperties;
2874
- icon?: (data: {
2875
- isParent: boolean;
2876
- isLeaf: boolean;
2877
- }) => ReactElement;
2878
- /**
2879
- * 是否必选,最后一个不能取消
2880
- */
2881
- requestMessageConfig?: TRequestStatusProps["messageConfig"];
2882
- /**
2883
- * value格式
2884
- *```
2885
- * 1. string 、number
2886
- * 2. Array<string | number>
2887
- * 3. lableInValue = true,根据labelInValueFieldNames配置格式
2888
- * 4. lableInValue = true,Array<labelInValueFieldNames配置>
2889
- * ```
2890
- */
2891
- value?: TreeWrapperValue;
2892
- labelInValue?: boolean;
2893
- /**
2894
- * ```
2895
- * lableInValue = true,onChange输出数据字段名称,默认:{ label: string; value: string|number }
2896
- * ```
2897
- */
2898
- labelInValueFieldNames?: {
2899
- label: string;
2900
- value: string;
2901
- };
2902
- /**
2903
- * 禁用状态是否可选,默认值true
2904
- * 当dateItem中包含 disabled 则数据为禁用状态
2905
- */
2906
- disabledCanUse?: boolean;
2907
- /** treeItem数据适配器 */
2908
- treeItemDataAdapter?: (dataItem: TPlainObject) => TPlainObject;
2909
- /** 搜索位置额外元素 */
2910
- searchExtraElement?: ReactElement;
2911
- /** 有唯一跟节点时,初始化是否展开,默认值:false */
2912
- initRootExpand?: boolean;
2913
- /** 搜素过滤方式,高亮 | 过滤;默认:filter */
2914
- searchResultType?: "highlight" | "filter";
2915
- /**
2916
- * 拖拽节点处理,自定义onDrop事件后,失效
2917
- * ```
2918
- * 参数
2919
- * 1. parentId 当前拖拽节点的父节点ID
2920
- * 2. id 当前拖拽节点ID
2921
- * 3. index 当前拖拽节点所在数组下标
2922
- * ```
2923
- */
2924
- onDropNodeHandle?: (result: {
2925
- parentId?: string | number;
2926
- id: string | number;
2927
- index: number;
2928
- }) => void;
2929
- /**
2930
- * 拖拽排序前判断,如果返回 true,可排序,其他不可排序
2931
- * ```
2932
- * 可用于需要权限控制判断
2933
- * ```
2934
- */
2935
- onDropPrev?: (info: any) => boolean;
2936
- /**
2937
- * 标签渲染
2938
- * ```
2939
- * 1. 自定义设置 titleRender 后失效
2940
- * 2. 与titleRender的区别
2941
- * a. 设置 labelRender 后,menuLayout有效
2942
- * b. 设置 titleRender 后,menuLayout失效
2943
- * ```
2944
- */
2945
- labelRender?: (nodeData: TPlainObject) => ReactElement;
2946
- };
2791
+ export declare const TreeSelectorWrapper: (props: TreeSelectorWrapperProps) => import("react/jsx-runtime").JSX.Element;
2947
2792
  export type TreeWrapperRefApi = {
2948
2793
  onClearSelectorList: () => void;
2949
2794
  getTreeDataList: () => TreeProps["treeData"];
@@ -2991,7 +2836,7 @@ export declare const TreeWrapper: import("react").ForwardRefExoticComponent<Omit
2991
2836
  checkableResponseParentNode?: boolean | undefined;
2992
2837
  loadDataFlag?: boolean | undefined;
2993
2838
  menuLayoutType?: "tile" | "fold" | undefined;
2994
- getMenuOptions?: ((dataItem: import("@flatbiz/utils").TPlainObject) => ButtonOperateItem[] | DropdownMenuItem[]) | undefined;
2839
+ getMenuOptions?: ((dataItem: import("@flatbiz/utils").TPlainObject) => DropdownMenuItem[] | ButtonOperateItem[]) | undefined;
2995
2840
  menuOptions?: {
2996
2841
  tile?: ((dataItem: import("@flatbiz/utils").TPlainObject) => ButtonOperateProps) | undefined;
2997
2842
  fold?: ((dataItem: import("@flatbiz/utils").TPlainObject) => DropdownMenuItem[]) | undefined;
@@ -3025,7 +2870,7 @@ export declare const TreeWrapper: import("react").ForwardRefExoticComponent<Omit
3025
2870
  }) => void) | undefined;
3026
2871
  onDropPrev?: ((info: any) => boolean) | undefined;
3027
2872
  labelRender?: ((nodeData: import("@flatbiz/utils").TPlainObject) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | undefined;
3028
- } & import("react").RefAttributes<TreeWrapperRefApi>> & {
2873
+ } & import("react").RefAttributes<tw.TreeWrapperRefApi>> & {
3029
2874
  /**
3030
2875
  * 获取树形原数据
3031
2876
  * ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flatbiz/antd",
3
- "version": "4.2.66",
3
+ "version": "4.2.69",
4
4
  "description": "flat-biz ui components",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",
@@ -33,8 +33,8 @@
33
33
  "@dimjs/utils": ">=1.3.2",
34
34
  "@flatbiz/utils": ">=4.0.10",
35
35
  "@wove/react": ">=1.2.23",
36
- "antd": ">=5.4.0",
37
- "dayjs": ">=1.11.7",
36
+ "antd": ">=5.5.1",
37
+ "dayjs": ">=1.11.9",
38
38
  "react": ">=18.2.0",
39
39
  "react-dom": ">=18.2.0",
40
40
  "ahooks": "^3.7.5"
@@ -47,8 +47,8 @@
47
47
  "@ant-design/icons": "^4.8.0",
48
48
  "@flatbiz/utils": "^4.0.10",
49
49
  "@wove/react": "^1.2.22",
50
- "antd": "^5.4.0",
51
- "dayjs": "1.11.7",
50
+ "antd": "5.5.1",
51
+ "dayjs": "1.11.9",
52
52
  "dequal": "^2.0.3",
53
53
  "react": "18.2.0",
54
54
  "react-dom": "18.2.0",
@@ -1,3 +0,0 @@
1
- /*! @flatjs/forge MIT @flatbiz/antd */
2
- import{_ as r,a as e}from"./_rollupPluginBabelHelpers-1f4d8910.js";import{composeProps as a}from"@flatbiz/utils";import{Form as i}from"antd";import{isValidElement as t,cloneElement as l}from"react";import{jsx as n,jsxs as o}from"react/jsx-runtime";var p=["wrapper","children","inputNormalize"],f=["wrapper","children","before","after","inputNormalize","outputNormalize"];var u=function e(i){var t=i.wrapper,f=i.children,u=i.inputNormalize,m=r(i,p);var s=m.hasOwnProperty("value");if(s&&u){m["value"]=u(m["value"])}var c=l(f,a(f.props,m,true));if(t){return t(c)}if(i.before||i.after){return o("div",{style:{display:"flex",alignItems:"center"},children:[i.before?n("span",{style:{marginRight:10},children:i.before}):null,n("div",{style:{flex:1},children:c}),i.after?n("span",{style:{marginLeft:10},children:i.after}):null]})}return c};var m=function a(l){var o=l.wrapper,p=l.children,m=l.before,s=l.after,c=l.inputNormalize,d=l.outputNormalize,h=r(l,f);return n(i.Item,e({normalize:d},h,{children:t(p)?n(u,{wrapper:o,before:m,after:s,inputNormalize:c,children:p}):p}))};export{m as F};
3
- //# sourceMappingURL=form-item-wrapper-dfe2ebd9.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-item-wrapper-dfe2ebd9.js","sources":["@flatbiz/antd/src/form-item-wrapper/form-item-wrapper.tsx"],"sourcesContent":["import { composeProps, TAny } from '@flatbiz/utils';\nimport { Form, FormItemProps } from 'antd';\nimport { cloneElement, isValidElement, ReactElement, ReactNode } from 'react';\n\nexport interface FormItemWrapperProps extends FormItemProps {\n wrapper?: (children: ReactNode) => ReactElement;\n /** 设置wrapper后,before、after失效 */\n before?: ReactNode;\n /** 设置wrapper后,before、after失效 */\n after?: ReactNode;\n /** value 序列化处理 */\n inputNormalize?: (value?: TAny) => TAny;\n /**\n * onChange 参数序列化处理\n * 如果设置 normalize 属性,outputNormalize将失效\n */\n outputNormalize?: (value?: TAny) => TAny;\n}\n\ntype FormItemWrapperChildrenProps = Pick<\n FormItemWrapperProps,\n 'wrapper' | 'after' | 'before' | 'inputNormalize'\n> & {\n children: ReactElement;\n};\n\nconst FormItemWrapperChildren = (props: FormItemWrapperChildrenProps) => {\n const { wrapper, children, inputNormalize, ...rest } = props;\n // composeProps 合并执行 Form.Item 传的 onChange 以及组件本身的方法\n const hasValue = rest.hasOwnProperty('value');\n if (hasValue && inputNormalize) {\n rest['value'] = inputNormalize(rest['value']);\n }\n const _children = cloneElement(children, composeProps(children.props, rest, true));\n if (wrapper) {\n return wrapper(_children);\n }\n if (props.before || props.after) {\n return (\n <div style={{ display: 'flex', alignItems: 'center' }}>\n {props.before ? <span style={{ marginRight: 10 }}>{props.before}</span> : null}\n <div style={{ flex: 1 }}>{_children}</div>\n {props.after ? <span style={{ marginLeft: 10 }}>{props.after}</span> : null}\n </div>\n );\n }\n return _children;\n};\n\n/**\n * 对 Form.Item 包装处理\n * ```\n * 1. 为 children 增加 before、after\n * 2. 对输入、输出数据进行序列化处理\n * ```\n */\nexport const FormItemWrapper = (props: FormItemWrapperProps) => {\n const { wrapper, children, before, after, inputNormalize, outputNormalize, ...rest } = props;\n\n return (\n <Form.Item normalize={outputNormalize} {...rest}>\n {isValidElement(children) ? (\n <FormItemWrapperChildren\n wrapper={wrapper}\n before={before}\n after={after}\n inputNormalize={inputNormalize}\n >\n {children}\n </FormItemWrapperChildren>\n ) : (\n children\n )}\n </Form.Item>\n );\n};\n"],"names":["FormItemWrapperChildren","props","wrapper","children","inputNormalize","rest","_objectWithoutPropertiesLoose","_excluded","hasValue","hasOwnProperty","_children","cloneElement","composeProps","before","after","_jsxs","style","display","alignItems","_jsx","marginRight","flex","marginLeft","FormItemWrapper","outputNormalize","_excluded2","Form","Item","_extends","normalize","isValidElement"],"mappings":";mXA0BA,IAAMA,EAA0B,SAA1BA,EAA2BC,GAC/B,IAAQC,EAA+CD,EAA/CC,QAASC,EAAsCF,EAAtCE,SAAUC,EAA4BH,EAA5BG,eAAmBC,EAAIC,EAAKL,EAAKM,GAE5D,IAAMC,EAAWH,EAAKI,eAAe,SACrC,GAAID,GAAYJ,EAAgB,CAC9BC,EAAK,SAAWD,EAAeC,EAAK,SACtC,CACA,IAAMK,EAAYC,EAAaR,EAAUS,EAAaT,EAASF,MAAOI,EAAM,OAC5E,GAAIH,EAAS,CACX,OAAOA,EAAQQ,EACjB,CACA,GAAIT,EAAMY,QAAUZ,EAAMa,MAAO,CAC/B,OACEC,EAAA,MAAA,CAAKC,MAAO,CAAEC,QAAS,OAAQC,WAAY,UAAWf,SACnDF,CAAAA,EAAMY,OAASM,EAAA,OAAA,CAAMH,MAAO,CAAEI,YAAa,IAAKjB,SAAEF,EAAMY,SAAiB,KAC1EM,EAAA,MAAA,CAAKH,MAAO,CAAEK,KAAM,GAAIlB,SAAEO,IACzBT,EAAMa,MAAQK,EAAA,OAAA,CAAMH,MAAO,CAAEM,WAAY,IAAKnB,SAAEF,EAAMa,QAAgB,OAG7E,CACA,OAAOJ,CACT,MASaa,EAAkB,SAAlBA,EAAmBtB,GAC9B,IAAQC,EAA+ED,EAA/EC,QAASC,EAAsEF,EAAtEE,SAAUU,EAA4DZ,EAA5DY,OAAQC,EAAoDb,EAApDa,MAAOV,EAA6CH,EAA7CG,eAAgBoB,EAA6BvB,EAA7BuB,gBAAoBnB,EAAIC,EAAKL,EAAKwB,GAE5F,OACEN,EAACO,EAAKC,KAAIC,EAAA,CAACC,UAAWL,GAAqBnB,EAAI,CAAAF,SAC5C2B,EAAe3B,GACdgB,EAACnB,EAAuB,CACtBE,QAASA,EACTW,OAAQA,EACRC,MAAOA,EACPV,eAAgBA,EAAeD,SAE9BA,IAGHA,IAIR"}