@nocobase/client 0.9.2-alpha.4 → 0.9.4-alpha.1

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 (441) hide show
  1. package/es/acl/ACLProvider.js +2 -2
  2. package/es/acl/Configuration/RoleConfigure.js +15 -8
  3. package/es/api-client/APIClient.d.ts +2 -0
  4. package/es/api-client/APIClient.js +11 -0
  5. package/es/block-provider/BlockProvider.js +58 -17
  6. package/es/block-provider/DetailsBlockProvider.js +13 -1
  7. package/es/block-provider/FormBlockProvider.js +30 -13
  8. package/es/block-provider/hooks/index.d.ts +10 -0
  9. package/es/block-provider/hooks/index.js +521 -283
  10. package/es/collection-manager/CollectionField.js +3 -3
  11. package/es/collection-manager/CollectionFieldProvider.js +2 -1
  12. package/es/collection-manager/Configuration/AddFieldAction.js +3 -3
  13. package/es/collection-manager/Configuration/CollectionFields.d.ts +1 -1
  14. package/es/collection-manager/Configuration/CollectionFields.js +2 -5
  15. package/es/collection-manager/Configuration/ConfigurationTabs.js +7 -6
  16. package/es/collection-manager/Configuration/EditFieldAction.js +0 -1
  17. package/es/collection-manager/Configuration/OverridingCollectionField.js +0 -1
  18. package/es/collection-manager/action-hooks.d.ts +1 -1
  19. package/es/collection-manager/action-hooks.js +18 -7
  20. package/es/collection-manager/hooks/useCollection.d.ts +1 -1
  21. package/es/collection-manager/hooks/useCollectionDataSource.js +4 -4
  22. package/es/collection-manager/interfaces/createdBy.js +1 -1
  23. package/es/collection-manager/interfaces/linkTo.js +3 -39
  24. package/es/collection-manager/interfaces/m2m.js +4 -38
  25. package/es/collection-manager/interfaces/m2o.js +4 -38
  26. package/es/collection-manager/interfaces/o2m.js +4 -68
  27. package/es/collection-manager/interfaces/o2o.js +25 -119
  28. package/es/collection-manager/interfaces/updatedBy.js +1 -1
  29. package/es/collection-manager/templates/expression.js +1 -1
  30. package/es/collection-manager/templates/tree.js +2 -2
  31. package/es/filter-provider/FilterProvider.js +3 -1
  32. package/es/filter-provider/utils.js +1 -1
  33. package/es/index.d.ts +1 -0
  34. package/es/index.js +1 -0
  35. package/es/locale/en_US.d.ts +19 -1
  36. package/es/locale/en_US.js +22 -4
  37. package/es/locale/es_ES.d.ts +692 -0
  38. package/es/locale/es_ES.js +691 -0
  39. package/es/locale/ja_JP.d.ts +8 -1
  40. package/es/locale/ja_JP.js +9 -2
  41. package/es/locale/pt_BR.d.ts +5 -1
  42. package/es/locale/pt_BR.js +6 -2
  43. package/es/locale/ru_RU.d.ts +5 -1
  44. package/es/locale/ru_RU.js +6 -2
  45. package/es/locale/tr_TR.d.ts +5 -1
  46. package/es/locale/tr_TR.js +6 -2
  47. package/es/locale/zh_CN.d.ts +27 -1
  48. package/es/locale/zh_CN.js +28 -2
  49. package/es/record-provider/index.d.ts +4 -0
  50. package/es/record-provider/index.js +3 -0
  51. package/es/schema-component/antd/action/Action.Designer.js +10 -8
  52. package/es/schema-component/antd/action/Action.Drawer.js +4 -1
  53. package/es/schema-component/antd/action/ActionBar.js +25 -18
  54. package/es/schema-component/antd/association-field/AssociationFieldProvider.d.ts +2 -0
  55. package/es/schema-component/antd/association-field/AssociationFieldProvider.js +30 -0
  56. package/es/schema-component/antd/association-field/AssociationSelect.d.ts +14 -0
  57. package/es/schema-component/antd/association-field/AssociationSelect.js +63 -0
  58. package/es/schema-component/antd/association-field/Editable.d.ts +2 -0
  59. package/es/schema-component/antd/association-field/Editable.js +112 -0
  60. package/es/schema-component/antd/association-field/FileManager.d.ts +4 -0
  61. package/es/schema-component/antd/association-field/FileManager.js +243 -0
  62. package/es/schema-component/antd/association-field/InternalNester.d.ts +1 -0
  63. package/es/schema-component/antd/association-field/InternalNester.js +29 -0
  64. package/es/schema-component/antd/association-field/InternalPicker.d.ts +2 -0
  65. package/es/schema-component/antd/association-field/InternalPicker.js +236 -0
  66. package/es/schema-component/antd/association-field/InternalSubTable.d.ts +1 -0
  67. package/es/schema-component/antd/association-field/InternalSubTable.js +28 -0
  68. package/es/schema-component/antd/association-field/InternalViewer.d.ts +2 -0
  69. package/es/schema-component/antd/association-field/InternalViewer.js +112 -0
  70. package/es/schema-component/antd/association-field/Nester.d.ts +1 -0
  71. package/es/schema-component/antd/association-field/Nester.js +71 -0
  72. package/es/schema-component/antd/association-field/ReadPretty.d.ts +2 -0
  73. package/es/schema-component/antd/association-field/ReadPretty.js +22 -0
  74. package/es/schema-component/antd/association-field/SubTable.d.ts +1 -0
  75. package/es/schema-component/antd/association-field/SubTable.js +25 -0
  76. package/es/schema-component/antd/association-field/components/CreateRecordAction.d.ts +2 -0
  77. package/es/schema-component/antd/association-field/components/CreateRecordAction.js +61 -0
  78. package/es/schema-component/antd/association-field/context.d.ts +8 -0
  79. package/es/schema-component/antd/association-field/context.js +2 -0
  80. package/es/schema-component/antd/association-field/hooks.d.ts +9 -0
  81. package/es/schema-component/antd/association-field/hooks.js +96 -0
  82. package/es/schema-component/antd/association-field/index.d.ts +1 -0
  83. package/es/schema-component/antd/association-field/index.js +14 -0
  84. package/es/schema-component/antd/association-field/schema.d.ts +142 -0
  85. package/es/schema-component/antd/association-field/schema.js +141 -0
  86. package/es/schema-component/antd/association-field/util.d.ts +8 -0
  87. package/es/schema-component/antd/association-field/util.js +84 -0
  88. package/es/schema-component/antd/association-filter/AssociationFilter.Item.js +3 -3
  89. package/es/schema-component/antd/association-select/AssociationSelect.js +49 -231
  90. package/es/schema-component/antd/association-select/useServiceOptions.js +2 -2
  91. package/es/schema-component/antd/collection-select/CollectionSelect.js +5 -0
  92. package/es/schema-component/antd/expand-action/Expand.Action.Design.d.ts +1 -0
  93. package/es/schema-component/antd/expand-action/Expand.Action.Design.js +112 -0
  94. package/es/schema-component/antd/expand-action/Expand.Action.d.ts +1 -0
  95. package/es/schema-component/antd/expand-action/Expand.Action.js +40 -0
  96. package/es/schema-component/antd/expand-action/index.d.ts +1 -0
  97. package/es/schema-component/antd/expand-action/index.js +5 -0
  98. package/es/schema-component/antd/filter/Filter.Action.Designer.js +10 -12
  99. package/es/schema-component/antd/filter/FilterItem.js +1 -1
  100. package/es/schema-component/antd/filter/useOperators.d.ts +1 -1
  101. package/es/schema-component/antd/form/Form.js +4 -4
  102. package/es/schema-component/antd/form-item/FormItem.d.ts +2 -1
  103. package/es/schema-component/antd/form-item/FormItem.js +263 -168
  104. package/es/schema-component/antd/form-item/SchemaSettingOptions.js +39 -61
  105. package/es/schema-component/antd/form-v2/Form.Designer.js +1 -0
  106. package/es/schema-component/antd/form-v2/Templates.d.ts +20 -0
  107. package/es/schema-component/antd/form-v2/Templates.js +40 -12
  108. package/es/schema-component/antd/form-v2/utils.js +3 -1
  109. package/es/schema-component/antd/gantt/components/other/tooltip.js +1 -1
  110. package/es/schema-component/antd/grid/Grid.js +34 -24
  111. package/es/schema-component/antd/grid-card/GridCard.Decorator.d.ts +5 -0
  112. package/es/schema-component/antd/grid-card/GridCard.Decorator.js +65 -0
  113. package/es/schema-component/antd/grid-card/GridCard.Designer.d.ts +1 -0
  114. package/es/schema-component/antd/grid-card/GridCard.Designer.js +243 -0
  115. package/es/schema-component/antd/grid-card/GridCard.Item.d.ts +1 -0
  116. package/es/schema-component/antd/grid-card/GridCard.Item.js +18 -0
  117. package/es/schema-component/antd/grid-card/GridCard.d.ts +8 -0
  118. package/es/schema-component/antd/grid-card/GridCard.js +103 -0
  119. package/es/schema-component/antd/grid-card/hooks.d.ts +4 -0
  120. package/es/schema-component/antd/grid-card/hooks.js +9 -0
  121. package/es/schema-component/antd/grid-card/index.d.ts +1 -0
  122. package/es/schema-component/antd/grid-card/index.js +1 -0
  123. package/es/schema-component/antd/grid-card/options.d.ts +20 -0
  124. package/es/schema-component/antd/grid-card/options.js +20 -0
  125. package/es/schema-component/antd/index.d.ts +5 -1
  126. package/es/schema-component/antd/index.js +5 -1
  127. package/es/schema-component/antd/list/List.Decorator.d.ts +5 -0
  128. package/es/schema-component/antd/list/List.Decorator.js +59 -0
  129. package/es/schema-component/antd/list/List.Designer.d.ts +1 -0
  130. package/es/schema-component/antd/list/List.Designer.js +205 -0
  131. package/es/schema-component/antd/list/List.Item.d.ts +1 -0
  132. package/es/schema-component/antd/list/List.Item.js +15 -0
  133. package/es/schema-component/antd/list/List.d.ts +8 -0
  134. package/es/schema-component/antd/list/List.js +83 -0
  135. package/es/schema-component/antd/list/hooks.d.ts +4 -0
  136. package/es/schema-component/antd/list/hooks.js +9 -0
  137. package/es/schema-component/antd/list/index.d.ts +1 -0
  138. package/es/schema-component/antd/list/index.js +1 -0
  139. package/es/schema-component/antd/menu/Menu.js +6 -3
  140. package/es/schema-component/antd/record-picker/InputRecordPicker.d.ts +1 -0
  141. package/es/schema-component/antd/record-picker/InputRecordPicker.js +32 -12
  142. package/es/schema-component/antd/remote-select/RemoteSelect.js +23 -23
  143. package/es/schema-component/antd/select/Select.js +2 -0
  144. package/es/schema-component/antd/table/Table.Void.Designer.js +1 -0
  145. package/es/schema-component/antd/table-v2/Table.Column.Designer.js +18 -9
  146. package/es/schema-component/antd/table-v2/Table.Index.d.ts +1 -0
  147. package/es/schema-component/antd/table-v2/Table.Index.js +6 -0
  148. package/es/schema-component/antd/table-v2/Table.js +9 -5
  149. package/es/schema-component/antd/table-v2/TableBlockDesigner.js +2 -1
  150. package/es/schema-component/antd/table-v2/TableSelectorDesigner.js +1 -0
  151. package/es/schema-component/antd/table-v2/hooks/useUserVariable.d.ts +22 -0
  152. package/es/schema-component/antd/table-v2/hooks/useUserVariable.js +65 -0
  153. package/es/schema-component/antd/table-v2/index.js +3 -1
  154. package/es/schema-component/antd/table-v2/utils.js +1 -1
  155. package/es/schema-component/antd/variable/Input.js +11 -8
  156. package/es/schema-component/antd/variable/TextArea.js +2 -5
  157. package/es/schema-component/common/dnd-context/index.js +3 -2
  158. package/es/schema-component/common/sortable-item/SortableItem.js +4 -1
  159. package/es/schema-component/common/utils/uitls.js +1 -1
  160. package/es/schema-component/core/SchemaComponentProvider.js +2 -2
  161. package/es/schema-component/hooks/index.d.ts +1 -0
  162. package/es/schema-component/hooks/index.js +2 -1
  163. package/es/schema-component/hooks/useFieldModeOptions.d.ts +4 -0
  164. package/es/schema-component/hooks/useFieldModeOptions.js +105 -0
  165. package/es/schema-initializer/SchemaInitializerProvider.d.ts +1 -0
  166. package/es/schema-initializer/SchemaInitializerProvider.js +23 -10
  167. package/es/schema-initializer/buttons/BlockInitializers.js +10 -0
  168. package/es/schema-initializer/buttons/CustomFormItemInitializers.js +4 -2
  169. package/es/schema-initializer/buttons/FormActionInitializers.d.ts +0 -116
  170. package/es/schema-initializer/buttons/FormActionInitializers.js +106 -100
  171. package/es/schema-initializer/buttons/GanttActionInitializers.d.ts +0 -19
  172. package/es/schema-initializer/buttons/GridCardActionInitializers.d.ts +195 -0
  173. package/es/schema-initializer/buttons/GridCardActionInitializers.js +278 -0
  174. package/es/schema-initializer/buttons/ListActionInitializers.d.ts +195 -0
  175. package/es/schema-initializer/buttons/ListActionInitializers.js +278 -0
  176. package/es/schema-initializer/buttons/TableActionColumnInitializers.js +1 -1
  177. package/es/schema-initializer/buttons/TableActionInitializers.d.ts +0 -20
  178. package/es/schema-initializer/buttons/TableActionInitializers.js +29 -35
  179. package/es/schema-initializer/buttons/TableColumnInitializers.js +4 -1
  180. package/es/schema-initializer/buttons/index.d.ts +3 -0
  181. package/es/schema-initializer/buttons/index.js +3 -0
  182. package/es/schema-initializer/components/BulkEditField.js +7 -5
  183. package/es/schema-initializer/components/CreateRecordAction.d.ts +2 -1
  184. package/es/schema-initializer/components/CreateRecordAction.js +55 -33
  185. package/es/schema-initializer/components/DeletedField.d.ts +1 -0
  186. package/es/schema-initializer/components/DeletedField.js +11 -0
  187. package/es/schema-initializer/components/assigned-field/AssignedField.js +35 -23
  188. package/es/schema-initializer/items/ExpandActionInitializer.d.ts +0 -1
  189. package/es/schema-initializer/items/ExpandActionInitializer.js +9 -34
  190. package/es/schema-initializer/items/GridCardBlockInitializer.d.ts +1 -0
  191. package/es/schema-initializer/items/GridCardBlockInitializer.js +47 -0
  192. package/es/schema-initializer/items/ListBlockInitializer.d.ts +1 -0
  193. package/es/schema-initializer/items/ListBlockInitializer.js +47 -0
  194. package/es/schema-initializer/items/SelectActionInitializer.d.ts +1 -0
  195. package/es/schema-initializer/items/SelectActionInitializer.js +65 -0
  196. package/es/schema-initializer/items/index.d.ts +3 -0
  197. package/es/schema-initializer/items/index.js +3 -0
  198. package/es/schema-initializer/utils.d.ts +112 -0
  199. package/es/schema-initializer/utils.js +224 -38
  200. package/es/schema-items/GeneralSchemaItems.d.ts +4 -0
  201. package/es/schema-items/GeneralSchemaItems.js +148 -0
  202. package/es/schema-items/index.d.ts +1 -0
  203. package/es/schema-items/index.js +2 -1
  204. package/es/schema-settings/DataTemplates/FormDataTemplates.d.ts +1 -0
  205. package/es/schema-settings/DataTemplates/FormDataTemplates.js +117 -42
  206. package/es/schema-settings/DataTemplates/components/Designer.d.ts +7 -0
  207. package/es/schema-settings/DataTemplates/components/Designer.js +179 -0
  208. package/es/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +6 -1
  209. package/es/schema-settings/DataTemplates/hooks/useCollectionState.js +204 -96
  210. package/es/schema-settings/GeneralSchemaDesigner.js +19 -15
  211. package/es/schema-settings/LinkageRules/FilterDynamicComponent.js +1 -1
  212. package/es/schema-settings/LinkageRules/Variables.d.ts +1 -1
  213. package/es/schema-settings/LinkageRules/Variables.js +7 -4
  214. package/es/schema-settings/SchemaSettings.d.ts +1 -1
  215. package/es/schema-settings/SchemaSettings.js +53 -29
  216. package/es/schema-settings/VariableInput/hooks/useUserVariable.js +1 -1
  217. package/es/schema-settings/hooks/useIsShowMultipleSwitch.d.ts +4 -0
  218. package/es/schema-settings/hooks/useIsShowMultipleSwitch.js +18 -0
  219. package/es/schema-templates/BlockTemplateDetails.js +1 -1
  220. package/es/user/CurrentUser.js +118 -10
  221. package/lib/acl/ACLProvider.js +2 -2
  222. package/lib/acl/Configuration/RoleConfigure.js +15 -8
  223. package/lib/api-client/APIClient.d.ts +2 -0
  224. package/lib/api-client/APIClient.js +11 -0
  225. package/lib/block-provider/BlockProvider.js +57 -16
  226. package/lib/block-provider/DetailsBlockProvider.js +13 -1
  227. package/lib/block-provider/FormBlockProvider.js +31 -15
  228. package/lib/block-provider/hooks/index.d.ts +10 -0
  229. package/lib/block-provider/hooks/index.js +531 -290
  230. package/lib/collection-manager/CollectionField.js +3 -3
  231. package/lib/collection-manager/CollectionFieldProvider.js +2 -1
  232. package/lib/collection-manager/Configuration/AddFieldAction.js +2 -2
  233. package/lib/collection-manager/Configuration/CollectionFields.d.ts +1 -1
  234. package/lib/collection-manager/Configuration/CollectionFields.js +2 -5
  235. package/lib/collection-manager/Configuration/ConfigurationTabs.js +7 -6
  236. package/lib/collection-manager/Configuration/EditFieldAction.js +0 -1
  237. package/lib/collection-manager/Configuration/OverridingCollectionField.js +0 -1
  238. package/lib/collection-manager/action-hooks.d.ts +1 -1
  239. package/lib/collection-manager/action-hooks.js +18 -7
  240. package/lib/collection-manager/hooks/useCollection.d.ts +1 -1
  241. package/lib/collection-manager/hooks/useCollectionDataSource.js +4 -4
  242. package/lib/collection-manager/interfaces/createdBy.js +1 -1
  243. package/lib/collection-manager/interfaces/linkTo.js +2 -38
  244. package/lib/collection-manager/interfaces/m2m.js +3 -37
  245. package/lib/collection-manager/interfaces/m2o.js +3 -37
  246. package/lib/collection-manager/interfaces/o2m.js +6 -70
  247. package/lib/collection-manager/interfaces/o2o.js +30 -124
  248. package/lib/collection-manager/interfaces/updatedBy.js +1 -1
  249. package/lib/collection-manager/templates/expression.js +1 -1
  250. package/lib/collection-manager/templates/tree.js +2 -2
  251. package/lib/filter-provider/FilterProvider.js +3 -1
  252. package/lib/filter-provider/utils.js +1 -1
  253. package/lib/index.d.ts +1 -0
  254. package/lib/index.js +11 -0
  255. package/lib/locale/en_US.d.ts +19 -1
  256. package/lib/locale/en_US.js +22 -4
  257. package/lib/locale/es_ES.d.ts +692 -0
  258. package/lib/locale/es_ES.js +698 -0
  259. package/lib/locale/ja_JP.d.ts +8 -1
  260. package/lib/locale/ja_JP.js +9 -2
  261. package/lib/locale/pt_BR.d.ts +5 -1
  262. package/lib/locale/pt_BR.js +6 -2
  263. package/lib/locale/ru_RU.d.ts +5 -1
  264. package/lib/locale/ru_RU.js +6 -2
  265. package/lib/locale/tr_TR.d.ts +5 -1
  266. package/lib/locale/tr_TR.js +6 -2
  267. package/lib/locale/zh_CN.d.ts +27 -1
  268. package/lib/locale/zh_CN.js +28 -2
  269. package/lib/record-provider/index.d.ts +4 -0
  270. package/lib/record-provider/index.js +5 -1
  271. package/lib/schema-component/antd/action/Action.Designer.js +10 -8
  272. package/lib/schema-component/antd/action/Action.Drawer.js +4 -1
  273. package/lib/schema-component/antd/action/ActionBar.js +23 -16
  274. package/lib/schema-component/antd/association-field/AssociationFieldProvider.d.ts +2 -0
  275. package/lib/schema-component/antd/association-field/AssociationFieldProvider.js +40 -0
  276. package/lib/schema-component/antd/association-field/AssociationSelect.d.ts +14 -0
  277. package/lib/schema-component/antd/association-field/AssociationSelect.js +72 -0
  278. package/lib/schema-component/antd/association-field/Editable.d.ts +2 -0
  279. package/lib/schema-component/antd/association-field/Editable.js +121 -0
  280. package/lib/schema-component/antd/association-field/FileManager.d.ts +4 -0
  281. package/lib/schema-component/antd/association-field/FileManager.js +253 -0
  282. package/lib/schema-component/antd/association-field/InternalNester.d.ts +1 -0
  283. package/lib/schema-component/antd/association-field/InternalNester.js +39 -0
  284. package/lib/schema-component/antd/association-field/InternalPicker.d.ts +2 -0
  285. package/lib/schema-component/antd/association-field/InternalPicker.js +246 -0
  286. package/lib/schema-component/antd/association-field/InternalSubTable.d.ts +1 -0
  287. package/lib/schema-component/antd/association-field/InternalSubTable.js +39 -0
  288. package/lib/schema-component/antd/association-field/InternalViewer.d.ts +2 -0
  289. package/lib/schema-component/antd/association-field/InternalViewer.js +123 -0
  290. package/lib/schema-component/antd/association-field/Nester.d.ts +1 -0
  291. package/lib/schema-component/antd/association-field/Nester.js +80 -0
  292. package/lib/schema-component/antd/association-field/ReadPretty.d.ts +2 -0
  293. package/lib/schema-component/antd/association-field/ReadPretty.js +30 -0
  294. package/lib/schema-component/antd/association-field/SubTable.d.ts +1 -0
  295. package/lib/schema-component/antd/association-field/SubTable.js +33 -0
  296. package/lib/schema-component/antd/association-field/components/CreateRecordAction.d.ts +2 -0
  297. package/lib/schema-component/antd/association-field/components/CreateRecordAction.js +71 -0
  298. package/lib/schema-component/antd/association-field/context.d.ts +8 -0
  299. package/lib/schema-component/antd/association-field/context.js +9 -0
  300. package/lib/schema-component/antd/association-field/hooks.d.ts +9 -0
  301. package/lib/schema-component/antd/association-field/hooks.js +107 -0
  302. package/lib/schema-component/antd/association-field/index.d.ts +1 -0
  303. package/lib/schema-component/antd/association-field/index.js +21 -0
  304. package/lib/schema-component/antd/association-field/schema.d.ts +142 -0
  305. package/lib/schema-component/antd/association-field/schema.js +148 -0
  306. package/lib/schema-component/antd/association-field/util.d.ts +8 -0
  307. package/lib/schema-component/antd/association-field/util.js +98 -0
  308. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.js +3 -3
  309. package/lib/schema-component/antd/association-select/AssociationSelect.js +49 -231
  310. package/lib/schema-component/antd/association-select/useServiceOptions.js +2 -2
  311. package/lib/schema-component/antd/collection-select/CollectionSelect.js +5 -0
  312. package/lib/schema-component/antd/expand-action/Expand.Action.Design.d.ts +1 -0
  313. package/lib/schema-component/antd/expand-action/Expand.Action.Design.js +120 -0
  314. package/lib/schema-component/antd/expand-action/Expand.Action.d.ts +1 -0
  315. package/lib/schema-component/antd/expand-action/Expand.Action.js +48 -0
  316. package/lib/schema-component/antd/expand-action/index.d.ts +1 -0
  317. package/lib/schema-component/antd/expand-action/index.js +12 -0
  318. package/lib/schema-component/antd/filter/Filter.Action.Designer.js +10 -12
  319. package/lib/schema-component/antd/filter/FilterItem.js +1 -1
  320. package/lib/schema-component/antd/filter/useOperators.d.ts +1 -1
  321. package/lib/schema-component/antd/form/Form.js +4 -4
  322. package/lib/schema-component/antd/form-item/FormItem.d.ts +2 -1
  323. package/lib/schema-component/antd/form-item/FormItem.js +258 -162
  324. package/lib/schema-component/antd/form-item/SchemaSettingOptions.js +37 -59
  325. package/lib/schema-component/antd/form-v2/Form.Designer.js +1 -0
  326. package/lib/schema-component/antd/form-v2/Templates.d.ts +20 -0
  327. package/lib/schema-component/antd/form-v2/Templates.js +39 -11
  328. package/lib/schema-component/antd/form-v2/utils.js +3 -1
  329. package/lib/schema-component/antd/gantt/components/other/tooltip.js +1 -1
  330. package/lib/schema-component/antd/grid/Grid.js +33 -23
  331. package/lib/schema-component/antd/grid-card/GridCard.Decorator.d.ts +5 -0
  332. package/lib/schema-component/antd/grid-card/GridCard.Decorator.js +77 -0
  333. package/lib/schema-component/antd/grid-card/GridCard.Designer.d.ts +1 -0
  334. package/lib/schema-component/antd/grid-card/GridCard.Designer.js +253 -0
  335. package/lib/schema-component/antd/grid-card/GridCard.Item.d.ts +1 -0
  336. package/lib/schema-component/antd/grid-card/GridCard.Item.js +26 -0
  337. package/lib/schema-component/antd/grid-card/GridCard.d.ts +8 -0
  338. package/lib/schema-component/antd/grid-card/GridCard.js +112 -0
  339. package/lib/schema-component/antd/grid-card/hooks.d.ts +4 -0
  340. package/lib/schema-component/antd/grid-card/hooks.js +16 -0
  341. package/lib/schema-component/antd/grid-card/index.d.ts +1 -0
  342. package/lib/schema-component/antd/grid-card/index.js +16 -0
  343. package/lib/schema-component/antd/grid-card/options.d.ts +20 -0
  344. package/lib/schema-component/antd/grid-card/options.js +31 -0
  345. package/lib/schema-component/antd/index.d.ts +5 -1
  346. package/lib/schema-component/antd/index.js +55 -11
  347. package/lib/schema-component/antd/list/List.Decorator.d.ts +5 -0
  348. package/lib/schema-component/antd/list/List.Decorator.js +71 -0
  349. package/lib/schema-component/antd/list/List.Designer.d.ts +1 -0
  350. package/lib/schema-component/antd/list/List.Designer.js +213 -0
  351. package/lib/schema-component/antd/list/List.Item.d.ts +1 -0
  352. package/lib/schema-component/antd/list/List.Item.js +23 -0
  353. package/lib/schema-component/antd/list/List.d.ts +8 -0
  354. package/lib/schema-component/antd/list/List.js +92 -0
  355. package/lib/schema-component/antd/list/hooks.d.ts +4 -0
  356. package/lib/schema-component/antd/list/hooks.js +16 -0
  357. package/lib/schema-component/antd/list/index.d.ts +1 -0
  358. package/lib/schema-component/antd/list/index.js +16 -0
  359. package/lib/schema-component/antd/menu/Menu.js +6 -3
  360. package/lib/schema-component/antd/record-picker/InputRecordPicker.d.ts +1 -0
  361. package/lib/schema-component/antd/record-picker/InputRecordPicker.js +34 -13
  362. package/lib/schema-component/antd/remote-select/RemoteSelect.js +22 -22
  363. package/lib/schema-component/antd/select/Select.js +2 -0
  364. package/lib/schema-component/antd/table/Table.Void.Designer.js +1 -0
  365. package/lib/schema-component/antd/table-v2/Table.Column.Designer.js +18 -9
  366. package/lib/schema-component/antd/table-v2/Table.Index.d.ts +1 -0
  367. package/lib/schema-component/antd/table-v2/Table.Index.js +14 -0
  368. package/lib/schema-component/antd/table-v2/Table.js +9 -5
  369. package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +2 -1
  370. package/lib/schema-component/antd/table-v2/TableSelectorDesigner.js +1 -0
  371. package/lib/schema-component/antd/table-v2/hooks/useUserVariable.d.ts +22 -0
  372. package/lib/schema-component/antd/table-v2/hooks/useUserVariable.js +73 -0
  373. package/lib/schema-component/antd/table-v2/index.js +3 -1
  374. package/lib/schema-component/antd/table-v2/utils.js +1 -1
  375. package/lib/schema-component/antd/variable/Input.js +11 -8
  376. package/lib/schema-component/antd/variable/TextArea.js +2 -5
  377. package/lib/schema-component/common/dnd-context/index.js +3 -2
  378. package/lib/schema-component/common/sortable-item/SortableItem.js +4 -1
  379. package/lib/schema-component/common/utils/uitls.js +1 -1
  380. package/lib/schema-component/core/SchemaComponentProvider.js +2 -2
  381. package/lib/schema-component/hooks/index.d.ts +1 -0
  382. package/lib/schema-component/hooks/index.js +11 -0
  383. package/lib/schema-component/hooks/useFieldModeOptions.d.ts +4 -0
  384. package/lib/schema-component/hooks/useFieldModeOptions.js +112 -0
  385. package/lib/schema-initializer/SchemaInitializerProvider.d.ts +1 -0
  386. package/lib/schema-initializer/SchemaInitializerProvider.js +22 -9
  387. package/lib/schema-initializer/buttons/BlockInitializers.js +10 -0
  388. package/lib/schema-initializer/buttons/CustomFormItemInitializers.js +4 -2
  389. package/lib/schema-initializer/buttons/FormActionInitializers.d.ts +0 -116
  390. package/lib/schema-initializer/buttons/FormActionInitializers.js +106 -100
  391. package/lib/schema-initializer/buttons/GanttActionInitializers.d.ts +0 -19
  392. package/lib/schema-initializer/buttons/GridCardActionInitializers.d.ts +195 -0
  393. package/lib/schema-initializer/buttons/GridCardActionInitializers.js +285 -0
  394. package/lib/schema-initializer/buttons/ListActionInitializers.d.ts +195 -0
  395. package/lib/schema-initializer/buttons/ListActionInitializers.js +285 -0
  396. package/lib/schema-initializer/buttons/TableActionColumnInitializers.js +1 -1
  397. package/lib/schema-initializer/buttons/TableActionInitializers.d.ts +0 -20
  398. package/lib/schema-initializer/buttons/TableActionInitializers.js +29 -35
  399. package/lib/schema-initializer/buttons/TableColumnInitializers.js +4 -1
  400. package/lib/schema-initializer/buttons/index.d.ts +3 -0
  401. package/lib/schema-initializer/buttons/index.js +22 -0
  402. package/lib/schema-initializer/components/BulkEditField.js +7 -5
  403. package/lib/schema-initializer/components/CreateRecordAction.d.ts +2 -1
  404. package/lib/schema-initializer/components/CreateRecordAction.js +58 -35
  405. package/lib/schema-initializer/components/DeletedField.d.ts +1 -0
  406. package/lib/schema-initializer/components/DeletedField.js +19 -0
  407. package/lib/schema-initializer/components/assigned-field/AssignedField.js +34 -22
  408. package/lib/schema-initializer/items/ExpandActionInitializer.d.ts +0 -1
  409. package/lib/schema-initializer/items/ExpandActionInitializer.js +11 -37
  410. package/lib/schema-initializer/items/GridCardBlockInitializer.d.ts +1 -0
  411. package/lib/schema-initializer/items/GridCardBlockInitializer.js +55 -0
  412. package/lib/schema-initializer/items/ListBlockInitializer.d.ts +1 -0
  413. package/lib/schema-initializer/items/ListBlockInitializer.js +55 -0
  414. package/lib/schema-initializer/items/SelectActionInitializer.d.ts +1 -0
  415. package/lib/schema-initializer/items/SelectActionInitializer.js +73 -0
  416. package/lib/schema-initializer/items/index.d.ts +3 -0
  417. package/lib/schema-initializer/items/index.js +33 -0
  418. package/lib/schema-initializer/utils.d.ts +112 -0
  419. package/lib/schema-initializer/utils.js +227 -39
  420. package/lib/schema-items/GeneralSchemaItems.d.ts +4 -0
  421. package/lib/schema-items/GeneralSchemaItems.js +156 -0
  422. package/lib/schema-items/index.d.ts +1 -0
  423. package/lib/schema-items/index.js +11 -0
  424. package/lib/schema-settings/DataTemplates/FormDataTemplates.d.ts +1 -0
  425. package/lib/schema-settings/DataTemplates/FormDataTemplates.js +119 -41
  426. package/lib/schema-settings/DataTemplates/components/Designer.d.ts +7 -0
  427. package/lib/schema-settings/DataTemplates/components/Designer.js +188 -0
  428. package/lib/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +6 -1
  429. package/lib/schema-settings/DataTemplates/hooks/useCollectionState.js +204 -95
  430. package/lib/schema-settings/GeneralSchemaDesigner.js +21 -15
  431. package/lib/schema-settings/LinkageRules/FilterDynamicComponent.js +1 -1
  432. package/lib/schema-settings/LinkageRules/Variables.d.ts +1 -1
  433. package/lib/schema-settings/LinkageRules/Variables.js +7 -4
  434. package/lib/schema-settings/SchemaSettings.d.ts +1 -1
  435. package/lib/schema-settings/SchemaSettings.js +53 -29
  436. package/lib/schema-settings/VariableInput/hooks/useUserVariable.js +1 -1
  437. package/lib/schema-settings/hooks/useIsShowMultipleSwitch.d.ts +4 -0
  438. package/lib/schema-settings/hooks/useIsShowMultipleSwitch.js +24 -0
  439. package/lib/user/CurrentUser.js +116 -8
  440. package/package.json +5 -6
  441. package/tsconfig.json +8 -0
