@vtx/components 4.0.0-beta.6 → 4.0.0-beta.7

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 (447) hide show
  1. package/es/index.js +73 -0
  2. package/es/utils/columnSort.js +23 -0
  3. package/es/utils/components/DropdownFooter/index.js +53 -0
  4. package/es/utils/components/DropdownFooter/style.js +25 -0
  5. package/es/utils/components/ErrorBoundary/index.js +53 -0
  6. package/es/utils/components/FieldLabel/index.js +144 -0
  7. package/es/utils/components/FieldLabel/style.js +93 -0
  8. package/es/utils/components/FilterDropdown/index.js +62 -0
  9. package/es/utils/components/FilterDropdown/style.js +26 -0
  10. package/es/utils/components/InlineErrorFormItem/index.js +156 -0
  11. package/es/utils/components/InlineErrorFormItem/style.js +47 -0
  12. package/es/utils/components/LabelIconTip/index.js +68 -0
  13. package/es/utils/components/LabelIconTip/style.js +47 -0
  14. package/es/utils/components/ProFormContext/index.js +41 -0
  15. package/es/utils/conversionMomentValue/index.js +163 -0
  16. package/es/utils/dateArrayFormatter/index.js +36 -0
  17. package/es/utils/filterSpecialCharacters.js +82 -0
  18. package/es/utils/genColumnKey.js +6 -0
  19. package/es/utils/genCopyable/index.js +59 -0
  20. package/es/utils/getComponentProps.js +7 -0
  21. package/es/utils/getFieldPropsOrFormItemProps/index.js +16 -0
  22. package/es/utils/getPlaceholder.js +5 -0
  23. package/es/utils/getToken.js +6 -0
  24. package/es/utils/hooks/useDebounceFn/index.js +71 -0
  25. package/es/utils/hooks/useDebounceValue/index.js +40 -0
  26. package/es/utils/hooks/useDeepCompareEffect/index.js +24 -0
  27. package/es/utils/hooks/useDeepCompareMemo/index.js +15 -0
  28. package/es/utils/hooks/useDocumentTitle/index.js +10 -0
  29. package/es/utils/hooks/useFetchData/index.js +82 -0
  30. package/es/utils/hooks/useForceRender/index.js +18 -0
  31. package/es/utils/hooks/useLatest/index.js +10 -0
  32. package/es/utils/hooks/usePrevious/index.js +8 -0
  33. package/es/utils/hooks/useReactiveRef/index.js +7 -0
  34. package/es/utils/hooks/useRefCallback/index.js +26 -0
  35. package/es/utils/hooks/useRefFunction/index.js +13 -0
  36. package/es/utils/index.js +73 -0
  37. package/es/utils/isBrowser/index.d.ts +9 -0
  38. package/es/utils/isBrowser/index.js +16 -0
  39. package/es/utils/isDeepEqualReact/index.js +95 -0
  40. package/es/utils/isDropdownValueType/index.js +7 -0
  41. package/es/utils/isFunction.js +3 -0
  42. package/es/utils/isImg/index.js +4 -0
  43. package/es/utils/isNil/index.js +3 -0
  44. package/es/utils/isObject/index.js +3 -0
  45. package/es/utils/isObject.js +3 -0
  46. package/es/utils/isUrl/index.js +17 -0
  47. package/es/utils/merge/index.js +36 -0
  48. package/es/utils/nanoid/index.js +29 -0
  49. package/es/utils/omitBoolean/index.js +11 -0
  50. package/es/utils/omitUndefined/index.js +12 -0
  51. package/es/utils/omitUndefinedAndEmptyArr/index.js +14 -0
  52. package/es/utils/parseValueToMoment/index.js +28 -0
  53. package/es/utils/pickProFormItemProps/index.js +15 -0
  54. package/es/utils/pickProProps/index.js +15 -0
  55. package/es/utils/proFieldParsingText/index.js +161 -0
  56. package/es/utils/runFunction/index.js +10 -0
  57. package/es/utils/sortByGivenOrder.js +36 -0
  58. package/es/utils/sortByKeyArrayExtract.js +38 -0
  59. package/es/utils/stringify/index.js +10 -0
  60. package/es/utils/transformKeySubmitValue/index.js +330 -0
  61. package/es/utils/useColSize.js +20 -0
  62. package/es/utils/useEditableArray/index.js +906 -0
  63. package/es/utils/useEditableMap/index.js +214 -0
  64. package/es/utils/useInterval.js +12 -0
  65. package/es/utils/useMediaQuery/index.js +106 -0
  66. package/es/utils/useMediaQuery/query.js +30 -0
  67. package/es/utils/useMountMergeState/index.js +2 -0
  68. package/es/utils/useSet.js +38 -0
  69. package/es/version.js +3 -0
  70. package/es/vtx-color-picker/index.js +70 -0
  71. package/es/vtx-color-picker/style/index.js +30 -0
  72. package/es/vtx-combogrid/Combogrid.js +247 -0
  73. package/es/vtx-combogrid/index.js +121 -0
  74. package/es/vtx-combogrid/style/index.js +42 -0
  75. package/es/vtx-datagrid/Alert/index.js +49 -0
  76. package/es/vtx-datagrid/Alert/style.js +44 -0
  77. package/es/vtx-datagrid/Store/Provide.js +441 -0
  78. package/es/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +526 -0
  79. package/es/vtx-datagrid/ToolBar/components/ColumnSetting/style.js +86 -0
  80. package/es/vtx-datagrid/ToolBar/components/Density/index.js +48 -0
  81. package/es/vtx-datagrid/ToolBar/components/Fullscreen/index.js +77 -0
  82. package/es/vtx-datagrid/ToolBar/components/TableStyle/index.js +71 -0
  83. package/es/vtx-datagrid/ToolBar/index.js +88 -0
  84. package/es/vtx-datagrid/ToolBar/style.js +59 -0
  85. package/es/vtx-datagrid/index.js +362 -0
  86. package/es/vtx-datagrid/renderColumnButtons.js +98 -0
  87. package/es/vtx-datagrid/style/index.js +80 -0
  88. package/es/vtx-datagrid/style/index.less +242 -0
  89. package/es/vtx-date-picker/QdatePicker.js +152 -0
  90. package/es/vtx-date-picker/generatePicker.js +104 -0
  91. package/es/vtx-date-picker/index.js +49 -0
  92. package/es/vtx-date-picker/style/index.js +39 -0
  93. package/es/vtx-date-picker/style/index.less +39 -0
  94. package/es/vtx-ellipsis-text/index.js +52 -0
  95. package/es/vtx-ellipsis-text/style/index.js +29 -0
  96. package/es/vtx-export/index.js +197 -0
  97. package/es/vtx-export/style/index.js +24 -0
  98. package/es/vtx-export-async/ColumnsSelect.js +63 -0
  99. package/es/vtx-export-async/History.js +256 -0
  100. package/es/vtx-export-async/index.js +402 -0
  101. package/es/vtx-export-async/style/index.js +49 -0
  102. package/es/vtx-export-async/util.js +51 -0
  103. package/es/vtx-form-layout/Card.js +74 -0
  104. package/es/vtx-form-layout/Divider.js +22 -0
  105. package/es/vtx-form-layout/FormItem.js +135 -0
  106. package/es/vtx-form-layout/Pane.js +41 -0
  107. package/es/vtx-form-layout/Row.js +19 -0
  108. package/es/vtx-form-layout/context.js +2 -0
  109. package/es/vtx-form-layout/index.js +80 -0
  110. package/es/vtx-form-layout/style/index.js +261 -0
  111. package/es/vtx-icon/index.js +78 -0
  112. package/es/vtx-icon/svg/alignRightOutlined.js +29 -0
  113. package/es/vtx-icon/svg/columnHeightOutlined.js +25 -0
  114. package/es/vtx-icon/svg/downOutlined.js +24 -0
  115. package/es/vtx-icon/svg/fullscreen.js +25 -0
  116. package/es/vtx-icon/svg/redoOutlined.js +29 -0
  117. package/es/vtx-icon/svg/rightOutlined.js +24 -0
  118. package/es/vtx-icon/svg/settingOutlined.js +29 -0
  119. package/es/vtx-image/Image.js +257 -0
  120. package/es/vtx-image/Preview.js +140 -0
  121. package/es/vtx-image/PreviewGroup.js +81 -0
  122. package/es/vtx-image/index.js +4 -0
  123. package/es/vtx-image/style/index.js +91 -0
  124. package/es/vtx-import/index.js +416 -0
  125. package/es/vtx-import/result.js +81 -0
  126. package/es/vtx-import/style/index.js +19 -0
  127. package/es/vtx-import2/CheckResult.js +45 -0
  128. package/es/vtx-import2/Content.js +103 -0
  129. package/es/vtx-import2/DownloadSvg.js +41 -0
  130. package/es/vtx-import2/ImportResult.js +57 -0
  131. package/es/vtx-import2/UploadSvg.js +41 -0
  132. package/es/vtx-import2/index.js +453 -0
  133. package/es/vtx-import2/style/index.js +99 -0
  134. package/es/vtx-input/TextArea/index.js +61 -0
  135. package/es/vtx-input/TextArea/style.js +30 -0
  136. package/es/vtx-input/index.js +92 -0
  137. package/es/vtx-input/style/index.js +24 -0
  138. package/es/vtx-input/useLength.js +21 -0
  139. package/es/vtx-modal/Title.js +34 -0
  140. package/es/vtx-modal/index.js +243 -0
  141. package/es/vtx-modal/style/index.js +109 -0
  142. package/es/vtx-page-layout/Basic.js +28 -0
  143. package/es/vtx-page-layout/Content.js +43 -0
  144. package/es/vtx-page-layout/Pane.js +40 -0
  145. package/es/vtx-page-layout/TabLayout.js +65 -0
  146. package/es/vtx-page-layout/TableLayout.js +163 -0
  147. package/es/vtx-page-layout/TableWrap.js +36 -0
  148. package/es/vtx-page-layout/TreeLayout.js +79 -0
  149. package/es/vtx-page-layout/container.js +68 -0
  150. package/es/vtx-page-layout/index.js +26 -0
  151. package/es/vtx-page-layout/style/index.js +129 -0
  152. package/es/vtx-provider/index.js +315 -0
  153. package/es/vtx-provider/intl.js +140 -0
  154. package/es/vtx-provider/locale/ar_EG.js +71 -0
  155. package/es/vtx-provider/locale/ca_ES.js +71 -0
  156. package/es/vtx-provider/locale/cs_CZ.js +74 -0
  157. package/es/vtx-provider/locale/de_DE.js +71 -0
  158. package/es/vtx-provider/locale/en_GB.js +73 -0
  159. package/es/vtx-provider/locale/en_US.js +181 -0
  160. package/es/vtx-provider/locale/es_ES.js +71 -0
  161. package/es/vtx-provider/locale/fa_IR.js +71 -0
  162. package/es/vtx-provider/locale/fr_FR.js +71 -0
  163. package/es/vtx-provider/locale/he_IL.js +74 -0
  164. package/es/vtx-provider/locale/hr_HR.js +71 -0
  165. package/es/vtx-provider/locale/id_ID.js +71 -0
  166. package/es/vtx-provider/locale/it_IT.js +71 -0
  167. package/es/vtx-provider/locale/ja_JP.js +71 -0
  168. package/es/vtx-provider/locale/ko_KR.js +71 -0
  169. package/es/vtx-provider/locale/mn_MN.js +71 -0
  170. package/es/vtx-provider/locale/ms_MY.js +71 -0
  171. package/es/vtx-provider/locale/nl_NL.js +74 -0
  172. package/es/vtx-provider/locale/pl_PL.js +71 -0
  173. package/es/vtx-provider/locale/pt_BR.js +71 -0
  174. package/es/vtx-provider/locale/ro_RO.js +74 -0
  175. package/es/vtx-provider/locale/ru_RU.js +71 -0
  176. package/es/vtx-provider/locale/sk_SK.js +74 -0
  177. package/es/vtx-provider/locale/sr_RS.js +71 -0
  178. package/es/vtx-provider/locale/sv_SE.js +74 -0
  179. package/es/vtx-provider/locale/th_TH.js +74 -0
  180. package/es/vtx-provider/locale/tr_TR.js +71 -0
  181. package/es/vtx-provider/locale/uk_UA.js +74 -0
  182. package/es/vtx-provider/locale/uz_UZ.js +71 -0
  183. package/es/vtx-provider/locale/vi_VN.js +71 -0
  184. package/es/vtx-provider/locale/zh_CN.js +183 -0
  185. package/es/vtx-provider/locale/zh_HK.js +83 -0
  186. package/es/vtx-provider/locale/zh_TW.js +74 -0
  187. package/es/vtx-provider/typing/layoutToken.js +60 -0
  188. package/es/vtx-provider/useStyle/index.js +106 -0
  189. package/es/vtx-provider/utils/merge.js +27 -0
  190. package/es/vtx-rps-frame/index.js +164 -0
  191. package/es/vtx-rps-frame/style/index.js +26 -0
  192. package/es/vtx-scrollable-row/index.js +183 -0
  193. package/es/vtx-scrollable-row/style/index.js +108 -0
  194. package/es/vtx-search/index.js +350 -0
  195. package/es/vtx-search/style/index.js +94 -0
  196. package/es/vtx-select/index.js +252 -0
  197. package/es/vtx-select/style/index.js +75 -0
  198. package/es/vtx-signature/index.js +119 -0
  199. package/es/vtx-signature/style/index.js +47 -0
  200. package/es/vtx-split-pane/Resizer.js +47 -0
  201. package/es/vtx-split-pane/SplitPane.js +60 -0
  202. package/es/vtx-split-pane/index.js +3 -0
  203. package/es/vtx-split-pane/style/index.js +133 -0
  204. package/es/vtx-statistics-column/Back.js +27 -0
  205. package/es/vtx-statistics-column/Item.js +54 -0
  206. package/es/vtx-statistics-column/Total.js +54 -0
  207. package/es/vtx-statistics-column/context.js +2 -0
  208. package/es/vtx-statistics-column/index.js +54 -0
  209. package/es/vtx-statistics-column/style/index.js +72 -0
  210. package/es/vtx-time-picker/index.js +37 -0
  211. package/es/vtx-time-picker/style/index.js +0 -0
  212. package/es/vtx-tree/index.js +341 -0
  213. package/es/vtx-tree/style/index.js +50 -0
  214. package/es/vtx-tree/utils.js +73 -0
  215. package/es/vtx-tree-select/index.js +290 -0
  216. package/es/vtx-tree-select/style/index.js +72 -0
  217. package/es/vtx-upload/FilePreview.js +111 -0
  218. package/es/vtx-upload/index.js +468 -0
  219. package/es/vtx-upload/style/index.js +83 -0
  220. package/es/vtx-wang-editor/index.js +245 -0
  221. package/es/vtx-wang-editor/style/index.js +33 -0
  222. package/es/vtx-wang-editor/style/index.less +12 -0
  223. package/es/vtx-wang-editor/wangEditorUtil.js +226 -0
  224. package/lib/index.js +363 -0
  225. package/lib/utils/columnSort.js +29 -0
  226. package/lib/utils/components/DropdownFooter/index.js +62 -0
  227. package/lib/utils/components/DropdownFooter/style.js +31 -0
  228. package/lib/utils/components/ErrorBoundary/index.js +59 -0
  229. package/lib/utils/components/FieldLabel/index.js +152 -0
  230. package/lib/utils/components/FieldLabel/style.js +99 -0
  231. package/lib/utils/components/FilterDropdown/index.js +70 -0
  232. package/lib/utils/components/FilterDropdown/style.js +32 -0
  233. package/lib/utils/components/InlineErrorFormItem/index.js +162 -0
  234. package/lib/utils/components/InlineErrorFormItem/style.js +53 -0
  235. package/lib/utils/components/LabelIconTip/index.js +73 -0
  236. package/lib/utils/components/LabelIconTip/style.js +53 -0
  237. package/lib/utils/components/ProFormContext/index.js +48 -0
  238. package/lib/utils/conversionMomentValue/index.js +170 -0
  239. package/lib/utils/dateArrayFormatter/index.js +43 -0
  240. package/lib/utils/filterSpecialCharacters.js +89 -0
  241. package/lib/utils/genColumnKey.js +12 -0
  242. package/lib/utils/genCopyable/index.js +66 -0
  243. package/lib/utils/getComponentProps.js +13 -0
  244. package/lib/utils/getFieldPropsOrFormItemProps/index.js +21 -0
  245. package/lib/utils/getPlaceholder.js +11 -0
  246. package/lib/utils/getToken.js +12 -0
  247. package/lib/utils/hooks/useDebounceFn/index.js +77 -0
  248. package/lib/utils/hooks/useDebounceValue/index.js +45 -0
  249. package/lib/utils/hooks/useDeepCompareEffect/index.js +33 -0
  250. package/lib/utils/hooks/useDeepCompareMemo/index.js +21 -0
  251. package/lib/utils/hooks/useDocumentTitle/index.js +16 -0
  252. package/lib/utils/hooks/useFetchData/index.js +89 -0
  253. package/lib/utils/hooks/useForceRender/index.js +24 -0
  254. package/lib/utils/hooks/useLatest/index.js +15 -0
  255. package/lib/utils/hooks/usePrevious/index.js +14 -0
  256. package/lib/utils/hooks/useReactiveRef/index.js +14 -0
  257. package/lib/utils/hooks/useRefCallback/index.js +31 -0
  258. package/lib/utils/hooks/useRefFunction/index.js +18 -0
  259. package/lib/utils/index.js +436 -0
  260. package/lib/utils/isBrowser/index.d.ts +9 -0
  261. package/lib/utils/isBrowser/index.js +22 -0
  262. package/lib/utils/isDeepEqualReact/index.js +101 -0
  263. package/lib/utils/isDropdownValueType/index.js +13 -0
  264. package/lib/utils/isFunction.js +9 -0
  265. package/lib/utils/isImg/index.js +10 -0
  266. package/lib/utils/isNil/index.js +9 -0
  267. package/lib/utils/isObject/index.js +9 -0
  268. package/lib/utils/isObject.js +9 -0
  269. package/lib/utils/isUrl/index.js +23 -0
  270. package/lib/utils/merge/index.js +41 -0
  271. package/lib/utils/nanoid/index.js +35 -0
  272. package/lib/utils/omitBoolean/index.js +17 -0
  273. package/lib/utils/omitUndefined/index.js +18 -0
  274. package/lib/utils/omitUndefinedAndEmptyArr/index.js +20 -0
  275. package/lib/utils/parseValueToMoment/index.js +35 -0
  276. package/lib/utils/pickProFormItemProps/index.js +21 -0
  277. package/lib/utils/pickProProps/index.js +21 -0
  278. package/lib/utils/proFieldParsingText/index.js +166 -0
  279. package/lib/utils/runFunction/index.js +16 -0
  280. package/lib/utils/sortByGivenOrder.js +42 -0
  281. package/lib/utils/sortByKeyArrayExtract.js +44 -0
  282. package/lib/utils/stringify/index.js +21 -0
  283. package/lib/utils/transformKeySubmitValue/index.js +337 -0
  284. package/lib/utils/useColSize.js +26 -0
  285. package/lib/utils/useEditableArray/index.js +918 -0
  286. package/lib/utils/useEditableMap/index.js +219 -0
  287. package/lib/utils/useInterval.js +18 -0
  288. package/lib/utils/useMediaQuery/index.js +112 -0
  289. package/lib/utils/useMediaQuery/query.js +36 -0
  290. package/lib/utils/useMountMergeState/index.js +12 -0
  291. package/lib/utils/useSet.js +43 -0
  292. package/lib/version.js +9 -0
  293. package/lib/vtx-color-picker/index.js +77 -0
  294. package/lib/vtx-color-picker/style/index.js +36 -0
  295. package/lib/vtx-combogrid/Combogrid.js +255 -0
  296. package/lib/vtx-combogrid/index.js +129 -0
  297. package/lib/vtx-combogrid/style/index.js +48 -0
  298. package/lib/vtx-datagrid/Alert/index.js +57 -0
  299. package/lib/vtx-datagrid/Alert/style.js +50 -0
  300. package/lib/vtx-datagrid/Store/Provide.js +446 -0
  301. package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +531 -0
  302. package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/style.js +92 -0
  303. package/lib/vtx-datagrid/ToolBar/components/Density/index.js +54 -0
  304. package/lib/vtx-datagrid/ToolBar/components/Fullscreen/index.js +83 -0
  305. package/lib/vtx-datagrid/ToolBar/components/TableStyle/index.js +77 -0
  306. package/lib/vtx-datagrid/ToolBar/index.js +96 -0
  307. package/lib/vtx-datagrid/ToolBar/style.js +65 -0
  308. package/lib/vtx-datagrid/index.js +370 -0
  309. package/lib/vtx-datagrid/renderColumnButtons.js +104 -0
  310. package/lib/vtx-datagrid/style/index.js +86 -0
  311. package/lib/vtx-datagrid/style/index.less +242 -0
  312. package/lib/vtx-date-picker/QdatePicker.js +157 -0
  313. package/lib/vtx-date-picker/generatePicker.js +111 -0
  314. package/lib/vtx-date-picker/index.js +55 -0
  315. package/lib/vtx-date-picker/style/index.js +45 -0
  316. package/lib/vtx-date-picker/style/index.less +39 -0
  317. package/lib/vtx-ellipsis-text/index.js +60 -0
  318. package/lib/vtx-ellipsis-text/style/index.js +35 -0
  319. package/lib/vtx-export/index.js +203 -0
  320. package/lib/vtx-export/style/index.js +30 -0
  321. package/lib/vtx-export-async/ColumnsSelect.js +69 -0
  322. package/lib/vtx-export-async/History.js +264 -0
  323. package/lib/vtx-export-async/index.js +409 -0
  324. package/lib/vtx-export-async/style/index.js +55 -0
  325. package/lib/vtx-export-async/util.js +57 -0
  326. package/lib/vtx-form-layout/Card.js +83 -0
  327. package/lib/vtx-form-layout/Divider.js +31 -0
  328. package/lib/vtx-form-layout/FormItem.js +141 -0
  329. package/lib/vtx-form-layout/Pane.js +50 -0
  330. package/lib/vtx-form-layout/Row.js +26 -0
  331. package/lib/vtx-form-layout/context.js +8 -0
  332. package/lib/vtx-form-layout/index.js +89 -0
  333. package/lib/vtx-form-layout/style/index.js +267 -0
  334. package/lib/vtx-icon/index.js +90 -0
  335. package/lib/vtx-icon/svg/alignRightOutlined.js +34 -0
  336. package/lib/vtx-icon/svg/columnHeightOutlined.js +31 -0
  337. package/lib/vtx-icon/svg/downOutlined.js +30 -0
  338. package/lib/vtx-icon/svg/fullscreen.js +31 -0
  339. package/lib/vtx-icon/svg/redoOutlined.js +34 -0
  340. package/lib/vtx-icon/svg/rightOutlined.js +30 -0
  341. package/lib/vtx-icon/svg/settingOutlined.js +34 -0
  342. package/lib/vtx-image/Image.js +264 -0
  343. package/lib/vtx-image/Preview.js +146 -0
  344. package/lib/vtx-image/PreviewGroup.js +91 -0
  345. package/lib/vtx-image/index.js +31 -0
  346. package/lib/vtx-image/style/index.js +97 -0
  347. package/lib/vtx-import/index.js +424 -0
  348. package/lib/vtx-import/result.js +88 -0
  349. package/lib/vtx-import/style/index.js +25 -0
  350. package/lib/vtx-import2/CheckResult.js +50 -0
  351. package/lib/vtx-import2/Content.js +112 -0
  352. package/lib/vtx-import2/DownloadSvg.js +47 -0
  353. package/lib/vtx-import2/ImportResult.js +62 -0
  354. package/lib/vtx-import2/UploadSvg.js +47 -0
  355. package/lib/vtx-import2/index.js +458 -0
  356. package/lib/vtx-import2/style/index.js +105 -0
  357. package/lib/vtx-input/TextArea/index.js +70 -0
  358. package/lib/vtx-input/TextArea/style.js +36 -0
  359. package/lib/vtx-input/index.js +100 -0
  360. package/lib/vtx-input/style/index.js +30 -0
  361. package/lib/vtx-input/useLength.js +27 -0
  362. package/lib/vtx-modal/Title.js +42 -0
  363. package/lib/vtx-modal/index.js +249 -0
  364. package/lib/vtx-modal/style/index.js +115 -0
  365. package/lib/vtx-page-layout/Basic.js +36 -0
  366. package/lib/vtx-page-layout/Content.js +50 -0
  367. package/lib/vtx-page-layout/Pane.js +47 -0
  368. package/lib/vtx-page-layout/TabLayout.js +70 -0
  369. package/lib/vtx-page-layout/TableLayout.js +172 -0
  370. package/lib/vtx-page-layout/TableWrap.js +43 -0
  371. package/lib/vtx-page-layout/TreeLayout.js +84 -0
  372. package/lib/vtx-page-layout/container.js +74 -0
  373. package/lib/vtx-page-layout/index.js +32 -0
  374. package/lib/vtx-page-layout/style/index.js +136 -0
  375. package/lib/vtx-provider/index.js +351 -0
  376. package/lib/vtx-provider/intl.js +145 -0
  377. package/lib/vtx-provider/locale/ar_EG.js +77 -0
  378. package/lib/vtx-provider/locale/ca_ES.js +77 -0
  379. package/lib/vtx-provider/locale/cs_CZ.js +80 -0
  380. package/lib/vtx-provider/locale/de_DE.js +77 -0
  381. package/lib/vtx-provider/locale/en_GB.js +79 -0
  382. package/lib/vtx-provider/locale/en_US.js +187 -0
  383. package/lib/vtx-provider/locale/es_ES.js +77 -0
  384. package/lib/vtx-provider/locale/fa_IR.js +77 -0
  385. package/lib/vtx-provider/locale/fr_FR.js +77 -0
  386. package/lib/vtx-provider/locale/he_IL.js +80 -0
  387. package/lib/vtx-provider/locale/hr_HR.js +77 -0
  388. package/lib/vtx-provider/locale/id_ID.js +77 -0
  389. package/lib/vtx-provider/locale/it_IT.js +77 -0
  390. package/lib/vtx-provider/locale/ja_JP.js +77 -0
  391. package/lib/vtx-provider/locale/ko_KR.js +77 -0
  392. package/lib/vtx-provider/locale/mn_MN.js +77 -0
  393. package/lib/vtx-provider/locale/ms_MY.js +77 -0
  394. package/lib/vtx-provider/locale/nl_NL.js +80 -0
  395. package/lib/vtx-provider/locale/pl_PL.js +77 -0
  396. package/lib/vtx-provider/locale/pt_BR.js +77 -0
  397. package/lib/vtx-provider/locale/ro_RO.js +80 -0
  398. package/lib/vtx-provider/locale/ru_RU.js +77 -0
  399. package/lib/vtx-provider/locale/sk_SK.js +80 -0
  400. package/lib/vtx-provider/locale/sr_RS.js +77 -0
  401. package/lib/vtx-provider/locale/sv_SE.js +80 -0
  402. package/lib/vtx-provider/locale/th_TH.js +80 -0
  403. package/lib/vtx-provider/locale/tr_TR.js +77 -0
  404. package/lib/vtx-provider/locale/uk_UA.js +80 -0
  405. package/lib/vtx-provider/locale/uz_UZ.js +77 -0
  406. package/lib/vtx-provider/locale/vi_VN.js +77 -0
  407. package/lib/vtx-provider/locale/zh_CN.js +189 -0
  408. package/lib/vtx-provider/locale/zh_HK.js +89 -0
  409. package/lib/vtx-provider/locale/zh_TW.js +80 -0
  410. package/lib/vtx-provider/typing/layoutToken.js +66 -0
  411. package/lib/vtx-provider/useStyle/index.js +112 -0
  412. package/lib/vtx-provider/utils/merge.js +33 -0
  413. package/lib/vtx-rps-frame/index.js +173 -0
  414. package/lib/vtx-rps-frame/style/index.js +32 -0
  415. package/lib/vtx-scrollable-row/index.js +193 -0
  416. package/lib/vtx-scrollable-row/style/index.js +114 -0
  417. package/lib/vtx-search/index.js +355 -0
  418. package/lib/vtx-search/style/index.js +101 -0
  419. package/lib/vtx-select/index.js +259 -0
  420. package/lib/vtx-select/style/index.js +81 -0
  421. package/lib/vtx-signature/index.js +127 -0
  422. package/lib/vtx-signature/style/index.js +53 -0
  423. package/lib/vtx-split-pane/Resizer.js +52 -0
  424. package/lib/vtx-split-pane/SplitPane.js +68 -0
  425. package/lib/vtx-split-pane/index.js +15 -0
  426. package/lib/vtx-split-pane/style/index.js +139 -0
  427. package/lib/vtx-statistics-column/Back.js +36 -0
  428. package/lib/vtx-statistics-column/Item.js +62 -0
  429. package/lib/vtx-statistics-column/Total.js +62 -0
  430. package/lib/vtx-statistics-column/context.js +8 -0
  431. package/lib/vtx-statistics-column/index.js +63 -0
  432. package/lib/vtx-statistics-column/style/index.js +78 -0
  433. package/lib/vtx-time-picker/index.js +45 -0
  434. package/lib/vtx-time-picker/style/index.js +1 -0
  435. package/lib/vtx-tree/index.js +348 -0
  436. package/lib/vtx-tree/style/index.js +56 -0
  437. package/lib/vtx-tree/utils.js +80 -0
  438. package/lib/vtx-tree-select/index.js +296 -0
  439. package/lib/vtx-tree-select/style/index.js +78 -0
  440. package/lib/vtx-upload/FilePreview.js +116 -0
  441. package/lib/vtx-upload/index.js +474 -0
  442. package/lib/vtx-upload/style/index.js +89 -0
  443. package/lib/vtx-wang-editor/index.js +251 -0
  444. package/lib/vtx-wang-editor/style/index.js +39 -0
  445. package/lib/vtx-wang-editor/style/index.less +12 -0
  446. package/lib/vtx-wang-editor/wangEditorUtil.js +236 -0
  447. package/package.json +1 -2
