@nocobase/client 0.9.0-alpha.2 → 0.9.1-alpha.2

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 (327) hide show
  1. package/es/acl/ACLProvider.js +7 -8
  2. package/es/api-client/APIClient.js +6 -0
  3. package/es/block-provider/BlockProvider.js +9 -6
  4. package/es/block-provider/FormBlockProvider.js +18 -9
  5. package/es/block-provider/KanbanBlockProvider.js +1 -1
  6. package/es/block-provider/SharedFilterProvider.js +9 -1
  7. package/es/block-provider/TableBlockProvider.js +1 -1
  8. package/es/block-provider/TableSelectorProvider.js +2 -2
  9. package/es/block-provider/hooks/index.js +22 -7
  10. package/es/collection-manager/CollectionManagerProvider.d.ts +1 -0
  11. package/es/collection-manager/CollectionManagerProvider.js +71 -9
  12. package/es/collection-manager/CollectionManagerShortcut.js +36 -23
  13. package/es/collection-manager/Configuration/AddCategoryAction.d.ts +2 -0
  14. package/es/collection-manager/Configuration/AddCategoryAction.js +117 -0
  15. package/es/collection-manager/Configuration/AddCollectionAction.js +8 -3
  16. package/es/collection-manager/Configuration/AddFieldAction.js +1 -0
  17. package/es/collection-manager/Configuration/ConfigurationTable.js +33 -4
  18. package/es/collection-manager/Configuration/ConfigurationTabs.d.ts +1 -0
  19. package/es/collection-manager/Configuration/ConfigurationTabs.js +381 -0
  20. package/es/collection-manager/Configuration/EditCategoryAction.d.ts +2 -0
  21. package/es/collection-manager/Configuration/EditCategoryAction.js +150 -0
  22. package/es/collection-manager/Configuration/EditCollectionAction.js +6 -2
  23. package/es/collection-manager/Configuration/OverridingCollectionField.js +17 -8
  24. package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +2 -0
  25. package/es/collection-manager/Configuration/components/CollectionCategory.js +13 -0
  26. package/es/collection-manager/Configuration/index.d.ts +3 -0
  27. package/es/collection-manager/Configuration/index.js +3 -0
  28. package/es/collection-manager/Configuration/schemas/collections.d.ts +3 -0
  29. package/es/collection-manager/Configuration/schemas/collections.js +309 -176
  30. package/es/collection-manager/Configuration/templates.d.ts +1 -0
  31. package/es/collection-manager/Configuration/templates.js +1 -1
  32. package/es/collection-manager/action-hooks.d.ts +4 -0
  33. package/es/collection-manager/action-hooks.js +26 -12
  34. package/es/collection-manager/context.d.ts +4 -0
  35. package/es/collection-manager/context.js +5 -1
  36. package/es/collection-manager/hooks/useCollectionManager.d.ts +7 -0
  37. package/es/collection-manager/hooks/useCollectionManager.js +52 -7
  38. package/es/collection-manager/interfaces/m2m.js +2 -2
  39. package/es/collection-manager/interfaces/properties/index.d.ts +0 -56
  40. package/es/collection-manager/interfaces/properties/index.js +1 -2
  41. package/es/collection-manager/templates/calendar.js +1 -1
  42. package/es/collection-manager/templates/general.js +1 -1
  43. package/es/collection-manager/templates/properties/index.d.ts +12 -1
  44. package/es/collection-manager/templates/properties/index.js +11 -0
  45. package/es/i18n/i18n.js +3 -1
  46. package/es/locale/en_US.d.ts +23 -0
  47. package/es/locale/en_US.js +23 -0
  48. package/es/locale/ja_JP.d.ts +23 -0
  49. package/es/locale/ja_JP.js +24 -1
  50. package/es/locale/ru_RU.d.ts +1 -0
  51. package/es/locale/ru_RU.js +1 -0
  52. package/es/locale/zh_CN.d.ts +43 -4
  53. package/es/locale/zh_CN.js +44 -5
  54. package/es/route-switch/antd/admin-layout/index.js +13 -33
  55. package/es/schema-component/antd/action/Action.Designer.js +28 -15
  56. package/es/schema-component/antd/action/Action.js +28 -5
  57. package/es/schema-component/antd/action/utils.d.ts +1 -0
  58. package/es/schema-component/antd/action/utils.js +49 -0
  59. package/es/schema-component/antd/association-filter/AssociationFilter.js +4 -4
  60. package/es/schema-component/antd/association-select/AssociationSelect.d.ts +2 -2
  61. package/es/schema-component/antd/association-select/useServiceOptions.js +47 -6
  62. package/es/schema-component/antd/calendar/Calendar.Designer.js +17 -36
  63. package/es/schema-component/antd/checkbox/Checkbox.js +9 -8
  64. package/es/schema-component/antd/date-picker/util.d.ts +1 -1
  65. package/es/schema-component/antd/date-picker/util.js +1 -1
  66. package/es/schema-component/antd/filter/DynamicComponent.js +3 -1
  67. package/es/schema-component/antd/filter/Filter.js +2 -1
  68. package/es/schema-component/antd/filter/FilterGroup.js +7 -4
  69. package/es/schema-component/antd/filter/FilterItem.js +3 -2
  70. package/es/schema-component/antd/filter/context.d.ts +1 -0
  71. package/es/schema-component/antd/filter/useValues.js +14 -11
  72. package/es/schema-component/antd/form/Form.js +11 -5
  73. package/es/schema-component/antd/form-item/FormItem.js +17 -8
  74. package/es/schema-component/antd/form-v2/Form.Designer.js +2 -0
  75. package/es/schema-component/antd/form-v2/Form.js +94 -7
  76. package/es/schema-component/antd/form-v2/utils.d.ts +5 -0
  77. package/es/schema-component/antd/form-v2/utils.js +161 -0
  78. package/es/schema-component/antd/g2plot/G2Plot.js +3 -1
  79. package/es/schema-component/antd/grid/Grid.js +10 -5
  80. package/es/schema-component/antd/icon-picker/IconPicker.js +1 -0
  81. package/es/schema-component/antd/index.d.ts +1 -0
  82. package/es/schema-component/antd/index.js +1 -0
  83. package/es/schema-component/antd/input/Input.d.ts +2 -1
  84. package/es/schema-component/antd/input/Json.d.ts +5 -3
  85. package/es/schema-component/antd/input/Json.js +3 -2
  86. package/es/schema-component/antd/input/ReadPretty.js +1 -1
  87. package/es/schema-component/antd/input-number/InputNumber.js +3 -1
  88. package/es/schema-component/antd/page/FixedBlock.js +3 -1
  89. package/es/schema-component/antd/page/Page.js +11 -5
  90. package/es/schema-component/antd/page/PageTabDesigner.js +3 -3
  91. package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +3 -1
  92. package/es/schema-component/antd/record-picker/RecordPicker.js +1 -2
  93. package/es/schema-component/antd/record-picker/util.js +7 -0
  94. package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +2 -0
  95. package/es/schema-component/antd/remote-select/RemoteSelect.js +78 -36
  96. package/es/schema-component/antd/rich-text/RichText.js +4 -2
  97. package/es/schema-component/antd/select/Select.js +14 -4
  98. package/es/schema-component/antd/table/Table.Array.js +10 -3
  99. package/es/schema-component/antd/table-v2/Table.Column.Designer.js +2 -2
  100. package/es/schema-component/antd/table-v2/TableBlockDesigner.js +3 -2
  101. package/es/schema-component/antd/tabs/Tabs.Designer.js +1 -0
  102. package/es/schema-component/antd/tabs/Tabs.js +1 -0
  103. package/es/schema-component/antd/time-picker/TimePicker.js +1 -1
  104. package/es/schema-component/antd/variable/Input.d.ts +2 -0
  105. package/es/schema-component/antd/variable/Input.js +244 -0
  106. package/es/schema-component/antd/variable/JSONInput.d.ts +2 -0
  107. package/es/schema-component/antd/variable/JSONInput.js +82 -0
  108. package/es/schema-component/antd/variable/TextArea.d.ts +2 -0
  109. package/es/schema-component/antd/variable/TextArea.js +322 -0
  110. package/es/schema-component/antd/variable/Variable.d.ts +8 -0
  111. package/es/schema-component/antd/variable/Variable.js +11 -0
  112. package/es/schema-component/antd/variable/index.d.ts +1 -0
  113. package/es/schema-component/antd/variable/index.js +1 -0
  114. package/es/schema-component/common/sortable-item/SortableItem.js +36 -6
  115. package/es/schema-component/common/utils/logic.js +523 -0
  116. package/es/schema-component/common/utils/uitls.d.ts +1 -0
  117. package/es/schema-component/common/utils/uitls.js +89 -0
  118. package/es/schema-initializer/SchemaInitializer.js +9 -4
  119. package/es/schema-initializer/buttons/BlockInitializers.d.ts +2 -184
  120. package/es/schema-initializer/buttons/BlockInitializers.js +1 -102
  121. package/es/schema-initializer/buttons/RecordBlockInitializers.js +72 -16
  122. package/es/schema-initializer/buttons/TableActionColumnInitializers.d.ts +1 -0
  123. package/es/schema-initializer/buttons/TableActionColumnInitializers.js +1 -3
  124. package/es/schema-initializer/components/CreateRecordAction.d.ts +3 -0
  125. package/es/schema-initializer/components/CreateRecordAction.js +174 -0
  126. package/es/schema-initializer/components/index.d.ts +1 -0
  127. package/es/schema-initializer/components/index.js +2 -1
  128. package/es/schema-initializer/index.d.ts +2 -1
  129. package/es/schema-initializer/index.js +2 -1
  130. package/es/schema-initializer/items/CalendarBlockInitializer.js +24 -41
  131. package/es/schema-initializer/items/CreateActionInitializer.js +3 -3
  132. package/es/schema-initializer/items/RecordFormBlockInitializer.js +9 -9
  133. package/es/schema-initializer/items/index.d.ts +4 -4
  134. package/es/schema-initializer/items/index.js +6 -6
  135. package/es/schema-initializer/utils.js +22 -7
  136. package/es/schema-settings/EnableChildCollections/index.d.ts +2 -0
  137. package/es/schema-settings/EnableChildCollections/index.js +141 -0
  138. package/es/schema-settings/LinkageRules/DynamicComponent.d.ts +1 -0
  139. package/es/schema-settings/LinkageRules/DynamicComponent.js +113 -0
  140. package/es/schema-settings/LinkageRules/FilterDynamicComponent.d.ts +2 -0
  141. package/es/schema-settings/LinkageRules/FilterDynamicComponent.js +15 -0
  142. package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +3 -0
  143. package/es/schema-settings/LinkageRules/LinkageRuleAction.js +162 -0
  144. package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +3 -0
  145. package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.js +71 -0
  146. package/es/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +1 -0
  147. package/es/schema-settings/LinkageRules/ValueDynamicComponent.js +82 -0
  148. package/es/schema-settings/LinkageRules/Variables.d.ts +7 -0
  149. package/es/schema-settings/LinkageRules/Variables.js +115 -0
  150. package/es/schema-settings/LinkageRules/action-hooks.d.ts +1 -0
  151. package/es/schema-settings/LinkageRules/action-hooks.js +115 -0
  152. package/es/schema-settings/LinkageRules/context.d.ts +13 -0
  153. package/es/schema-settings/LinkageRules/context.js +4 -0
  154. package/es/schema-settings/LinkageRules/index.d.ts +2 -0
  155. package/es/schema-settings/LinkageRules/index.js +132 -0
  156. package/es/schema-settings/LinkageRules/type.d.ts +13 -0
  157. package/es/schema-settings/LinkageRules/type.js +15 -0
  158. package/es/schema-settings/LinkageRules/useValues.d.ts +1 -0
  159. package/es/schema-settings/LinkageRules/useValues.js +84 -0
  160. package/es/schema-settings/SchemaSettings.d.ts +4 -1
  161. package/es/schema-settings/SchemaSettings.js +219 -26
  162. package/es/schema-templates/BlockTemplate.js +9 -1
  163. package/es/system-settings/SystemSettingsShortcut.js +1 -1
  164. package/lib/acl/ACLProvider.js +7 -8
  165. package/lib/api-client/APIClient.js +6 -0
  166. package/lib/block-provider/BlockProvider.js +9 -6
  167. package/lib/block-provider/FormBlockProvider.js +17 -8
  168. package/lib/block-provider/KanbanBlockProvider.js +1 -1
  169. package/lib/block-provider/SharedFilterProvider.js +9 -3
  170. package/lib/block-provider/TableBlockProvider.js +1 -1
  171. package/lib/block-provider/TableSelectorProvider.js +2 -2
  172. package/lib/block-provider/hooks/index.js +23 -7
  173. package/lib/collection-manager/CollectionManagerProvider.d.ts +1 -0
  174. package/lib/collection-manager/CollectionManagerProvider.js +81 -16
  175. package/lib/collection-manager/CollectionManagerShortcut.js +36 -23
  176. package/lib/collection-manager/Configuration/AddCategoryAction.d.ts +2 -0
  177. package/lib/collection-manager/Configuration/AddCategoryAction.js +145 -0
  178. package/lib/collection-manager/Configuration/AddCollectionAction.js +8 -3
  179. package/lib/collection-manager/Configuration/AddFieldAction.js +1 -0
  180. package/lib/collection-manager/Configuration/ConfigurationTable.js +34 -4
  181. package/lib/collection-manager/Configuration/ConfigurationTabs.d.ts +1 -0
  182. package/lib/collection-manager/Configuration/ConfigurationTabs.js +407 -0
  183. package/lib/collection-manager/Configuration/EditCategoryAction.d.ts +2 -0
  184. package/lib/collection-manager/Configuration/EditCategoryAction.js +178 -0
  185. package/lib/collection-manager/Configuration/EditCollectionAction.js +6 -2
  186. package/lib/collection-manager/Configuration/OverridingCollectionField.js +17 -8
  187. package/lib/collection-manager/Configuration/components/CollectionCategory.d.ts +2 -0
  188. package/lib/collection-manager/Configuration/components/CollectionCategory.js +27 -0
  189. package/lib/collection-manager/Configuration/index.d.ts +3 -0
  190. package/lib/collection-manager/Configuration/index.js +39 -0
  191. package/lib/collection-manager/Configuration/schemas/collections.d.ts +3 -0
  192. package/lib/collection-manager/Configuration/schemas/collections.js +316 -178
  193. package/lib/collection-manager/Configuration/templates.d.ts +1 -0
  194. package/lib/collection-manager/Configuration/templates.js +2 -0
  195. package/lib/collection-manager/action-hooks.d.ts +4 -0
  196. package/lib/collection-manager/action-hooks.js +30 -13
  197. package/lib/collection-manager/context.d.ts +4 -0
  198. package/lib/collection-manager/context.js +7 -2
  199. package/lib/collection-manager/hooks/useCollectionManager.d.ts +7 -0
  200. package/lib/collection-manager/hooks/useCollectionManager.js +52 -6
  201. package/lib/collection-manager/interfaces/m2m.js +2 -2
  202. package/lib/collection-manager/interfaces/properties/index.d.ts +0 -56
  203. package/lib/collection-manager/interfaces/properties/index.js +1 -2
  204. package/lib/collection-manager/templates/calendar.js +1 -1
  205. package/lib/collection-manager/templates/general.js +1 -1
  206. package/lib/collection-manager/templates/properties/index.d.ts +12 -1
  207. package/lib/collection-manager/templates/properties/index.js +11 -0
  208. package/lib/i18n/i18n.js +3 -1
  209. package/lib/locale/en_US.d.ts +23 -0
  210. package/lib/locale/en_US.js +23 -0
  211. package/lib/locale/ja_JP.d.ts +23 -0
  212. package/lib/locale/ja_JP.js +24 -1
  213. package/lib/locale/ru_RU.d.ts +1 -0
  214. package/lib/locale/ru_RU.js +1 -0
  215. package/lib/locale/zh_CN.d.ts +43 -4
  216. package/lib/locale/zh_CN.js +44 -5
  217. package/lib/route-switch/antd/admin-layout/index.js +13 -33
  218. package/lib/schema-component/antd/action/Action.Designer.js +30 -14
  219. package/lib/schema-component/antd/action/Action.js +29 -3
  220. package/lib/schema-component/antd/action/utils.d.ts +1 -0
  221. package/lib/schema-component/antd/action/utils.js +58 -2
  222. package/lib/schema-component/antd/association-filter/AssociationFilter.js +3 -3
  223. package/lib/schema-component/antd/association-select/AssociationSelect.d.ts +2 -2
  224. package/lib/schema-component/antd/association-select/useServiceOptions.js +47 -4
  225. package/lib/schema-component/antd/calendar/Calendar.Designer.js +15 -33
  226. package/lib/schema-component/antd/checkbox/Checkbox.js +8 -7
  227. package/lib/schema-component/antd/date-picker/util.d.ts +1 -1
  228. package/lib/schema-component/antd/date-picker/util.js +1 -1
  229. package/lib/schema-component/antd/filter/DynamicComponent.js +3 -1
  230. package/lib/schema-component/antd/filter/Filter.js +2 -1
  231. package/lib/schema-component/antd/filter/FilterGroup.js +7 -4
  232. package/lib/schema-component/antd/filter/FilterItem.js +3 -2
  233. package/lib/schema-component/antd/filter/context.d.ts +1 -0
  234. package/lib/schema-component/antd/filter/useValues.js +15 -11
  235. package/lib/schema-component/antd/form/Form.js +9 -3
  236. package/lib/schema-component/antd/form-item/FormItem.js +21 -7
  237. package/lib/schema-component/antd/form-v2/Form.Designer.js +2 -0
  238. package/lib/schema-component/antd/form-v2/Form.js +93 -5
  239. package/lib/schema-component/antd/form-v2/utils.d.ts +5 -0
  240. package/lib/schema-component/antd/form-v2/utils.js +181 -0
  241. package/lib/schema-component/antd/g2plot/G2Plot.js +3 -1
  242. package/lib/schema-component/antd/grid/Grid.js +10 -5
  243. package/lib/schema-component/antd/icon-picker/IconPicker.js +1 -0
  244. package/lib/schema-component/antd/index.d.ts +1 -0
  245. package/lib/schema-component/antd/index.js +13 -0
  246. package/lib/schema-component/antd/input/Input.d.ts +2 -1
  247. package/lib/schema-component/antd/input/Json.d.ts +5 -3
  248. package/lib/schema-component/antd/input/Json.js +6 -3
  249. package/lib/schema-component/antd/input/ReadPretty.js +1 -1
  250. package/lib/schema-component/antd/input-number/InputNumber.js +2 -0
  251. package/lib/schema-component/antd/page/FixedBlock.js +3 -1
  252. package/lib/schema-component/antd/page/Page.js +14 -5
  253. package/lib/schema-component/antd/page/PageTabDesigner.js +1 -1
  254. package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +3 -1
  255. package/lib/schema-component/antd/record-picker/RecordPicker.js +1 -2
  256. package/lib/schema-component/antd/record-picker/util.js +7 -0
  257. package/lib/schema-component/antd/remote-select/RemoteSelect.d.ts +2 -0
  258. package/lib/schema-component/antd/remote-select/RemoteSelect.js +78 -37
  259. package/lib/schema-component/antd/rich-text/RichText.js +4 -2
  260. package/lib/schema-component/antd/select/Select.js +14 -4
  261. package/lib/schema-component/antd/table/Table.Array.js +8 -1
  262. package/lib/schema-component/antd/table-v2/Table.Column.Designer.js +2 -2
  263. package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +3 -2
  264. package/lib/schema-component/antd/tabs/Tabs.Designer.js +1 -0
  265. package/lib/schema-component/antd/tabs/Tabs.js +1 -0
  266. package/lib/schema-component/antd/time-picker/TimePicker.js +1 -1
  267. package/lib/schema-component/antd/variable/Input.d.ts +2 -0
  268. package/lib/schema-component/antd/variable/Input.js +262 -0
  269. package/lib/schema-component/antd/variable/JSONInput.d.ts +2 -0
  270. package/lib/schema-component/antd/variable/JSONInput.js +100 -0
  271. package/lib/schema-component/antd/variable/TextArea.d.ts +2 -0
  272. package/lib/schema-component/antd/variable/TextArea.js +341 -0
  273. package/lib/schema-component/antd/variable/Variable.d.ts +8 -0
  274. package/lib/schema-component/antd/variable/Variable.js +25 -0
  275. package/lib/schema-component/antd/variable/index.d.ts +1 -0
  276. package/lib/schema-component/antd/variable/index.js +18 -0
  277. package/lib/schema-component/common/sortable-item/SortableItem.js +36 -6
  278. package/lib/schema-component/common/utils/logic.js +525 -0
  279. package/lib/schema-component/common/utils/uitls.d.ts +1 -0
  280. package/lib/schema-component/common/utils/uitls.js +103 -0
  281. package/lib/schema-initializer/SchemaInitializer.js +9 -4
  282. package/lib/schema-initializer/buttons/BlockInitializers.d.ts +2 -184
  283. package/lib/schema-initializer/buttons/BlockInitializers.js +0 -108
  284. package/lib/schema-initializer/buttons/RecordBlockInitializers.js +72 -16
  285. package/lib/schema-initializer/buttons/TableActionColumnInitializers.d.ts +1 -0
  286. package/lib/schema-initializer/buttons/TableActionColumnInitializers.js +3 -1
  287. package/lib/schema-initializer/components/CreateRecordAction.d.ts +3 -0
  288. package/lib/schema-initializer/components/CreateRecordAction.js +199 -0
  289. package/lib/schema-initializer/components/index.d.ts +1 -0
  290. package/lib/schema-initializer/components/index.js +13 -0
  291. package/lib/schema-initializer/index.d.ts +2 -1
  292. package/lib/schema-initializer/index.js +51 -2
  293. package/lib/schema-initializer/items/CalendarBlockInitializer.js +16 -33
  294. package/lib/schema-initializer/items/CreateActionInitializer.js +3 -3
  295. package/lib/schema-initializer/items/RecordFormBlockInitializer.js +3 -3
  296. package/lib/schema-initializer/items/index.d.ts +4 -4
  297. package/lib/schema-initializer/items/index.js +52 -52
  298. package/lib/schema-initializer/utils.js +22 -6
  299. package/lib/schema-settings/EnableChildCollections/index.d.ts +2 -0
  300. package/lib/schema-settings/EnableChildCollections/index.js +156 -0
  301. package/lib/schema-settings/LinkageRules/DynamicComponent.d.ts +1 -0
  302. package/lib/schema-settings/LinkageRules/DynamicComponent.js +139 -0
  303. package/lib/schema-settings/LinkageRules/FilterDynamicComponent.d.ts +2 -0
  304. package/lib/schema-settings/LinkageRules/FilterDynamicComponent.js +27 -0
  305. package/lib/schema-settings/LinkageRules/LinkageRuleAction.d.ts +3 -0
  306. package/lib/schema-settings/LinkageRules/LinkageRuleAction.js +190 -0
  307. package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +3 -0
  308. package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.js +90 -0
  309. package/lib/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +1 -0
  310. package/lib/schema-settings/LinkageRules/ValueDynamicComponent.js +104 -0
  311. package/lib/schema-settings/LinkageRules/Variables.d.ts +7 -0
  312. package/lib/schema-settings/LinkageRules/Variables.js +124 -0
  313. package/lib/schema-settings/LinkageRules/action-hooks.d.ts +1 -0
  314. package/lib/schema-settings/LinkageRules/action-hooks.js +127 -0
  315. package/lib/schema-settings/LinkageRules/context.d.ts +13 -0
  316. package/lib/schema-settings/LinkageRules/context.js +15 -0
  317. package/lib/schema-settings/LinkageRules/index.d.ts +2 -0
  318. package/lib/schema-settings/LinkageRules/index.js +149 -0
  319. package/lib/schema-settings/LinkageRules/type.d.ts +13 -0
  320. package/lib/schema-settings/LinkageRules/type.js +22 -0
  321. package/lib/schema-settings/LinkageRules/useValues.d.ts +1 -0
  322. package/lib/schema-settings/LinkageRules/useValues.js +95 -0
  323. package/lib/schema-settings/SchemaSettings.d.ts +4 -1
  324. package/lib/schema-settings/SchemaSettings.js +243 -48
  325. package/lib/schema-templates/BlockTemplate.js +9 -1
  326. package/lib/system-settings/SystemSettingsShortcut.js +1 -1
  327. package/package.json +4 -4
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.useVariableOptions = useVariableOptions;
7
+
8
+ var _schemaComponent = require("../../schema-component");
9
+
10
+ var _collectionManager = require("../../collection-manager");
11
+
12
+ function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
13
+
14
+ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
15
+
16
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
17
+
18
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
19
+
20
+ function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
21
+
22
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
23
+
24
+ var supportsType = ['checkbox', 'number', 'percent', 'integer', 'input', 'textarea', 'email', 'phone', 'datetime', 'createdAt', 'updatedAt', 'radioGroup', 'checkboxGroup', 'select', 'multipleSelect', 'oho', 'obo', 'm2o'];
25
+
26
+ var VariableTypes = function VariableTypes(currentCollection) {
27
+ var _useCollectionManager = (0, _collectionManager.useCollectionManager)(),
28
+ getCollectionFields = _useCollectionManager.getCollectionFields,
29
+ getInterface = _useCollectionManager.getInterface,
30
+ getCollection = _useCollectionManager.getCollection;
31
+
32
+ var collection = getCollection(currentCollection);
33
+ var fields = getCollectionFields(currentCollection);
34
+ return [{
35
+ title: collection.title,
36
+ value: currentCollection,
37
+ options: function options() {
38
+ var field2option = function field2option(field, depth) {
39
+ var _field$uiSchema;
40
+
41
+ if (!field.interface || !supportsType.includes(field.interface)) {
42
+ return;
43
+ }
44
+
45
+ var fieldInterface = getInterface(field.interface);
46
+
47
+ if (!fieldInterface.filterable) {
48
+ return;
49
+ }
50
+
51
+ var _fieldInterface$filte = fieldInterface.filterable,
52
+ nested = _fieldInterface$filte.nested,
53
+ children = _fieldInterface$filte.children;
54
+ var option = {
55
+ key: field.name,
56
+ label: (field === null || field === void 0 ? void 0 : field.title) || ((_field$uiSchema = field.uiSchema) === null || _field$uiSchema === void 0 ? void 0 : _field$uiSchema.title),
57
+ schema: field === null || field === void 0 ? void 0 : field.uiSchema,
58
+ value: field.name
59
+ };
60
+
61
+ if (field.target && depth > 2) {
62
+ return;
63
+ }
64
+
65
+ if (depth > 2) {
66
+ return option;
67
+ }
68
+
69
+ if (children === null || children === void 0 ? void 0 : children.length) {
70
+ option['children'] = children;
71
+ }
72
+
73
+ if (nested) {
74
+ var _option$children;
75
+
76
+ var targetFields = getCollectionFields(field.target);
77
+ var options = getOptions(targetFields, depth + 1).filter(Boolean);
78
+ option['children'] = option['children'] || [];
79
+
80
+ (_option$children = option['children']).push.apply(_option$children, _toConsumableArray(options));
81
+ }
82
+
83
+ return option;
84
+ };
85
+
86
+ var getOptions = function getOptions(fields, depth) {
87
+ var options = [];
88
+ fields.forEach(function (field) {
89
+ var option = field2option(field, depth);
90
+
91
+ if (option) {
92
+ options.push(option);
93
+ }
94
+ });
95
+ return options;
96
+ };
97
+
98
+ return getOptions(fields, 1);
99
+ }
100
+ }, {
101
+ title: "{{t(\"System variables\")}}",
102
+ value: '$system',
103
+ options: [{
104
+ key: 'now',
105
+ value: 'now',
106
+ label: "{{t(\"Current time\")}}"
107
+ }]
108
+ }];
109
+ };
110
+
111
+ function useVariableOptions(collectionName) {
112
+ var compile = (0, _schemaComponent.useCompile)();
113
+ var options = VariableTypes(collectionName).map(function (item) {
114
+ var options = typeof item.options === 'function' ? item.options() : item.options;
115
+ return {
116
+ label: compile(item.title),
117
+ value: item.value,
118
+ key: item.value,
119
+ children: compile(options),
120
+ disabled: options && !options.length
121
+ };
122
+ });
123
+ return options;
124
+ }
@@ -0,0 +1 @@
1
+ export declare const useLinkageCollectionFieldOptions: (collectionName: string) => any[];
@@ -0,0 +1,127 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.useLinkageCollectionFieldOptions = void 0;
7
+
8
+ var _reactI18next = require("react-i18next");
9
+
10
+ var _collectionManager = require("../../collection-manager");
11
+
12
+ var _type = require("./type");
13
+
14
+ var useLinkageCollectionFieldOptions = function useLinkageCollectionFieldOptions(collectionName) {
15
+ var _useCollectionManager = (0, _collectionManager.useCollectionManager)(),
16
+ getCollectionFields = _useCollectionManager.getCollectionFields,
17
+ getInterface = _useCollectionManager.getInterface;
18
+
19
+ var fields = getCollectionFields(collectionName).filter(function (v) {
20
+ return !['id', 'createdAt', 'createdBy', 'updatedAt', 'updatedBy'].includes(v.name);
21
+ });
22
+
23
+ var _useTranslation = (0, _reactI18next.useTranslation)(),
24
+ t = _useTranslation.t;
25
+
26
+ var operators = [{
27
+ label: t('Visible'),
28
+ value: _type.ActionType.Visible,
29
+ selected: true,
30
+ schema: {}
31
+ }, {
32
+ label: t('Editable'),
33
+ value: _type.ActionType.Editable,
34
+ selected: false,
35
+ schema: {}
36
+ }, {
37
+ label: t('Disabled'),
38
+ value: _type.ActionType.ReadOnly,
39
+ selected: false,
40
+ schema: {}
41
+ }, {
42
+ label: t('Easy reading'),
43
+ value: _type.ActionType.ReadPretty,
44
+ selected: false,
45
+ schema: {}
46
+ }, {
47
+ label: t('Hidden'),
48
+ value: _type.ActionType.None,
49
+ selected: false,
50
+ schema: {}
51
+ }, {
52
+ label: t('Hidden(reserved value)'),
53
+ value: _type.ActionType.Hidden,
54
+ selected: false,
55
+ schema: {}
56
+ }, {
57
+ label: t('Required'),
58
+ value: _type.ActionType.Required,
59
+ selected: false,
60
+ schema: {}
61
+ }, {
62
+ label: t('Not required'),
63
+ value: _type.ActionType.InRequired,
64
+ selected: false,
65
+ schema: {}
66
+ }, {
67
+ label: t('Value'),
68
+ value: _type.ActionType.Value,
69
+ selected: false,
70
+ schema: {}
71
+ }];
72
+
73
+ var field2option = function field2option(field, depth) {
74
+ var _field$uiSchema, _operators$filter;
75
+
76
+ var fieldInterface = getInterface(field.interface);
77
+
78
+ if (!fieldInterface) {
79
+ return;
80
+ }
81
+
82
+ var _ref = (fieldInterface === null || fieldInterface === void 0 ? void 0 : fieldInterface.filterable) || {},
83
+ nested = _ref.nested,
84
+ children = _ref.children;
85
+
86
+ var option = {
87
+ name: field.name,
88
+ title: (field === null || field === void 0 ? void 0 : (_field$uiSchema = field.uiSchema) === null || _field$uiSchema === void 0 ? void 0 : _field$uiSchema.title) || field.name,
89
+ schema: field === null || field === void 0 ? void 0 : field.uiSchema,
90
+ interface: field.interface,
91
+ target: field.target,
92
+ operators: (operators === null || operators === void 0 ? void 0 : (_operators$filter = operators.filter) === null || _operators$filter === void 0 ? void 0 : _operators$filter.call(operators, function (operator) {
93
+ if (nested || children || ['formula', 'richText', 'sequence'].includes(fieldInterface.name)) {
94
+ return (operator === null || operator === void 0 ? void 0 : operator.value) !== _type.ActionType.Value;
95
+ }
96
+
97
+ return true;
98
+ })) || []
99
+ };
100
+
101
+ if (field.target && depth > 2) {
102
+ return;
103
+ }
104
+
105
+ if (depth > 2) {
106
+ return option;
107
+ }
108
+
109
+ return option;
110
+ };
111
+
112
+ var getOptions = function getOptions(fields, depth) {
113
+ var options = [];
114
+ fields.forEach(function (field) {
115
+ var option = field2option(field, depth);
116
+
117
+ if (option) {
118
+ options.push(option);
119
+ }
120
+ });
121
+ return options;
122
+ };
123
+
124
+ return getOptions(fields, 1);
125
+ };
126
+
127
+ exports.useLinkageCollectionFieldOptions = useLinkageCollectionFieldOptions;
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import { ObjectField } from '@formily/core';
3
+ import { Schema } from '@formily/react';
4
+ export interface FilterContextProps {
5
+ field?: ObjectField;
6
+ fieldSchema?: Schema;
7
+ dynamicComponent?: any;
8
+ options?: any[];
9
+ disabled?: boolean;
10
+ }
11
+ export declare const RemoveActionContext: import("react").Context<any>;
12
+ export declare const FilterContext: import("react").Context<FilterContextProps>;
13
+ export declare const FilterLogicContext: import("react").Context<any>;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.RemoveActionContext = exports.FilterLogicContext = exports.FilterContext = void 0;
7
+
8
+ var _react = require("react");
9
+
10
+ var RemoveActionContext = /*#__PURE__*/(0, _react.createContext)(null);
11
+ exports.RemoveActionContext = RemoveActionContext;
12
+ var FilterContext = /*#__PURE__*/(0, _react.createContext)(null);
13
+ exports.FilterContext = FilterContext;
14
+ var FilterLogicContext = /*#__PURE__*/(0, _react.createContext)(null);
15
+ exports.FilterLogicContext = FilterLogicContext;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const FormLinkageRules: React.MemoExoticComponent<React.FunctionComponent<Pick<any, string | number | symbol>>>;
@@ -0,0 +1,149 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.FormLinkageRules = void 0;
7
+
8
+ var _css = require("@emotion/css");
9
+
10
+ var _react = require("@formily/react");
11
+
12
+ var _react2 = _interopRequireDefault(require("react"));
13
+
14
+ var _schemaComponent = require("../../schema-component");
15
+
16
+ var _context = require("../../schema-component/antd/filter/context");
17
+
18
+ var _FilterDynamicComponent = require("./FilterDynamicComponent");
19
+
20
+ var _LinkageRuleActionGroup = require("./LinkageRuleActionGroup");
21
+
22
+ var _templateObject;
23
+
24
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25
+
26
+ 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; }
27
+
28
+ 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; }
29
+
30
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
31
+
32
+ function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
33
+
34
+ var FormLinkageRules = (0, _react.observer)(function (props) {
35
+ var fieldSchema = (0, _react.useFieldSchema)();
36
+ var useProps = props.useProps,
37
+ dynamicComponent = props.dynamicComponent;
38
+
39
+ var _useProps = useProps(),
40
+ options = _useProps.options,
41
+ defaultValues = _useProps.defaultValues,
42
+ collectionName = _useProps.collectionName;
43
+
44
+ return /*#__PURE__*/_react2.default.createElement(_context.FilterContext.Provider, {
45
+ value: {
46
+ field: options,
47
+ fieldSchema: fieldSchema,
48
+ dynamicComponent: dynamicComponent,
49
+ options: options || []
50
+ }
51
+ }, /*#__PURE__*/_react2.default.createElement(_schemaComponent.SchemaComponent, {
52
+ schema: {
53
+ type: 'object',
54
+ properties: {
55
+ rules: {
56
+ type: 'array',
57
+ default: defaultValues,
58
+ 'x-component': 'ArrayCollapse',
59
+ 'x-decorator': 'FormItem',
60
+ 'x-component-props': {
61
+ accordion: true
62
+ },
63
+ items: {
64
+ type: 'object',
65
+ 'x-component': 'ArrayCollapse.CollapsePanel',
66
+ 'x-component-props': {
67
+ header: '{{ t("Linkage rule") }}'
68
+ },
69
+ properties: {
70
+ index: {
71
+ type: 'void',
72
+ 'x-component': 'ArrayCollapse.Index'
73
+ },
74
+ layout: {
75
+ type: 'void',
76
+ 'x-component': 'FormLayout',
77
+ 'x-component-props': {
78
+ labelStyle: {
79
+ marginTop: '6px'
80
+ },
81
+ labelCol: 8,
82
+ wrapperCol: 16
83
+ },
84
+ properties: {
85
+ conditions: {
86
+ 'x-component': 'h4',
87
+ 'x-content': '{{ t("Condition") }}'
88
+ },
89
+ condition: {
90
+ 'x-component': 'Filter',
91
+ 'x-component-props': {
92
+ useProps: function useProps() {
93
+ return {
94
+ options: options,
95
+ className: (0, _css.css)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n margin-left: 10px;\n "])))
96
+ };
97
+ },
98
+ dynamicComponent: function dynamicComponent(props) {
99
+ return (0, _FilterDynamicComponent.FilterDynamicComponent)(_objectSpread(_objectSpread({}, props), {}, {
100
+ collectionName: collectionName
101
+ }));
102
+ }
103
+ }
104
+ },
105
+ actions: {
106
+ 'x-component': 'h4',
107
+ 'x-content': '{{ t("Properties") }}'
108
+ },
109
+ action: {
110
+ type: 'void',
111
+ 'x-component': _LinkageRuleActionGroup.LinkageRuleActionGroup,
112
+ 'x-component-props': _objectSpread({}, props)
113
+ }
114
+ }
115
+ },
116
+ remove: {
117
+ type: 'void',
118
+ 'x-component': 'ArrayCollapse.Remove'
119
+ },
120
+ moveUp: {
121
+ type: 'void',
122
+ 'x-component': 'ArrayCollapse.MoveUp'
123
+ },
124
+ moveDown: {
125
+ type: 'void',
126
+ 'x-component': 'ArrayCollapse.MoveDown'
127
+ }
128
+ }
129
+ },
130
+ properties: {
131
+ add: {
132
+ type: 'void',
133
+ title: '{{ t("Add linkage rule") }}',
134
+ 'x-component': 'ArrayCollapse.Addition',
135
+ 'x-reactions': {
136
+ dependencies: ['rules'],
137
+ fulfill: {
138
+ state: {// disabled: '{{$deps[0].length >= 3}}',
139
+ }
140
+ }
141
+ }
142
+ }
143
+ }
144
+ }
145
+ }
146
+ }
147
+ }));
148
+ });
149
+ exports.FormLinkageRules = FormLinkageRules;
@@ -0,0 +1,13 @@
1
+ export declare enum ActionType {
2
+ Visible = "visible",
3
+ Editable = "editable",
4
+ ReadOnly = "disabled",
5
+ ReadPretty = "readPretty",
6
+ None = "none",
7
+ Hidden = "hidden",
8
+ Required = "required",
9
+ InRequired = "notRequired",
10
+ Disabled = "disabled",
11
+ Value = "value",
12
+ Active = "enabled"
13
+ }
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ActionType = void 0;
7
+ var ActionType;
8
+ exports.ActionType = ActionType;
9
+
10
+ (function (ActionType) {
11
+ ActionType["Visible"] = "visible";
12
+ ActionType["Editable"] = "editable";
13
+ ActionType["ReadOnly"] = "disabled";
14
+ ActionType["ReadPretty"] = "readPretty";
15
+ ActionType["None"] = "none";
16
+ ActionType["Hidden"] = "hidden";
17
+ ActionType["Required"] = "required";
18
+ ActionType["InRequired"] = "notRequired";
19
+ ActionType["Disabled"] = "disabled";
20
+ ActionType["Value"] = "value";
21
+ ActionType["Active"] = "enabled";
22
+ })(ActionType || (exports.ActionType = ActionType = {}));
@@ -0,0 +1 @@
1
+ export declare const useValues: (options: any) => any;
@@ -0,0 +1,95 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.useValues = void 0;
7
+
8
+ var _react = require("@formily/react");
9
+
10
+ var _react2 = require("react");
11
+
12
+ var _context = require("./context");
13
+
14
+ 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; }
15
+
16
+ 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; }
17
+
18
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
19
+
20
+ var findOption = function findOption() {
21
+ var _dataIndex$forEach;
22
+
23
+ var dataIndex = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
24
+ var options = arguments.length > 1 ? arguments[1] : undefined;
25
+ var items = options;
26
+ var option;
27
+ dataIndex === null || dataIndex === void 0 ? void 0 : (_dataIndex$forEach = dataIndex.forEach) === null || _dataIndex$forEach === void 0 ? void 0 : _dataIndex$forEach.call(dataIndex, function (name, index) {
28
+ var item = items.find(function (v) {
29
+ return v.name === name;
30
+ });
31
+
32
+ if (item) {
33
+ option = item;
34
+ }
35
+
36
+ items = (item === null || item === void 0 ? void 0 : item.children) || [];
37
+ });
38
+ return option;
39
+ };
40
+
41
+ var useValues = function useValues(options) {
42
+ var field = (0, _react.useField)();
43
+ var logic = (0, _react2.useContext)(_context.FilterLogicContext);
44
+
45
+ var value2data = function value2data() {
46
+ var _field$initialValue;
47
+
48
+ field.data = _objectSpread({}, field.initialValue);
49
+ var dataIndex = (_field$initialValue = field.initialValue) === null || _field$initialValue === void 0 ? void 0 : _field$initialValue.targetFields;
50
+ var option = dataIndex && findOption(dataIndex, options) || {};
51
+ var operators = (option === null || option === void 0 ? void 0 : option.operators) || [];
52
+ field.data.operators = operators;
53
+ field.data.schema = option === null || option === void 0 ? void 0 : option.schema;
54
+ };
55
+
56
+ (0, _react2.useEffect)(value2data, [logic]);
57
+ return _objectSpread(_objectSpread({
58
+ fields: options
59
+ }, field.data), {}, {
60
+ setDataIndex: function setDataIndex(dataIndex) {
61
+ var option = findOption(dataIndex, options);
62
+ field.data = field.data || {};
63
+ var operators = option === null || option === void 0 ? void 0 : option.operators;
64
+ field.data.operators = operators === null || operators === void 0 ? void 0 : operators.filter(function (v) {
65
+ // if (dataIndex.length > 1) {
66
+ // return v.value !== 'value';
67
+ // }
68
+ return true;
69
+ });
70
+ field.data.schema = option === null || option === void 0 ? void 0 : option.schema;
71
+ field.value = field.value || [];
72
+ field.data.operator = undefined;
73
+ field.data.value = undefined;
74
+ field.value = _objectSpread(_objectSpread({}, field.value), {}, {
75
+ targetFields: dataIndex,
76
+ operator: undefined,
77
+ value: undefined
78
+ });
79
+ },
80
+ setOperator: function setOperator(operatorValue) {
81
+ field.data.operator = operatorValue;
82
+ field.value = _objectSpread(_objectSpread({}, field.value), {}, {
83
+ operator: operatorValue
84
+ });
85
+ },
86
+ setValue: function setValue(value) {
87
+ field.data.value = value;
88
+ field.value = _objectSpread(_objectSpread({}, field.value), {}, {
89
+ value: value
90
+ });
91
+ }
92
+ });
93
+ };
94
+
95
+ exports.useValues = useValues;
@@ -1,6 +1,6 @@
1
1
  import { GeneralField } from '@formily/core';
2
2
  import { ISchema, Schema } from '@formily/react';
3
- import { MenuItemProps } from 'antd';
3
+ import { CascaderProps, MenuItemProps } from 'antd';
4
4
  import React from 'react';
5
5
  import { Designable } from '..';
6
6
  interface SchemaSettingsProps {
@@ -32,6 +32,9 @@ declare type SchemaSettingsNested = {
32
32
  schema?: ISchema;
33
33
  }>;
34
34
  SwitchItem?: React.FC<SwitchItemProps>;
35
+ CascaderItem?: React.FC<CascaderProps<any> & Omit<MenuItemProps, 'title'> & {
36
+ title: any;
37
+ }>;
35
38
  [key: string]: any;
36
39
  };
37
40
  interface SchemaSettingsProviderProps {