@@ -17,7 +17,9 @@ import { useTranslation } from 'react-i18next';
17
17
  import { useFilterByTk, useFormBlockContext } from '../../../block-provider';
18
18
  import { useCollection, useCollectionFilterOptions, useCollectionManager, useSortFields } from '../../../collection-manager';
19
19
  import { isTitleField } from '../../../collection-manager/Configuration/CollectionFields';
20
+ import { GeneralSchemaItems } from '../../../schema-items';
20
21
  import { GeneralSchemaDesigner, SchemaSettings, isPatternDisabled, isShowDefaultValue } from '../../../schema-settings';
22
+ import { useIsShowMultipleSwitch } from '../../../schema-settings/hooks/useIsShowMultipleSwitch';
21
23
  import { useCompile, useDesignable, useFieldComponentOptions, useFieldTitle } from '../../hooks';
22
24
  import { removeNullCondition } from '../filter';
23
25
  import { RemoteSelect } from '../remote-select';
@@ -70,7 +72,7 @@ var InternalAssociationSelect = connect(function (props) {
70
72
  }), mapReadPretty(ReadPretty));
71
73
  export var AssociationSelect = InternalAssociationSelect;
72
74
  AssociationSelect.Designer = function Designer() {
73
- var _interfaceConfig$vali, _collectionField$uiSc, _field$componentProps, _field$componentProps2, _field$componentProps3, _field$componentProps4, _field$componentProps5, _field$componentProps6, _collectionField$uiSc2, _fieldSchema$xDecora, _fieldSchema$xCompon, _field$componentProps7, _field$componentProps8;
75
+ var _interfaceConfig$vali, _collectionField$uiSc, _field$componentProps, _field$componentProps2, _field$componentProps3, _field$componentProps4, _field$componentProps5, _field$componentProps6, _fieldSchema$xCompon, _field$componentProps7, _field$componentProps8;
74
76
  var _useCollectionManager = useCollectionManager(),
75
77
  getCollectionFields = _useCollectionManager.getCollectionFields,
76
78
  getInterface = _useCollectionManager.getInterface,
@@ -90,13 +92,14 @@ AssociationSelect.Designer = function Designer() {
90
92
  refresh = _useDesignable.refresh,
91
93
  insertAdjacent = _useDesignable.insertAdjacent;
92
94
  var compile = useCompile();
95
+ var IsShowMultipleSwitch = useIsShowMultipleSwitch();
93
96
  var collectionField = getField(fieldSchema['name']) || getCollectionJoinField(fieldSchema['x-collection-field']);
94
97
  var fieldComponentOptions = useFieldComponentOptions();
95
98
  var isSubFormAssociationField = field.address.segments.includes('__form_grid');
96
99
  var interfaceConfig = getInterface(collectionField === null || collectionField === void 0 ? void 0 : collectionField.interface);
97
100
  var validateSchema = interfaceConfig === null || interfaceConfig === void 0 ? void 0 : (_interfaceConfig$vali = interfaceConfig['validateSchema']) === null || _interfaceConfig$vali === void 0 ? void 0 : _interfaceConfig$vali.call(interfaceConfig, fieldSchema);
98
101
  var originalTitle = collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc = collectionField.uiSchema) === null || _collectionField$uiSc === void 0 ? void 0 : _collectionField$uiSc.title;
99
- var targetFields = (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) ? getCollectionFields(collectionField.target) : [];
102
+ var targetFields = (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) ? getCollectionFields(collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) : [];
100
103
  var initialValue = {
101
104
  title: field.title === originalTitle ? undefined : field.title
102
105
  };
@@ -139,108 +142,8 @@ AssociationSelect.Designer = function Designer() {
139
142
  if (fieldSchema['x-read-pretty'] === true) {
140
143
  readOnlyMode = 'read-pretty';
141
144
  }
142
- return /*#__PURE__*/React.createElement(GeneralSchemaDesigner, null, collectionField && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
143
- key: "edit-field-title",
144
- title: t('Edit field title'),
145
- schema: {
146
- type: 'object',
147
- title: t('Edit field title'),
148
- properties: {
149
- title: {
150
- title: t('Field title'),
151
- default: field === null || field === void 0 ? void 0 : field.title,
152
- description: "".concat(t('Original field title: ')).concat(collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc2 = collectionField.uiSchema) === null || _collectionField$uiSc2 === void 0 ? void 0 : _collectionField$uiSc2.title),
153
- 'x-decorator': 'FormItem',
154
- 'x-component': 'Input',
155
- 'x-component-props': {}
156
- }
157
- }
158
- },
159
- onSubmit: function onSubmit(_ref) {
160
- var title = _ref.title;
161
- if (title) {
162
- field.title = title;
163
- fieldSchema.title = title;
164
- dn.emit('patch', {
165
- schema: {
166
- 'x-uid': fieldSchema['x-uid'],
167
- title: fieldSchema.title
168
- }
169
- });
170
- }
171
- dn.refresh();
172
- }
173
- }), !field.readPretty && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
174
- key: "edit-description",
175
- title: t('Edit description'),
176
- schema: {
177
- type: 'object',
178
- title: t('Edit description'),
179
- properties: {
180
- description: {
181
- // title: t('Description'),
182
- default: field === null || field === void 0 ? void 0 : field.description,
183
- 'x-decorator': 'FormItem',
184
- 'x-component': 'Input.TextArea',
185
- 'x-component-props': {}
186
- }
187
- }
188
- },
189
- onSubmit: function onSubmit(_ref2) {
190
- var description = _ref2.description;
191
- field.description = description;
192
- fieldSchema.description = description;
193
- dn.emit('patch', {
194
- schema: {
195
- 'x-uid': fieldSchema['x-uid'],
196
- description: fieldSchema.description
197
- }
198
- });
199
- dn.refresh();
200
- }
201
- }), field.readPretty && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
202
- key: "edit-tooltip",
203
- title: t('Edit tooltip'),
204
- schema: {
205
- type: 'object',
206
- title: t('Edit description'),
207
- properties: {
208
- tooltip: {
209
- default: fieldSchema === null || fieldSchema === void 0 ? void 0 : (_fieldSchema$xDecora = fieldSchema['x-decorator-props']) === null || _fieldSchema$xDecora === void 0 ? void 0 : _fieldSchema$xDecora.tooltip,
210
- 'x-decorator': 'FormItem',
211
- 'x-component': 'Input.TextArea',
212
- 'x-component-props': {}
213
- }
214
- }
215
- },
216
- onSubmit: function onSubmit(_ref3) {
217
- var tooltip = _ref3.tooltip;
218
- field.decoratorProps.tooltip = tooltip;
219
- fieldSchema['x-decorator-props'] = fieldSchema['x-decorator-props'] || {};
220
- fieldSchema['x-decorator-props']['tooltip'] = tooltip;
221
- dn.emit('patch', {
222
- schema: {
223
- 'x-uid': fieldSchema['x-uid'],
224
- 'x-decorator-props': fieldSchema['x-decorator-props']
225
- }
226
- });
227
- dn.refresh();
228
- }
229
- }), !field.readPretty && /*#__PURE__*/React.createElement(SchemaSettings.SwitchItem, {
230
- key: "required",
231
- title: t('Required'),
232
- checked: fieldSchema.required,
233
- onChange: function onChange(required) {
234
- var schema = _defineProperty({}, 'x-uid', fieldSchema['x-uid']);
235
- field.required = required;
236
- fieldSchema['required'] = required;
237
- schema['required'] = required;
238
- dn.emit('patch', {
239
- schema: schema
240
- });
241
- refresh();
242
- }
243
- }), form && !(form === null || form === void 0 ? void 0 : form.readPretty) && validateSchema && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
145
+ var fieldSchemaWithoutRequired = _.omit(fieldSchema, 'required');
146
+ return /*#__PURE__*/React.createElement(GeneralSchemaDesigner, null, /*#__PURE__*/React.createElement(GeneralSchemaItems, null), form && !(form === null || form === void 0 ? void 0 : form.readPretty) && validateSchema && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
244
147
  title: t('Set validation rules'),
245
148
  components: {
246
149
  ArrayCollapse: ArrayCollapse,
@@ -328,7 +231,7 @@ AssociationSelect.Designer = function Designer() {
328
231
  }
329
232
  },
330
233
  onSubmit: function onSubmit(v) {
331
- var _collectionField$uiSc3;
234
+ var _collectionField$uiSc2;
332
235
  var rules = [];
333
236
  var _iterator = _createForOfIteratorHelper(v.rules),
334
237
  _step;
@@ -366,7 +269,7 @@ AssociationSelect.Designer = function Designer() {
366
269
  _iterator2.f();
367
270
  }
368
271
  }
369
- var concatValidator = _.concat([], (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc3 = collectionField.uiSchema) === null || _collectionField$uiSc3 === void 0 ? void 0 : _collectionField$uiSc3['x-validator']) || [], rules);
272
+ var concatValidator = _.concat([], (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc2 = collectionField.uiSchema) === null || _collectionField$uiSc2 === void 0 ? void 0 : _collectionField$uiSc2['x-validator']) || [], rules);
370
273
  field.validator = concatValidator;