@@ -0,0 +1,261 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { useStyle as useAntdStyle } from "../../vtx-provider";
8
+ var genVtxFormLayoutStyle = function genVtxFormLayoutStyle(token) {
9
+ var _componentCls;
10
+ var componentCls = token.componentCls;
11
+ return _defineProperty({}, componentCls, (_componentCls = {
12
+ position: 'relative',
13
+ display: "flex",
14
+ flexFlow: "row wrap",
15
+ overflow: "hidden",
16
+ width: '100%'
17
+ }, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_componentCls, "".concat(componentCls, "-item"), {
18
+ '.ant-form-item-label': {
19
+ textOverflow: 'ellipsis',
20
+ 'label > span': {
21
+ textOverflow: 'ellipsis',
22
+ overflow: 'hidden'
23
+ }
24
+ },
25
+ '.ant-form-item-control': {
26
+ 'img': {
27
+ borderRadius: token.borderRadius
28
+ },
29
+ '.ant-select,.ant-input-number': {
30
+ width: "100%"
31
+ },
32
+ '.ant-radio-group': {
33
+ paddingLeft: 10
34
+ }
35
+ },
36
+ '&-vertical': {
37
+ flexDirection: 'column',
38
+ '.ant-form-item-row': {
39
+ flexDirection: 'column',
40
+ marginBottom: 20
41
+ },
42
+ '.ant-form-item-label, .ant-form-item-control': {
43
+ lineHeight: token.lineHeight,
44
+ flex: 'none'
45
+ },
46
+ '.ant-form-item-label': {
47
+ marginBottom: 8,
48
+ padding: '0 !important',
49
+ whiteSpace: 'initial',
50
+ textAlign: 'left',
51
+ label: {
52
+ height: 'auto',
53
+ whiteSpace: 'nowrap'
54
+ },
55
+ 'label::after': {
56
+ content: "''"
57
+ }
58
+ }
59
+ },
60
+ '.ant-form-item-explain': {
61
+ fontSize: token.fontSizeSM
62
+ },
63
+ '&--inline': {
64
+ flex: 'none',
65
+ flexDirection: 'row',
66
+ flexWrap: 'nowrap',
67
+ marginRight: '16px',
68
+ marginBottom: '16px !important',
69
+ rowGap: 0,
70
+ '.ant-form-item-control-input': {
71
+ minHeight: 'auto'
72
+ },
73
+ '.ant-form-item-label': {
74
+ flex: 'none',
75
+ marginBottom: 0,
76
+ '& > label ': {
77
+ height: 'auto',
78
+ color: token.colorTextSecondary
79
+ },
80
+ 'label::after': {
81
+ content: "':'"
82
+ }
83
+ }
84
+ },
85
+ '&--view': {
86
+ '.ant-row': {
87
+ flexWrap: 'nowrap'
88
+ },
89
+ '.ant-form-item-label, .ant-form-item-control': {
90
+ lineHeight: token.lineHeight
91
+ },
92
+ '.ant-form-item-label': {
93
+ flex: 'none',
94
+ width: 'fit-content',
95
+ '& > label': {
96
+ height: 'auto',
97
+ color: token.colorTextSecondary
98
+ },
99
+ 'label::after': {
100
+ content: "':'"
101
+ }
102
+ },
103
+ '.ant-form-item-control': {
104
+ color: token.colorText,
105
+ flex: 1,
106
+ '.ant-form-item-control-input': {
107
+ minHeight: 'auto'
108
+ }
109
+ }
110
+ }
111
+ }), "".concat(componentCls, "-item-col"), _defineProperty(_defineProperty({
112
+ '.ant-form-item': {
113
+ marginBottom: 20
114
+ }
115
+ }, "".concat(componentCls, "-item--view"), {
116
+ marginBottom: 0
117
+ }), '.ant-form-item-explain', {
118
+ minHeight: 20
119
+ })), '&-card', {
120
+ position: 'relative',
121
+ width: '100%',
122
+ overflow: 'hidden',
123
+ '&-expand-icon': {
124
+ color: "fade(".concat(token.colorTextDescription, ", 75%)"),
125
+ transition: 'transform 0.24s'
126
+ },
127
+ '&-custom-icon': {
128
+ transition: 'transform 0.24s',
129
+ cursor: 'pointer'
130
+ },
131
+ '.ant-card-body': {
132
+ padding: 0
133
+ },
134
+ '.ant-card-head': {
135
+ height: '44px'
136
+ },
137
+ '.ant-card-head-wrapper, .ant-card-head-title': {
138
+ fontWeight: '600',
139
+ lineHeight: 1,
140
+ color: token.colorPrimary,
141
+ position: 'relative',
142
+ fontSize: 16
143
+ },
144
+ '.ant-card-extra': {
145
+ color: token.colorTextSecondary
146
+ },
147
+ '.ant-card-head-title': {
148
+ paddingLeft: '10px !important',
149
+ display: 'flex',
150
+ alignItems: 'center'
151
+ },
152
+ '.ant-card-head-wrapper::before': {
153
+ position: 'absolute',
154
+ top: '50%',
155
+ left: '0px',
156
+ content: "''",
157
+ width: '3px',
158
+ height: '14px',
159
+ background: 'linear-gradient( 180deg, #00A6FF 0%, #3A6DFF 100%)',
160
+ transform: 'translate(0, -50%)'
161
+ },
162
+ '&-content': {
163
+ display: 'flex',
164
+ flexFlow: 'row wrap',
165
+ padding: '20px 20px',
166
+ paddingBottom: 0,
167
+ '&::after': {
168
+ clear: 'both'
169
+ },
170
+ '&::before, &::after': {
171
+ display: 'table',
172
+ content: "''"
173
+ }
174
+ },
175
+ '&-content-hide': {
176
+ display: 'none'
177
+ }
178
+ }), '&-card + &-card', {
179
+ marginTop: '16px'
180
+ }), '&-pane', {
181
+ position: 'relative',
182
+ boxSizing: 'border-box',
183
+ width: '100%',
184
+ backgroundColor: token.colorBgContainer,
185
+ '.ant-collapse-header, .ant-collapse-content-box': {
186
+ padding: "0px 0px 0px 10px !important"
187
+ },
188
+ '&::after': {
189
+ clear: 'both'
190
+ },
191
+ '&::before, &::after': {
192
+ display: 'table',
193
+ content: "''"
194
+ },
195
+ '&-title': {
196
+ marginBottom: '16px',
197
+ overflow: 'hidden',
198
+ color: token.colorText,
199
+ fontWeight: '500',
200
+ lineHeight: token.lineHeight,
201
+ listStyle: 'none'
202
+ },
203
+ '&-content': {
204
+ display: 'flex',
205
+ flexFlow: 'row wrap',
206
+ '&::after': {
207
+ clear: 'both'
208
+ },
209
+ '&::before, &::after': {
210
+ display: 'table',
211
+ content: "''"
212
+ }
213
+ }
214
+ }), '&-divider', {
215
+ margin: 0,
216
+ marginBottom: '20px',
217
+ '&--small': {
218
+ marginBottom: '16px'
219
+ }
220
+ }), '&-tabs', {
221
+ width: '100%',
222
+ '.ant-tabs-bar': {
223
+ paddingRight: token.paddingSM,
224
+ paddingLeft: token.paddingSM,
225
+ borderBottom: 'none'
226
+ },
227
+ '.ant-tabs-tab': {
228
+ padding: '5px 0 10px 0'
229
+ }
230
+ }), "".concat(componentCls, "-card-content"), {
231
+ // padding: `20px 0`,
232
+ }), '&-vertical', _defineProperty(_defineProperty(_defineProperty({}, "".concat(componentCls, "-item-col"), {
233
+ paddingRight: 10,
234
+ paddingLeft: 10
235
+ }), "".concat(componentCls, "-card-content"), {
236
+ padding: "20px 0",
237
+ paddingBottom: 0
238
+ }), "".concat(componentCls, "-pane-title"), {
239
+ padding: "0 ".concat(token.paddingSM)
240
+ })), '&-has-card', _defineProperty({
241
+ padding: 0,
242
+ width: '100%',
243
+ '.ant-tabs': {
244
+ width: "100%"
245
+ }
246
+ }, "".concat(componentCls, "-tabs .ant-tabs-bar"), {
247
+ padding: "0 ".concat(token.paddingLG)
248
+ })), _defineProperty(_componentCls, '&-view', _defineProperty(_defineProperty({}, "".concat(componentCls, "-item-col"), {
249
+ marginBottom: '16px'
250
+ }), "".concat(componentCls, "-divider"), {
251
+ marginBottom: '16px'
252
+ }))));
253
+ };
254
+ export function useStyle(prefixCls) {
255
+ return useAntdStyle(prefixCls, function (token) {
256
+ var vtxFormLayoutToken = _objectSpread(_objectSpread({}, token), {}, {
257
+ componentCls: ".".concat(prefixCls)
258
+ });
259
+ return [genVtxFormLayoutStyle(vtxFormLayoutToken)];
260
+ });
261
+ }
@@ -0,0 +1,78 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ var _excluded = ["type", "size", "className", "style", "color", "fileType"];
3
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
4
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
5
+ 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; }
6
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
7
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
8
+ 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; }
9
+ 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; }
10
+ import { lazy, memo, Suspense, useMemo } from 'react';
11
+ import { jsx as _jsx } from "react/jsx-runtime";
12
+ import { Fragment as _Fragment } from "react/jsx-runtime";
13
+ var VtxIcon = /*#__PURE__*/memo(function (_ref) {
14
+ var type = _ref.type,
15
+ _ref$size = _ref.size,
16
+ size = _ref$size === void 0 ? 16 : _ref$size,
17
+ _ref$className = _ref.className,
18
+ className = _ref$className === void 0 ? '' : _ref$className,
19
+ _ref$style = _ref.style,
20
+ style = _ref$style === void 0 ? {} : _ref$style,
21
+ color = _ref.color,
22
+ _ref$fileType = _ref.fileType,
23
+ fileType = _ref$fileType === void 0 ? 'webp' : _ref$fileType,
24
+ props = _objectWithoutProperties(_ref, _excluded);
25
+ var width = props.width || size;
26
+ var height = props.height || size;
27
+ if (!type) {
28
+ return null;
29
+ }
30
+ var SvgComponent = useMemo(function () {
31
+ // 动态导入并缓存结果
32
+ return /*#__PURE__*/lazy(function () {
33
+ return import( /* @vite-ignore */"./svg/".concat(type, ".js"));
34
+ });
35
+ }, [type]);
36
+
37
+ // 默认返回空元素
38
+ if (fileType == 'svg') {
39
+ try {
40
+ // const SvgComponent = lazy(() => import(`./svg/${type}.js`));
41
+ return /*#__PURE__*/_jsx(Suspense, {
42
+ fallback: /*#__PURE__*/_jsx("div", {
43
+ style: _objectSpread({
44
+ width: width,
45
+ height: height
46
+ }, style)
47
+ }),
48
+ children: /*#__PURE__*/_jsx(SvgComponent, _objectSpread({
49
+ className: className,
50
+ style: _objectSpread({
51
+ width: width,
52
+ height: height
53
+ }, style),
54
+ fill: color
55
+ }, props))
56
+ });
57
+ } catch (error) {
58
+ // 如果动态导入失败,返回空的 SVG 元素
59
+ return /*#__PURE__*/_jsx("svg", _objectSpread({
60
+ width: width,
61
+ height: height,
62
+ style: style,
63
+ className: className
64
+ }, props));
65
+ }
66
+ } else {
67
+ return (
68
+ /*#__PURE__*/
69
+ // <img
70
+ // src={require(`./assets/${type}.${fileType}`)}
71
+ // style={{ width, height, ...style }}
72
+ // />
73
+ _jsx(_Fragment, {})
74
+ );
75
+ }
76
+ });
77
+ export { VtxIcon };
78
+ export default VtxIcon;
@@ -0,0 +1,29 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ import { jsxs as _jsxs } from "react/jsx-runtime";
9
+ var alignRightOutlined = function alignRightOutlined(_ref) {
10
+ var style = _ref.style;
11
+ return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
12
+ width: "16",
13
+ height: "16",
14
+ viewBox: "0 0 16 16",
15
+ fill: "none",
16
+ xmlns: "http://www.w3.org/2000/svg"
17
+ }, style), {}, {
18
+ children: /*#__PURE__*/_jsxs("g", {
19
+ children: [/*#__PURE__*/_jsx("path", {
20
+ d: "M2.71405 3.22457H15.3007C15.4836 3.22119 15.6576 3.1552 15.7856 3.04076C15.9136 2.92631 15.9853 2.77252 15.9853 2.61235C15.9853 2.45218 15.9136 2.29839 15.7856 2.18394C15.6576 2.0695 15.4836 2.00351 15.3007 2.00014H2.71405C2.621 1.99842 2.52849 2.01298 2.44195 2.04298C2.3554 2.07297 2.27657 2.11779 2.21006 2.17481C2.14356 2.23183 2.09072 2.2999 2.05465 2.37504C2.01858 2.45017 2 2.53085 2 2.61235C2 2.69385 2.01858 2.77453 2.05465 2.84967C2.09072 2.9248 2.14356 2.99287 2.21006 3.04989C2.27657 3.10691 2.3554 3.15173 2.44195 3.18172C2.52849 3.21172 2.621 3.22628 2.71405 3.22457ZM9.00753 6.8984H15.3004C15.4858 6.8984 15.6637 6.83388 15.7949 6.71905C15.926 6.60421 15.9997 6.44845 15.9997 6.28605C15.9997 6.12364 15.926 5.96789 15.7949 5.85305C15.6637 5.73821 15.4858 5.6737 15.3004 5.6737H9.00691C8.82144 5.6737 8.64356 5.73821 8.51242 5.85305C8.38127 5.96789 8.3076 6.12364 8.3076 6.28605C8.3076 6.44845 8.38127 6.60421 8.51242 6.71905C8.64356 6.83388 8.82206 6.8984 9.00753 6.8984ZM2.71405 10.5722H15.3007C15.4862 10.5722 15.664 10.5077 15.7952 10.3929C15.9263 10.278 16 10.1223 16 9.95988C16 9.79748 15.9263 9.64172 15.7952 9.52689C15.664 9.41205 15.4862 9.34753 15.3007 9.34753H2.71405C2.52859 9.34753 2.35071 9.41205 2.21957 9.52689C2.08842 9.64172 2.01475 9.79748 2.01475 9.95988C2.01475 10.1223 2.08842 10.278 2.21957 10.3929C2.35071 10.5077 2.52859 10.5722 2.71405 10.5722Z",
21
+ fill: "currentColor"
22
+ }), /*#__PURE__*/_jsx("path", {
23
+ d: "M9.00784 14H15.3007C15.4862 14 15.664 13.9355 15.7952 13.8206C15.9263 13.7058 16 13.5501 16 13.3877C16 13.2252 15.9263 13.0695 15.7952 12.9547C15.664 12.8398 15.4862 12.7753 15.3007 12.7753H9.00722C8.82175 12.7753 8.64388 12.8398 8.51273 12.9547C8.38158 13.0695 8.30791 13.2252 8.30791 13.3877C8.30791 13.5501 8.38158 13.7058 8.51273 13.8206C8.64388 13.9355 8.82237 14 9.00784 14Z",
24
+ fill: "currentColor"
25
+ })]
26
+ })
27
+ }));
28
+ };
29
+ export default alignRightOutlined;
@@ -0,0 +1,25 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ var columnHeightOutlined = function columnHeightOutlined(_ref) {
9
+ var style = _ref.style;
10
+ return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
11
+ width: "16",
12
+ height: "16",
13
+ viewBox: "0 0 16 16",
14
+ fill: "none",
15
+ xmlns: "http://www.w3.org/2000/svg"
16
+ }, style), {}, {
17
+ children: /*#__PURE__*/_jsx("g", {
18
+ children: /*#__PURE__*/_jsx("path", {
19
+ d: "M13.8571 13.67H2.14286C2.06429 13.67 2 13.733 2 13.81V14.86C2 14.937 2.06429 15 2.14286 15H13.8571C13.9357 15 14 14.937 14 14.86V13.81C14 13.733 13.9357 13.67 13.8571 13.67ZM13.8571 1H2.14286C2.06429 1 2 1.063 2 1.14V2.19C2 2.267 2.06429 2.33 2.14286 2.33H13.8571C13.9357 2.33 14 2.267 14 2.19V1.14C14 1.063 13.9357 1 13.8571 1ZM9.76429 5.655C9.87143 5.655 9.93214 5.5325 9.86607 5.45025L8.06607 3.21725C8.01429 3.1525 7.91429 3.1525 7.86429 3.21725L6.06429 5.45025C5.99821 5.5325 6.05714 5.655 6.16607 5.655H7.35714V10.345H6.23571C6.12857 10.345 6.06786 10.4675 6.13393 10.5498L7.93393 12.781C7.98571 12.8457 8.08571 12.8457 8.13571 12.781L9.93572 10.5498C10.0018 10.4675 9.94286 10.345 9.83393 10.345H8.64286V5.655H9.76429Z",
20
+ fill: "currentColor"
21
+ })
22
+ })
23
+ }));
24
+ };
25
+ export default columnHeightOutlined;
@@ -0,0 +1,24 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ var downOutlined = function downOutlined(_ref) {
9
+ var style = _ref.style;
10
+ return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
11
+ viewBox: "0 0 14 14",
12
+ fill: "none",
13
+ xmlns: "http://www.w3.org/2000/svg"
14
+ }, style), {}, {
15
+ children: /*#__PURE__*/_jsx("g", {
16
+ opacity: "0.5",
17
+ children: /*#__PURE__*/_jsx("path", {
18
+ d: "M6.82722 9.56222L3.15222 5.88722C3.10396 5.83896 3.06568 5.78167 3.03956 5.71861C3.01344 5.65556 3 5.58797 3 5.51972C3 5.45147 3.01344 5.38389 3.03956 5.32083C3.06568 5.25778 3.10396 5.20048 3.15222 5.15222C3.20048 5.10396 3.25778 5.06568 3.32083 5.03956C3.38389 5.01344 3.45147 5 3.51972 5C3.58797 5 3.65556 5.01344 3.71861 5.03956C3.78167 5.06568 3.83896 5.10396 3.88722 5.15222L7.19472 8.45902L10.5022 5.15152C10.6009 5.0601 10.7311 5.01045 10.8656 5.01301C11.0001 5.01557 11.1284 5.07013 11.2235 5.16525C11.3186 5.26036 11.3732 5.38863 11.3757 5.52312C11.3783 5.65761 11.3287 5.78786 11.2372 5.88652L7.56222 9.56222C7.35922 9.76522 7.03022 9.76522 6.82722 9.56222Z",
19
+ fill: "currentColor"
20
+ })
21
+ })
22
+ }));
23
+ };
24
+ export default downOutlined;
@@ -0,0 +1,25 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ var fullscreen = function fullscreen(_ref) {
9
+ var style = _ref.style;
10
+ return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
11
+ width: "16",
12
+ height: "16",
13
+ viewBox: "0 0 16 16",
14
+ fill: "none",
15
+ xmlns: "http://www.w3.org/2000/svg"
16
+ }, style), {}, {
17
+ children: /*#__PURE__*/_jsx("g", {
18
+ children: /*#__PURE__*/_jsx("path", {
19
+ d: "M1.54779 6.08508C1.24572 6.08508 1 5.83935 1 5.53728V3.11291C1 1.94846 1.94846 1 3.11291 1H5.54824C5.85031 1 6.09603 1.24572 6.09603 1.54779C6.09603 1.84986 5.85031 2.09558 5.54824 2.09558H3.11291C2.5526 2.09558 2.09558 2.5526 2.09558 3.11291V5.53728C2.09558 5.83935 1.84986 6.08508 1.54779 6.08508ZM5.54824 15H3.11291C1.94846 15 1 14.0515 1 12.8871V10.5613C1 10.2593 1.24572 10.0135 1.54779 10.0135C1.84986 10.0135 2.09558 10.2593 2.09558 10.5613V12.8871C2.09558 13.4474 2.5526 13.9044 3.11291 13.9044H5.54824C5.85031 13.9044 6.09603 14.1501 6.09603 14.4522C6.09603 14.7543 5.85031 15 5.54824 15ZM12.8855 15H10.6693C10.3672 15 10.1215 14.7543 10.1215 14.4522C10.1215 14.1501 10.3672 13.9044 10.6693 13.9044H12.8871C13.4474 13.9044 13.9044 13.4474 13.9044 12.8871V10.6317C13.9044 10.3297 14.1501 10.084 14.4522 10.084C14.7543 10.084 15 10.3297 15 10.6317V12.8871C14.9984 14.0515 14.0515 15 12.8855 15ZM14.4506 6.15551C14.1486 6.15551 13.9029 5.90978 13.9029 5.60771V3.11291C13.9029 2.5526 13.4458 2.09558 12.8855 2.09558H10.5566C10.2546 2.09558 10.0088 1.84986 10.0088 1.54779C10.0088 1.24572 10.2546 1 10.5566 1H12.8871C14.0515 1 15 1.94846 15 3.11291V5.60771C14.9984 5.90978 14.7543 6.15551 14.4506 6.15551Z",
20
+ fill: "currentColor"
21
+ })
22
+ })
23
+ }));
24
+ };
25
+ export default fullscreen;
@@ -0,0 +1,29 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ import { jsxs as _jsxs } from "react/jsx-runtime";
9
+ var redoOutlined = function redoOutlined(_ref) {
10
+ var style = _ref.style;
11
+ return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
12
+ width: "16",
13
+ height: "16",
14
+ viewBox: "0 0 16 16",
15
+ fill: "none",
16
+ xmlns: "http://www.w3.org/2000/svg"
17
+ }, style), {}, {
18
+ children: /*#__PURE__*/_jsxs("g", {
19
+ children: [/*#__PURE__*/_jsx("path", {
20
+ d: "M8.04156 2.68039C9.12156 2.68039 10.0816 3.00039 10.9216 3.52039L11.7216 2.72039L11.6816 2.68039L9.44156 0.400391C9.16156 0.680391 9.08156 1.04039 9.12156 1.40039C9.12156 1.48039 9.16156 1.60039 9.20156 1.68039C8.84156 1.60039 8.44156 1.56039 8.04156 1.56039C6.96156 1.56039 5.92156 1.84039 5.00156 2.32039C4.60156 2.52039 4.24156 2.80039 3.88156 3.08039C2.48156 4.24039 1.60156 6.00039 1.60156 8.00039C1.60156 9.24039 1.96156 10.4004 2.56156 11.4004C2.64156 11.5204 2.68156 11.6004 2.76156 11.7204L3.56156 10.9204C3.00156 10.0804 2.72156 9.08039 2.72156 8.04039C2.72156 6.76039 3.16156 5.60039 3.92156 4.72039C4.24156 4.32039 4.60156 3.96039 5.04156 3.68039C5.88156 3.04039 6.92156 2.68039 8.04156 2.68039Z",
21
+ fill: "currentColor"
22
+ }), /*#__PURE__*/_jsx("path", {
23
+ d: "M13.5759 4.70371C13.4959 4.54371 13.4159 4.42371 13.2959 4.30371L12.4959 5.10371C13.0559 5.94371 13.3359 6.94371 13.3359 7.98371C13.3359 10.7037 11.2959 12.9837 8.61594 13.2637C8.41594 13.3037 8.21594 13.3037 8.01594 13.3037C6.93594 13.3037 5.97594 12.9837 5.13594 12.4237L4.33594 13.2237L4.37594 13.3037L6.65594 15.5837C6.93594 15.3037 7.01594 14.9437 6.97594 14.5837C6.97594 14.5037 6.93594 14.3837 6.89594 14.3037C7.21594 14.3837 7.57594 14.4237 7.89594 14.4237H8.21594C8.37594 14.4237 8.53594 14.4237 8.65594 14.3837C11.9359 14.1037 14.4959 11.3437 14.4959 7.98371C14.4959 6.78371 14.1759 5.66371 13.5759 4.70371Z",
24
+ fill: "currentColor"
25
+ })]
26
+ })
27
+ }));
28
+ };
29
+ export default redoOutlined;
@@ -0,0 +1,24 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ var rightOutlined = function rightOutlined(_ref) {
9
+ var style = _ref.style;
10
+ return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
11
+ viewBox: "0 0 14 14",
12
+ fill: "none",
13
+ xmlns: "http://www.w3.org/2000/svg"
14
+ }, style), {}, {
15
+ children: /*#__PURE__*/_jsx("g", {
16
+ opacity: "0.5",
17
+ children: /*#__PURE__*/_jsx("path", {
18
+ d: "M4.76797 2.91013C4.66938 3.00873 4.614 3.14246 4.614 3.28189C4.614 3.42132 4.66938 3.55504 4.76797 3.65364L8.11363 6.99946L4.76797 10.3453C4.66963 10.4439 4.61446 10.5776 4.61457 10.7169C4.61468 10.8561 4.67005 10.9897 4.76854 11.0882C4.86703 11.1867 5.00058 11.2421 5.13987 11.2422C5.27916 11.2423 5.4128 11.1871 5.51145 11.0888L9.22882 7.37127C9.27764 7.32245 9.31637 7.26449 9.34279 7.20071C9.36921 7.13692 9.38281 7.06855 9.38281 6.99951C9.38281 6.93047 9.36921 6.8621 9.34279 6.79832C9.31637 6.73453 9.27764 6.67657 9.22882 6.62775L5.51145 2.91022C5.46264 2.86139 5.40469 2.82266 5.34091 2.79623C5.27713 2.7698 5.20877 2.75619 5.13973 2.75618C5.07069 2.75618 5.00232 2.76977 4.93854 2.79618C4.87475 2.8226 4.81679 2.86132 4.76797 2.91013Z",
19
+ fill: "currentColor"
20
+ })
21
+ })
22
+ }));
23
+ };
24
+ export default rightOutlined;
@@ -0,0 +1,29 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ import { jsxs as _jsxs } from "react/jsx-runtime";
9
+ var alignRightOutlined = function alignRightOutlined(_ref) {
10
+ var style = _ref.style;
11
+ return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
12
+ width: "16",
13
+ height: "16",
14
+ viewBox: "0 0 16 16",
15
+ fill: "none",
16
+ xmlns: "http://www.w3.org/2000/svg"
17
+ }, style), {}, {
18
+ children: /*#__PURE__*/_jsxs("g", {
19
+ children: [/*#__PURE__*/_jsx("path", {
20
+ d: "M13.8646 7.42904L11.8131 3.37778C11.5471 2.84935 11.0079 2.51821 10.4128 2.51821H5.73562C5.14747 2.51821 4.61534 2.84231 4.34227 3.37073L2.24875 7.41495C2.01069 7.87291 2.01069 8.42248 2.24875 8.88044L4.34227 12.9317C4.61534 13.4531 5.14747 13.7842 5.73562 13.7842H10.4128C11.0009 13.7842 11.5401 13.4531 11.8131 12.9247L13.8646 8.8734C14.0887 8.41543 14.0887 7.87996 13.8646 7.42904ZM12.6884 13.3404C12.2472 14.214 11.358 14.7636 10.3848 14.7636H5.70761C4.74137 14.7636 3.85915 14.2211 3.41804 13.3615L1.31752 9.31023C1.12434 8.93838 1.02344 8.52502 1.02344 8.10542C1.02344 7.68582 1.12434 7.27246 1.31752 6.90061L3.41804 2.84935C3.86615 1.98978 4.74837 1.44727 5.70761 1.44727H10.3848C11.358 1.44727 12.2472 1.99683 12.6884 2.87049L14.7399 6.92175C15.118 7.66859 15.118 8.5493 14.7399 9.29614L12.6884 13.3404Z",
21
+ fill: "currentColor"
22
+ }), /*#__PURE__*/_jsx("path", {
23
+ d: "M7.81523 11.0294C6.35887 10.9315 5.17557 9.75024 5.07755 8.28939C4.95852 6.56293 6.32386 5.12305 8.02528 5.12305C9.65669 5.12305 10.98 6.4441 10.98 8.07969C10.98 9.77819 9.54466 11.1482 7.81523 11.0294ZM8.02528 10.0158C9.09655 10.0158 9.96477 9.14912 9.96477 8.07969C9.96477 7.01027 9.09655 6.14354 8.02528 6.14354C6.95402 6.14354 6.0858 7.01027 6.0858 8.07969C6.0858 9.14912 6.95402 10.0158 8.02528 10.0158Z",
24
+ fill: "currentColor"
25
+ })]
26
+ })
27
+ }));
28
+ };
29
+ export default alignRightOutlined;