371
274
  fieldSchema['x-validator'] = rules;
372
275
  schema['x-validator'] = rules;
@@ -386,9 +289,9 @@ AssociationSelect.Designer = function Designer() {
386
289
  type: 'object',
387
290
  title: t('Set default value'),
388
291
  properties: {
389
- default: _objectSpread(_objectSpread({}, fieldSchema || {}), {}, {
292
+ default: _objectSpread(_objectSpread({}, fieldSchemaWithoutRequired || {}), {}, {
390
293
  'x-decorator': 'FormItem',
391
- 'x-component-props': _objectSpread(_objectSpread({}, fieldSchema['x-component-props']), {}, {
294
+ 'x-component-props': _objectSpread(_objectSpread({}, fieldSchemaWithoutRequired['x-component-props']), {}, {
392
295
  component: (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) ? 'AssociationSelect' : undefined,
393
296
  service: {
394
297
  resource: collectionField === null || collectionField === void 0 ? void 0 : collectionField.target
@@ -396,7 +299,7 @@ AssociationSelect.Designer = function Designer() {
396
299
  }),
397
300
  name: 'default',
398
301
  title: t('Default value'),
399
- default: fieldSchema.default || collectionField.defaultValue,
302
+ default: fieldSchema.default || (collectionField === null || collectionField === void 0 ? void 0 : collectionField.defaultValue),
400
303
  'x-read-pretty': false,
401
304
  'x-disabled': false
402
305
  })
@@ -419,9 +322,9 @@ AssociationSelect.Designer = function Designer() {
419
322
  options: fieldComponentOptions,
420
323
  value: fieldSchema['x-component'],
421
324
  onChange: function onChange(type) {
422
- var _collectionField$uiSc4, _interfaceConfig$sche;
325
+ var _collectionField$uiSc3, _interfaceConfig$sche;
423
326
  var schema = {
424
- name: collectionField.name,
327
+ name: collectionField === null || collectionField === void 0 ? void 0 : collectionField.name,
425
328
  type: 'void',
426
329
  required: fieldSchema['required'],
427
330
  description: fieldSchema['description'],
@@ -432,14 +335,14 @@ AssociationSelect.Designer = function Designer() {
432
335
  'x-validator': fieldSchema['x-validator'],
433
336
  'x-collection-field': fieldSchema['x-collection-field'],
434
337
  'x-decorator-props': fieldSchema['x-decorator-props'],
435
- 'x-component-props': _objectSpread(_objectSpread({}, collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc4 = collectionField.uiSchema) === null || _collectionField$uiSc4 === void 0 ? void 0 : _collectionField$uiSc4['x-component-props']), fieldSchema['x-component-props'])
338
+ 'x-component-props': _objectSpread(_objectSpread({}, collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc3 = collectionField.uiSchema) === null || _collectionField$uiSc3 === void 0 ? void 0 : _collectionField$uiSc3['x-component-props']), fieldSchema['x-component-props'])
436
339
  };
437
340
  interfaceConfig === null || interfaceConfig === void 0 ? void 0 : (_interfaceConfig$sche = interfaceConfig.schemaInitialize) === null || _interfaceConfig$sche === void 0 ? void 0 : _interfaceConfig$sche.call(interfaceConfig, schema, {
438
341
  field: collectionField,
439
342
  block: 'Form',
440
343
  readPretty: field.readPretty,
441
344
  action: tk ? 'get' : null,
442
- targetCollection: getCollection(collectionField.target)
345
+ targetCollection: getCollection(collectionField === null || collectionField === void 0 ? void 0 : collectionField.target)
443
346
  });
444
347
  if (type === 'CollectionField') {
445
348
  schema['type'] = 'string';
@@ -455,9 +358,9 @@ AssociationSelect.Designer = function Designer() {
455
358
  }
456
359
  });
457
360
  }
458
- }), form && !(form === null || form === void 0 ? void 0 : form.readPretty) && ['o2m', 'm2m'].includes(collectionField.interface) && fieldSchema['x-component'] !== 'TableField' && /*#__PURE__*/React.createElement(SchemaSettings.SwitchItem, {
361
+ }), IsShowMultipleSwitch() ? /*#__PURE__*/React.createElement(SchemaSettings.SwitchItem, {
459
362
  key: "multiple",
460
- title: t('Multiple'),
363
+ title: t('Allow multiple'),
461
364
  checked: ((_fieldSchema$xCompon = fieldSchema['x-component-props']) === null || _fieldSchema$xCompon === void 0 ? void 0 : _fieldSchema$xCompon.multiple) === undefined ? true : fieldSchema['x-component-props'].multiple,
462
365
  onChange: function onChange(value) {
463
366
  var schema = _defineProperty({}, 'x-uid', fieldSchema['x-uid']);
@@ -471,7 +374,7 @@ AssociationSelect.Designer = function Designer() {
471
374
  });
472
375
  refresh();
473
376
  }
474
- }), /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
377
+ }) : null, /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
475
378
  title: t('Set the data scope'),
476
379
  schema: {
477
380
  type: 'object',
@@ -490,14 +393,14 @@ AssociationSelect.Designer = function Designer() {
490
393
  }
491
394
  }
492
395
  },
493
- onSubmit: function onSubmit(_ref4) {
494
- var _schema5;
495
- var filter = _ref4.filter;
396
+ onSubmit: function onSubmit(_ref) {
397
+ var _schema4;
398
+ var filter = _ref.filter;
496
399
  filter = removeNullCondition(filter);
497
400
  _.set(field.componentProps, 'service.params.filter', filter);
498
401
  fieldSchema['x-component-props'] = field.componentProps;
499
402
  dn.emit('patch', {
500
- schema: (_schema5 = {}, _defineProperty(_schema5, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema5, 'x-component-props', field.componentProps), _schema5)
403
+ schema: (_schema4 = {}, _defineProperty(_schema4, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema4, 'x-component-props', field.componentProps), _schema4)
501
404
  });
502
405
  }
503
406
  }), /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
@@ -571,16 +474,16 @@ AssociationSelect.Designer = function Designer() {
571
474
  }
572
475
  }
573
476
  },
574
- onSubmit: function onSubmit(_ref5) {
575
- var _schema6;
576
- var sort = _ref5.sort;
477
+ onSubmit: function onSubmit(_ref2) {
478
+ var _schema5;
479
+ var sort = _ref2.sort;
577
480
  var sortArr = sort.map(function (item) {
578
481
  return item.direction === 'desc' ? "-".concat(item.field) : item.field;
579
482
  });
580
483
  _.set(field.componentProps, 'service.params.sort', sortArr);
581
484
  fieldSchema['x-component-props'] = field.componentProps;
582
485
  dn.emit('patch', {
583
- schema: (_schema6 = {}, _defineProperty(_schema6, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema6, 'x-component-props', field.componentProps), _schema6)
486
+ schema: (_schema5 = {}, _defineProperty(_schema5, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema5, 'x-component-props', field.componentProps), _schema5)
584
487
  });
585
488
  }
586
489
  }), form && !(form === null || form === void 0 ? void 0 : form.readPretty) && !isPatternDisabled(fieldSchema) && /*#__PURE__*/React.createElement(SchemaSettings.SelectItem, {
@@ -641,9 +544,9 @@ AssociationSelect.Designer = function Designer() {
641
544
  options: options,
642
545
  value: field === null || field === void 0 ? void 0 : (_field$componentProps7 = field.componentProps) === null || _field$componentProps7 === void 0 ? void 0 : (_field$componentProps8 = _field$componentProps7.fieldNames) === null || _field$componentProps8 === void 0 ? void 0 : _field$componentProps8.label,
643
546
  onChange: function onChange(label) {
644
- var _collectionField$uiSc5, _collectionField$uiSc6;
547
+ var _collectionField$uiSc4, _collectionField$uiSc5;
645
548
  var schema = _defineProperty({}, 'x-uid', fieldSchema['x-uid']);
646
- var fieldNames = _objectSpread(_objectSpread(_objectSpread({}, collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc5 = collectionField.uiSchema) === null || _collectionField$uiSc5 === void 0 ? void 0 : (_collectionField$uiSc6 = _collectionField$uiSc5['x-component-props']) === null || _collectionField$uiSc6 === void 0 ? void 0 : _collectionField$uiSc6['fieldNames']), field.componentProps.fieldNames), {}, {
549
+ var fieldNames = _objectSpread(_objectSpread(_objectSpread({}, collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc4 = collectionField.uiSchema) === null || _collectionField$uiSc4 === void 0 ? void 0 : (_collectionField$uiSc5 = _collectionField$uiSc4['x-component-props']) === null || _collectionField$uiSc5 === void 0 ? void 0 : _collectionField$uiSc5['fieldNames']), field.componentProps.fieldNames), {}, {
647
550
  label: label
648
551
  });
649
552
  field.componentProps.fieldNames = fieldNames;
@@ -671,7 +574,7 @@ AssociationSelect.Designer = function Designer() {
671
574
  * @returns
672
575
  */
673
576
  AssociationSelect.FilterDesigner = function FilterDesigner() {
674
- var _interfaceConfig$vali2, _collectionField$uiSc7, _field$componentProps9, _field$componentProps10, _field$componentProps11, _field$componentProps12, _field$componentProps13, _field$componentProps14, _collectionField$uiSc8, _fieldSchema$xDecora2, _collectionField$uiSc10, _field$componentProps15, _field$componentProps16;
577
+ var _interfaceConfig$vali2, _collectionField$uiSc6, _field$componentProps9, _field$componentProps10, _field$componentProps11, _field$componentProps12, _field$componentProps13, _field$componentProps14, _collectionField$uiSc8, _field$componentProps15, _field$componentProps16;
675
578
  var _useCollectionManager2 = useCollectionManager(),
676
579
  getCollectionFields = _useCollectionManager2.getCollectionFields,
677
580
  getInterface = _useCollectionManager2.getInterface,
@@ -691,8 +594,8 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
691
594
  var collectionField = getField(fieldSchema['name']) || getCollectionJoinField(fieldSchema['x-collection-field']);
692
595
  var interfaceConfig = getInterface(collectionField === null || collectionField === void 0 ? void 0 : collectionField.interface);
693
596
  var validateSchema = interfaceConfig === null || interfaceConfig === void 0 ? void 0 : (_interfaceConfig$vali2 = interfaceConfig['validateSchema']) === null || _interfaceConfig$vali2 === void 0 ? void 0 : _interfaceConfig$vali2.call(interfaceConfig, fieldSchema);
694
- var originalTitle = collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc7 = collectionField.uiSchema) === null || _collectionField$uiSc7 === void 0 ? void 0 : _collectionField$uiSc7.title;
695
- var targetFields = (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) ? getCollectionFields(collectionField.target) : [];
597
+ var originalTitle = collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc6 = collectionField.uiSchema) === null || _collectionField$uiSc6 === void 0 ? void 0 : _collectionField$uiSc6.title;
598
+ var targetFields = (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) ? getCollectionFields(collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) : [];
696
599
  var initialValue = {
697
600
  title: field.title === originalTitle ? undefined : field.title
698
601
  };
@@ -728,93 +631,8 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
728
631
  if (fieldSchema['x-read-pretty'] === true) {
729
632
  readOnlyMode = 'read-pretty';
730
633
  }
731
- return /*#__PURE__*/React.createElement(GeneralSchemaDesigner, null, collectionField && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
732
- key: "edit-field-title",
733
- title: t('Edit field title'),
734
- schema: {
735
- type: 'object',
736
- title: t('Edit field title'),
737
- properties: {
738
- title: {
739
- title: t('Field title'),
740
- default: field === null || field === void 0 ? void 0 : field.title,
741
- description: "".concat(t('Original field title: ')).concat(collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc8 = collectionField.uiSchema) === null || _collectionField$uiSc8 === void 0 ? void 0 : _collectionField$uiSc8.title),
742
- 'x-decorator': 'FormItem',
743
- 'x-component': 'Input',
744
- 'x-component-props': {}
745
- }
746
- }
747
- },
748
- onSubmit: function onSubmit(_ref6) {
749
- var title = _ref6.title;
750
- if (title) {
751
- field.title = title;
752
- fieldSchema.title = title;
753
- dn.emit('patch', {
754
- schema: {
755
- 'x-uid': fieldSchema['x-uid'],
756
- title: fieldSchema.title
757
- }
758
- });
759
- }
760
- dn.refresh();
761
- }
762
- }), !field.readPretty && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
763
- key: "edit-description",
764
- title: t('Edit description'),
765
- schema: {
766
- type: 'object',
767
- title: t('Edit description'),
768
- properties: {
769
- description: {
770
- // title: t('Description'),
771
- default: field === null || field === void 0 ? void 0 : field.description,
772
- 'x-decorator': 'FormItem',
773
- 'x-component': 'Input.TextArea',
774
- 'x-component-props': {}
775
- }
776
- }
777
- },
778
- onSubmit: function onSubmit(_ref7) {
779
- var description = _ref7.description;
780
- field.description = description;
781
- fieldSchema.description = description;
782
- dn.emit('patch', {
783
- schema: {
784
- 'x-uid': fieldSchema['x-uid'],
785
- description: fieldSchema.description
786
- }
787
- });
788
- dn.refresh();
789
- }
790
- }), field.readPretty && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
791
- key: "edit-tooltip",
792
- title: t('Edit tooltip'),
793
- schema: {
794
- type: 'object',
795
- title: t('Edit description'),
796
- properties: {
797
- tooltip: {
798
- default: fieldSchema === null || fieldSchema === void 0 ? void 0 : (_fieldSchema$xDecora2 = fieldSchema['x-decorator-props']) === null || _fieldSchema$xDecora2 === void 0 ? void 0 : _fieldSchema$xDecora2.tooltip,
799
- 'x-decorator': 'FormItem',
800
- 'x-component': 'Input.TextArea',
801
- 'x-component-props': {}
802
- }
803
- }
804
- },
805
- onSubmit: function onSubmit(_ref8) {
806
- var tooltip = _ref8.tooltip;
807
- field.decoratorProps.tooltip = tooltip;
808
- fieldSchema['x-decorator-props'] = fieldSchema['x-decorator-props'] || {};
809
- fieldSchema['x-decorator-props']['tooltip'] = tooltip;
810
- dn.emit('patch', {
811
- schema: {
812
- 'x-uid': fieldSchema['x-uid'],
813
- 'x-decorator-props': fieldSchema['x-decorator-props']
814
- }
815
- });
816
- dn.refresh();
817
- }
634
+ return /*#__PURE__*/React.createElement(GeneralSchemaDesigner, null, /*#__PURE__*/React.createElement(GeneralSchemaItems, {
635
+ required: false
818
636
  }), form && !(form === null || form === void 0 ? void 0 : form.readPretty) && validateSchema && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
819
637
  title: t('Set validation rules'),
820
638
  components: {
@@ -903,7 +721,7 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
903
721
  }
904
722
  },
905
723
  onSubmit: function onSubmit(v) {
906
- var _collectionField$uiSc9;
724
+ var _collectionField$uiSc7;
907
725
  var rules = [];
908
726
  var _iterator3 = _createForOfIteratorHelper(v.rules),
909
727
  _step3;
@@ -941,7 +759,7 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
941
759
  _iterator4.f();
942
760
  }
943
761
  }
944
- var concatValidator = _.concat([], (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc9 = collectionField.uiSchema) === null || _collectionField$uiSc9 === void 0 ? void 0 : _collectionField$uiSc9['x-validator']) || [], rules);
762
+ var concatValidator = _.concat([], (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc7 = collectionField.uiSchema) === null || _collectionField$uiSc7 === void 0 ? void 0 : _collectionField$uiSc7['x-validator']) || [], rules);
945
763
  field.validator = concatValidator;
946
764
  fieldSchema['x-validator'] = rules;
947
765
  schema['x-validator'] = rules;
@@ -950,7 +768,7 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
950
768
  });
951
769
  refresh();
952
770
  }
953
- }), form && !(form === null || form === void 0 ? void 0 : form.readPretty) && (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc10 = collectionField.uiSchema) === null || _collectionField$uiSc10 === void 0 ? void 0 : _collectionField$uiSc10.type) && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
771
+ }), form && !(form === null || form === void 0 ? void 0 : form.readPretty) && (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc8 = collectionField.uiSchema) === null || _collectionField$uiSc8 === void 0 ? void 0 : _collectionField$uiSc8.type) && /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
954
772
  title: t('Set default value'),
955
773
  components: {
956
774
  ArrayCollapse: ArrayCollapse,
@@ -960,11 +778,11 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
960
778
  type: 'object',
961
779
  title: t('Set default value'),
962
780
  properties: {
963
- default: _objectSpread(_objectSpread({}, collectionField.uiSchema), {}, {
781
+ default: _objectSpread(_objectSpread({}, _.omit(collectionField === null || collectionField === void 0 ? void 0 : collectionField.uiSchema, 'required')), {}, {
964
782
  name: 'default',
965
783
  title: t('Default value'),
966
784
  'x-decorator': 'FormItem',
967
- default: fieldSchema.default || collectionField.defaultValue
785
+ default: fieldSchema.default || (collectionField === null || collectionField === void 0 ? void 0 : collectionField.defaultValue)
968
786
  })
969
787
  }
970
788
  },
@@ -999,14 +817,14 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
999
817
  }
1000
818
  }
1001
819
  },
1002
- onSubmit: function onSubmit(_ref9) {
1003
- var _schema11;
1004
- var filter = _ref9.filter;
820
+ onSubmit: function onSubmit(_ref3) {
821
+ var _schema10;
822
+ var filter = _ref3.filter;
1005
823
  filter = removeNullCondition(filter);
1006
824
  _.set(field.componentProps, 'service.params.filter', filter);
1007
825
  fieldSchema['x-component-props'] = field.componentProps;
1008
826
  dn.emit('patch', {
1009
- schema: (_schema11 = {}, _defineProperty(_schema11, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema11, 'x-component-props', field.componentProps), _schema11)
827
+ schema: (_schema10 = {}, _defineProperty(_schema10, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema10, 'x-component-props', field.componentProps), _schema10)
1010
828
  });
1011
829
  }
1012
830
  }), /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
@@ -1080,16 +898,16 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
1080
898
  }
1081
899
  }
1082
900
  },
1083
- onSubmit: function onSubmit(_ref10) {
1084
- var _schema12;
1085
- var sort = _ref10.sort;
901
+ onSubmit: function onSubmit(_ref4) {
902
+ var _schema11;
903
+ var sort = _ref4.sort;
1086
904
  var sortArr = sort.map(function (item) {
1087
905
  return item.direction === 'desc' ? "-".concat(item.field) : item.field;
1088
906
  });
1089
907
  _.set(field.componentProps, 'service.params.sort', sortArr);
1090
908
  fieldSchema['x-component-props'] = field.componentProps;
1091
909
  dn.emit('patch', {
1092
- schema: (_schema12 = {}, _defineProperty(_schema12, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema12, 'x-component-props', field.componentProps), _schema12)
910
+ schema: (_schema11 = {}, _defineProperty(_schema11, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema11, 'x-component-props', field.componentProps), _schema11)
1093
911
  });
1094
912
  }
1095
913
  }), (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) && ['CollectionField', 'AssociationSelect'].includes(fieldSchema['x-component']) && /*#__PURE__*/React.createElement(SchemaSettings.SelectItem, {
@@ -1098,9 +916,9 @@ AssociationSelect.FilterDesigner = function FilterDesigner() {
1098
916
  options: options,
1099
917
  value: field === null || field === void 0 ? void 0 : (_field$componentProps15 = field.componentProps) === null || _field$componentProps15 === void 0 ? void 0 : (_field$componentProps16 = _field$componentProps15.fieldNames) === null || _field$componentProps16 === void 0 ? void 0 : _field$componentProps16.label,
1100
918
  onChange: function onChange(label) {
1101
- var _collectionField$uiSc11, _collectionField$uiSc12;
919
+ var _collectionField$uiSc9, _collectionField$uiSc10;
1102
920
  var schema = _defineProperty({}, 'x-uid', fieldSchema['x-uid']);
1103
- var fieldNames = _objectSpread(_objectSpread(_objectSpread({}, collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc11 = collectionField.uiSchema) === null || _collectionField$uiSc11 === void 0 ? void 0 : (_collectionField$uiSc12 = _collectionField$uiSc11['x-component-props']) === null || _collectionField$uiSc12 === void 0 ? void 0 : _collectionField$uiSc12['fieldNames']), field.componentProps.fieldNames), {}, {
921
+ var fieldNames = _objectSpread(_objectSpread(_objectSpread({}, collectionField === null || collectionField === void 0 ? void 0 : (_collectionField$uiSc9 = collectionField.uiSchema) === null || _collectionField$uiSc9 === void 0 ? void 0 : (_collectionField$uiSc10 = _collectionField$uiSc9['x-component-props']) === null || _collectionField$uiSc10 === void 0 ? void 0 : _collectionField$uiSc10['fieldNames']), field.componentProps.fieldNames), {}, {
1104
922
  label: label
1105
923
  });
1106
924
  field.componentProps.fieldNames = fieldNames;
@@ -44,9 +44,9 @@ export default function useServiceOptions(props) {
44
44
  var sourceValue = record === null || record === void 0 ? void 0 : record[collectionField === null || collectionField === void 0 ? void 0 : collectionField.sourceKey];
45
45
  var filter = useMemo(function () {
46
46
  var isOToAny = ['oho', 'o2m'].includes(collectionField === null || collectionField === void 0 ? void 0 : collectionField.interface);
47
- return mergeFilter([mergeFilter([isOToAny && !isInFilterFormBlock(fieldSchema) ? _defineProperty({}, collectionField.foreignKey, {
47
+ return mergeFilter([mergeFilter([isOToAny && !isInFilterFormBlock(fieldSchema) && (collectionField === null || collectionField === void 0 ? void 0 : collectionField.foreignKey) ? _defineProperty({}, collectionField.foreignKey, {
48
48
  $is: null
49
- }) : null, params === null || params === void 0 ? void 0 : params.filter]), isOToAny && sourceValue !== undefined && sourceValue !== null && !isInFilterFormBlock(fieldSchema) ? _defineProperty({}, collectionField.foreignKey, {
49
+ }) : null, params === null || params === void 0 ? void 0 : params.filter]), isOToAny && sourceValue !== undefined && sourceValue !== null && !isInFilterFormBlock(fieldSchema) && (collectionField === null || collectionField === void 0 ? void 0 : collectionField.foreignKey) ? _defineProperty({}, collectionField.foreignKey, {
50
50
  $eq: sourceValue
51
51
  }) : null, (params === null || params === void 0 ? void 0 : params.filter) && value ? _defineProperty({}, fieldNames.value, _defineProperty({}, '$in', value)) : null], '$or');
52
52
  }, [params === null || params === void 0 ? void 0 : params.filter, getCollectionFields, collectionField, sourceValue, value, fieldNames.value]);
@@ -40,6 +40,11 @@ export var CollectionSelect = connect(function (props) {
40
40
  return /*#__PURE__*/React.createElement(Select, _objectSpread(_objectSpread({
41
41
  placeholder: t('Select collection')
42
42
  }, others), {}, {
43
+ showSearch: true,
44
+ filterOption: function filterOption(input, option) {
45
+ var _option$label;
46
+ return ((_option$label = option === null || option === void 0 ? void 0 : option.label) !== null && _option$label !== void 0 ? _option$label : '').includes(input);
47
+ },
43
48
  options: options
44
49
  }));
45
50
  }, mapReadPretty(observer(function (props) {
@@ -0,0 +1 @@
1
+ export declare const ExpandActionDesign: (props: any) => JSX.Element;
@@ -0,0 +1,112 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ import React from 'react';
8
+ import { GeneralSchemaDesigner, SchemaSettings } from '../../../schema-settings';
9
+ import { useTranslation } from 'react-i18next';
10
+ import { useFieldSchema, useField } from '@formily/react';
11
+ import { useDesignable } from '../..';
12
+ export var ExpandActionDesign = function ExpandActionDesign(props) {
13
+ var _fieldSchema$xCompon, _fieldSchema$xCompon2;
14
+ var _useTranslation = useTranslation(),
15
+ t = _useTranslation.t;
16
+ var fieldSchema = useFieldSchema();
17
+ var field = useField();
18
+ var _useDesignable = useDesignable(),
19
+ dn = _useDesignable.dn;
20
+ var _ref = fieldSchema['x-component-props'] || {},
21
+ titleExpand = _ref.titleExpand,
22
+ titleCollapse = _ref.titleCollapse,
23
+ iconExpand = _ref.iconExpand,
24
+ iconCollapse = _ref.iconCollapse;
25
+ return /*#__PURE__*/React.createElement(GeneralSchemaDesigner, _objectSpread(_objectSpread({}, props), {}, {
26
+ disableInitializer: true
27
+ }), /*#__PURE__*/React.createElement(SchemaSettings.ModalItem, {
28
+ title: t('Edit button'),
29
+ schema: {
30
+ type: 'object',
31
+ title: t('Edit button'),
32
+ properties: {
33
+ titleExpand: {
34
+ 'x-decorator': 'FormItem',
35
+ 'x-component': 'Input',
36
+ title: "".concat(t('Button title'), " - ").concat(t('Expand all')),
37
+ default: titleExpand
38
+ },
39
+ titleCollapse: {
40
+ 'x-decorator': 'FormItem',
41
+ 'x-component': 'Input',
42
+ title: "".concat(t('Button title'), " - ").concat(t('Collapse all')),
43
+ default: titleCollapse
44
+ },
45
+ iconExpand: {
46
+ 'x-decorator': 'FormItem',
47
+ 'x-component': 'IconPicker',
48
+ title: "".concat(t('Button icon'), " - ").concat(t('Expand all')),
49
+ default: iconExpand
50
+ },
51
+ iconCollapse: {
52
+ 'x-decorator': 'FormItem',
53
+ 'x-component': 'IconPicker',
54
+ title: "".concat(t('Button icon'), " - ").concat(t('Collapse all')),
55
+ default: iconCollapse
56
+ },
57
+ type: {
58
+ 'x-decorator': 'FormItem',
59
+ 'x-component': 'Radio.Group',
60
+ title: t('Button background color'),
61
+ default: (fieldSchema === null || fieldSchema === void 0 ? void 0 : (_fieldSchema$xCompon = fieldSchema['x-component-props']) === null || _fieldSchema$xCompon === void 0 ? void 0 : _fieldSchema$xCompon.danger) ? 'danger' : (fieldSchema === null || fieldSchema === void 0 ? void 0 : (_fieldSchema$xCompon2 = fieldSchema['x-component-props']) === null || _fieldSchema$xCompon2 === void 0 ? void 0 : _fieldSchema$xCompon2.type) === 'primary' ? 'primary' : 'default',
62
+ enum: [{
63
+ value: 'default',
64
+ label: '{{t("Default")}}'
65
+ }, {
66
+ value: 'primary',
67
+ label: '{{t("Highlight")}}'
68
+ }, {
69
+ value: 'danger',
70
+ label: '{{t("Danger red")}}'
71
+ }]
72
+ }
73
+ }
74
+ },
75
+ onSubmit: function onSubmit(_ref2) {
76
+ var titleExpand = _ref2.titleExpand,
77
+ titleCollapse = _ref2.titleCollapse,
78
+ iconExpand = _ref2.iconExpand,
79
+ iconCollapse = _ref2.iconCollapse,
80
+ type = _ref2.type;
81
+ fieldSchema.title = t('Expand/Collapse');
82
+ field.title = t('Expand/Collapse');
83
+ field.componentProps.icon = iconExpand;
84
+ field.componentProps.danger = type === 'danger';
85
+ field.componentProps.type = type;
86
+ fieldSchema['x-component-props'] = _objectSpread(_objectSpread({}, fieldSchema['x-component-props'] || {}), {}, {
87
+ titleExpand: titleExpand,
88
+ titleCollapse: titleCollapse,
89
+ iconExpand: iconExpand,
90
+ iconCollapse: iconCollapse,
91
+ type: type,
92
+ danger: type === 'danger'
93
+ });
94
+ dn.emit('patch', {
95
+ schema: {
96
+ 'x-uid': fieldSchema['x-uid'],
97
+ 'x-component-props': fieldSchema['x-component-props'],
98
+ title: fieldSchema.title
99
+ }
100
+ });
101
+ dn.refresh();
102
+ }
103
+ }), /*#__PURE__*/React.createElement(SchemaSettings.Divider, null), /*#__PURE__*/React.createElement(SchemaSettings.Remove, {
104
+ removeParentsIfNoChildren: true,
105
+ breakRemoveOn: function breakRemoveOn(s) {
106
+ return s['x-component'] === 'Space' || s['x-component'].endsWith('ActionBar');
107
+ },
108
+ confirm: {
109
+ title: t('Delete action')
110
+ }
111
+ }));
112
+ };
@@ -0,0 +1 @@
1
+ export declare const ExpandAction: (props: any) => JSX.Element;