@tachybase/client 0.23.8-alpha.21 → 0.23.8-alpha.22

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 (1331) hide show
  1. package/lib/api-client/APIClient.mjs +176 -0
  2. package/lib/api-client/APIClientProvider.mjs +23 -0
  3. package/lib/api-client/__tests__/APIClient.test.mjs +64 -0
  4. package/lib/api-client/context.mjs +14 -0
  5. package/lib/api-client/demos/demo1.mjs +47 -0
  6. package/lib/api-client/demos/demo2.mjs +46 -0
  7. package/lib/api-client/demos/demo3.mjs +97 -0
  8. package/lib/api-client/hooks/assign.mjs +106 -0
  9. package/lib/api-client/hooks/index.mjs +9 -0
  10. package/lib/api-client/hooks/useAPIClient.mjs +15 -0
  11. package/lib/api-client/hooks/useRequest.mjs +70 -0
  12. package/lib/api-client/hooks/useResource.mjs +12 -0
  13. package/lib/api-client/index.mjs +11 -0
  14. package/lib/application/AppSchemaComponentProvider.mjs +48 -0
  15. package/lib/application/Application.mjs +431 -0
  16. package/lib/application/AttachmentPreviewManager.mjs +37 -0
  17. package/lib/application/NoticesManager.mjs +132 -0
  18. package/lib/application/Plugin.mjs +66 -0
  19. package/lib/application/PluginContextMenu.mjs +35 -0
  20. package/lib/application/PluginManager.mjs +113 -0
  21. package/lib/application/RouterManager.mjs +148 -0
  22. package/lib/application/SystemSettingsManager.mjs +133 -0
  23. package/lib/application/UserSettingsManager.mjs +135 -0
  24. package/lib/application/WebSocketClient.mjs +202 -0
  25. package/lib/application/__tests__/Application.test.mjs +518 -0
  26. package/lib/application/__tests__/Plugin.test.mjs +213 -0
  27. package/lib/application/__tests__/PluginSettingsManager.test.mjs +168 -0
  28. package/lib/application/__tests__/RouterManager.test.mjs +345 -0
  29. package/lib/application/__tests__/SchemaInitializer.test.mjs +169 -0
  30. package/lib/application/__tests__/SchemaToolbar.test.mjs +171 -0
  31. package/lib/application/__tests__/hoc/withDynamicSchemaProps.test.mjs +207 -0
  32. package/lib/application/__tests__/hooks.test.mjs +112 -0
  33. package/lib/application/__tests__/utils/remotePlugins.test.mjs +331 -0
  34. package/lib/application/__tests__/utils.test.mjs +117 -0
  35. package/lib/application/components/AppComponent.mjs +78 -0
  36. package/lib/application/components/BlankComponent.mjs +18 -0
  37. package/lib/application/components/MainComponent.mjs +29 -0
  38. package/lib/application/components/RouterContextCleaner.mjs +30 -0
  39. package/lib/application/components/defaultComponents.mjs +37 -0
  40. package/lib/application/components/index.mjs +11 -0
  41. package/lib/application/context.mjs +10 -0
  42. package/lib/application/demos/demo1.mjs +136 -0
  43. package/lib/application/demos/demo2.mjs +149 -0
  44. package/lib/application/demos/demo3.mjs +17 -0
  45. package/lib/application/hoc/index.mjs +5 -0
  46. package/lib/application/hoc/withDynamicSchemaProps.mjs +165 -0
  47. package/lib/application/hooks/index.mjs +9 -0
  48. package/lib/application/hooks/useApp.mjs +15 -0
  49. package/lib/application/hooks/usePlugin.mjs +12 -0
  50. package/lib/application/hooks/useRouter.mjs +12 -0
  51. package/lib/application/index.mjs +37 -0
  52. package/lib/application/schema-initializer/SchemaInitializer.mjs +103 -0
  53. package/lib/application/schema-initializer/SchemaInitializerManager.mjs +86 -0
  54. package/lib/application/schema-initializer/components/SchemaInitializerActionModal.mjs +134 -0
  55. package/lib/application/schema-initializer/components/SchemaInitializerButton.mjs +60 -0
  56. package/lib/application/schema-initializer/components/SchemaInitializerChildren.mjs +91 -0
  57. package/lib/application/schema-initializer/components/SchemaInitializerDivider.mjs +25 -0
  58. package/lib/application/schema-initializer/components/SchemaInitializerItem.mjs +124 -0
  59. package/lib/application/schema-initializer/components/SchemaInitializerItemGroup.mjs +63 -0
  60. package/lib/application/schema-initializer/components/SchemaInitializerItems.mjs +23 -0
  61. package/lib/application/schema-initializer/components/SchemaInitializerSelect.mjs +86 -0
  62. package/lib/application/schema-initializer/components/SchemaInitializerSubMenu.mjs +147 -0
  63. package/lib/application/schema-initializer/components/SchemaInitializerSwitch.mjs +59 -0
  64. package/lib/application/schema-initializer/components/index.mjs +23 -0
  65. package/lib/application/schema-initializer/components/style.mjs +47 -0
  66. package/lib/application/schema-initializer/context/index.mjs +18 -0
  67. package/lib/application/schema-initializer/hoc/index.mjs +159 -0
  68. package/lib/application/schema-initializer/hooks/index.mjs +193 -0
  69. package/lib/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.mjs +32 -0
  70. package/lib/application/schema-initializer/index.mjs +17 -0
  71. package/lib/application/schema-initializer/types.mjs +4 -0
  72. package/lib/application/schema-settings/SchemaSettings.mjs +94 -0
  73. package/lib/application/schema-settings/SchemaSettingsDefaults.mjs +241 -0
  74. package/lib/application/schema-settings/SchemaSettingsManager.mjs +86 -0
  75. package/lib/application/schema-settings/components/SchemaSettingsChildren.mjs +123 -0
  76. package/lib/application/schema-settings/components/SchemaSettingsIcon.mjs +34 -0
  77. package/lib/application/schema-settings/components/SchemaSettingsWrapper.mjs +59 -0
  78. package/lib/application/schema-settings/components/index.mjs +7 -0
  79. package/lib/application/schema-settings/context/index.mjs +13 -0
  80. package/lib/application/schema-settings/hooks/index.mjs +63 -0
  81. package/lib/application/schema-settings/index.mjs +15 -0
  82. package/lib/application/schema-settings/types.mjs +4 -0
  83. package/lib/application/schema-toolbar/context/index.mjs +24 -0
  84. package/lib/application/schema-toolbar/hooks/index.mjs +46 -0
  85. package/lib/application/schema-toolbar/index.mjs +7 -0
  86. package/lib/application/utils/globalDeps.mjs +162 -0
  87. package/lib/application/utils/index.mjs +59 -0
  88. package/lib/application/utils/remotePlugins.mjs +129 -0
  89. package/lib/async-data-provider/index.mjs +37 -0
  90. package/lib/block-provider/BlockProvider.mjs +401 -0
  91. package/lib/block-provider/DetailsBlockProvider.mjs +145 -0
  92. package/lib/block-provider/FilterFormBlockProvider.mjs +42 -0
  93. package/lib/block-provider/FormBlockProvider.mjs +222 -0
  94. package/lib/block-provider/FormFieldProvider.mjs +124 -0
  95. package/lib/block-provider/MobileProvider.mjs +24 -0
  96. package/lib/block-provider/PageLayout.mjs +25 -0
  97. package/lib/block-provider/TableBlockProvider.mjs +155 -0
  98. package/lib/block-provider/TableFieldProvider.mjs +197 -0
  99. package/lib/block-provider/TableSelectorProvider.mjs +372 -0
  100. package/lib/block-provider/TreeBlockProvider.mjs +158 -0
  101. package/lib/block-provider/hooks/index.mjs +1465 -0
  102. package/lib/block-provider/hooks/useDataBlockSourceId.mjs +33 -0
  103. package/lib/block-provider/hooks/useFormActiveFields.mjs +56 -0
  104. package/lib/block-provider/hooks/useIsMobile.mjs +16 -0
  105. package/lib/block-provider/hooks/useParsedFilter.mjs +85 -0
  106. package/lib/block-provider/index.mjs +25 -0
  107. package/lib/built-in/acl/ACLProvider.mjs +396 -0
  108. package/lib/built-in/acl/ACLShortcut.mjs +46 -0
  109. package/lib/built-in/acl/Configuration/ConfigureCenter.mjs +182 -0
  110. package/lib/built-in/acl/Configuration/MenuConfigure.mjs +188 -0
  111. package/lib/built-in/acl/Configuration/MenuItemsProvider.mjs +66 -0
  112. package/lib/built-in/acl/Configuration/PermisionProvider.mjs +95 -0
  113. package/lib/built-in/acl/Configuration/RoleConfigure.mjs +173 -0
  114. package/lib/built-in/acl/Configuration/RoleTable.mjs +73 -0
  115. package/lib/built-in/acl/Configuration/RolesResourcesActions.mjs +265 -0
  116. package/lib/built-in/acl/Configuration/ScopeSelect.mjs +61 -0
  117. package/lib/built-in/acl/Configuration/StrategyActions.mjs +143 -0
  118. package/lib/built-in/acl/Configuration/index.mjs +41 -0
  119. package/lib/built-in/acl/Configuration/schemas/roles.mjs +427 -0
  120. package/lib/built-in/acl/Configuration/schemas/scopes.mjs +384 -0
  121. package/lib/built-in/acl/Configuration/schemas/useRoleResourceValues.mjs +46 -0
  122. package/lib/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.mjs +32 -0
  123. package/lib/built-in/acl/index.mjs +25 -0
  124. package/lib/built-in/acl/style.mjs +31 -0
  125. package/lib/built-in/admin-layout/AdminContent.mjs +34 -0
  126. package/lib/built-in/admin-layout/AdminTabs.mjs +21 -0
  127. package/lib/built-in/admin-layout/NoticeArea.mjs +37 -0
  128. package/lib/built-in/admin-layout/components/AddNewButton.mjs +89 -0
  129. package/lib/built-in/admin-layout/components/WelcomeCard.mjs +114 -0
  130. package/lib/built-in/admin-layout/index.mjs +299 -0
  131. package/lib/built-in/admin-layout/style.mjs +150 -0
  132. package/lib/built-in/assistant/Assistant.provider.mjs +114 -0
  133. package/lib/built-in/assistant/ai-chat/index.mjs +359 -0
  134. package/lib/built-in/assistant/ai-chat/index.module.mjs +9 -0
  135. package/lib/{index.css → built-in/assistant/ai-chat/index_module.css} +0 -64
  136. package/lib/built-in/assistant/calculator/AutoScalingText.mjs +45 -0
  137. package/lib/built-in/assistant/calculator/Calculator.mjs +259 -0
  138. package/lib/built-in/assistant/calculator/CalculatorDisplay.mjs +34 -0
  139. package/lib/built-in/assistant/calculator/CalculatorKey.mjs +20 -0
  140. package/lib/built-in/assistant/calculator/CalculatorProvider.mjs +52 -0
  141. package/lib/built-in/assistant/calculator/Draggable.mjs +66 -0
  142. package/lib/built-in/assistant/calculator/style.mjs +33 -0
  143. package/lib/built-in/assistant/index.mjs +27 -0
  144. package/lib/built-in/assistant/search-and-jump/index.mjs +75 -0
  145. package/lib/built-in/attachment-preview/index.mjs +24 -0
  146. package/lib/built-in/attachment-preview/interface.mjs +4 -0
  147. package/lib/built-in/attachment-preview/previewers/file-default.mjs +97 -0
  148. package/lib/built-in/attachment-preview/previewers/file-pdf.mjs +142 -0
  149. package/lib/built-in/attachment-preview/previewers/file-pdf.style.mjs +53 -0
  150. package/lib/built-in/attachment-preview/previewers/file-sheet.mjs +132 -0
  151. package/lib/built-in/attachment-preview/previewers/file-sheet.style.mjs +53 -0
  152. package/lib/built-in/attachment-preview/previewers/image-jpeg.mjs +43 -0
  153. package/lib/built-in/attachment-preview/previewers/image-png.mjs +43 -0
  154. package/lib/built-in/attachment-preview/previewers/image-svg.mjs +29 -0
  155. package/lib/built-in/attachment-preview/previewers/index.mjs +15 -0
  156. package/lib/built-in/block-schema-component/index.mjs +186 -0
  157. package/lib/built-in/built-in-collections/index.mjs +74 -0
  158. package/lib/built-in/context-menu/ContextMenu.provider.mjs +89 -0
  159. package/lib/built-in/context-menu/ContextMenuItemsProps.mjs +176 -0
  160. package/lib/built-in/context-menu/index.mjs +33 -0
  161. package/lib/built-in/context-menu/useContextMenu.mjs +12 -0
  162. package/lib/built-in/document-title/index.mjs +75 -0
  163. package/lib/built-in/dynamic-page/DynamicPage.mjs +67 -0
  164. package/lib/built-in/dynamic-page/index.mjs +79 -0
  165. package/lib/built-in/dynamic-page/style.mjs +60 -0
  166. package/lib/built-in/dynamic-page/utils.mjs +84 -0
  167. package/lib/built-in/index.mjs +591 -0
  168. package/lib/built-in/locale/LocalePlugin.mjs +96 -0
  169. package/lib/built-in/locale/loadConstrueLocale.mjs +193 -0
  170. package/lib/built-in/page-style/CustomAdminHeader.mjs +24 -0
  171. package/lib/built-in/page-style/PageStyle.provider.mjs +47 -0
  172. package/lib/built-in/page-style/TabContent.mjs +97 -0
  173. package/lib/built-in/page-style/TabHeader.mjs +114 -0
  174. package/lib/built-in/page-style/index.mjs +29 -0
  175. package/lib/built-in/page-style/usePageStyle.mjs +15 -0
  176. package/lib/built-in/page-style/useTabSettings.mjs +97 -0
  177. package/lib/built-in/pinned-list/PinnedPluginListProvider.mjs +87 -0
  178. package/lib/built-in/pinned-list/context.mjs +12 -0
  179. package/lib/built-in/pinned-list/index.mjs +18 -0
  180. package/lib/built-in/pm/PluginCard.mjs +306 -0
  181. package/lib/built-in/pm/PluginDetail.mjs +350 -0
  182. package/lib/built-in/pm/PluginDocument.mjs +99 -0
  183. package/lib/built-in/pm/PluginForm/form/PluginNpmForm.mjs +189 -0
  184. package/lib/built-in/pm/PluginForm/form/PluginUploadForm.mjs +142 -0
  185. package/lib/built-in/pm/PluginForm/form/PluginUrlForm.mjs +133 -0
  186. package/lib/built-in/pm/PluginForm/modal/PluginAddModal.mjs +88 -0
  187. package/lib/built-in/pm/PluginForm/modal/PluginUpgradeModal.mjs +92 -0
  188. package/lib/built-in/pm/PluginManager.mjs +341 -0
  189. package/lib/built-in/pm/index.mjs +78 -0
  190. package/lib/built-in/pm/style.mjs +86 -0
  191. package/lib/built-in/pm/types.mjs +4 -0
  192. package/lib/built-in/quick-access/Action.mjs +125 -0
  193. package/lib/built-in/quick-access/Block.mjs +170 -0
  194. package/lib/built-in/quick-access/CustomRequestActionSchemaInitializerItem.mjs +115 -0
  195. package/lib/built-in/quick-access/LinkActionSchemaInitializerItem.mjs +108 -0
  196. package/lib/built-in/quick-access/ModalActionSchemaInitializerItem.mjs +118 -0
  197. package/lib/built-in/quick-access/PopupActionSchemaInitializerItem.mjs +143 -0
  198. package/lib/built-in/quick-access/SchemaSettingsBlockTitleItem.mjs +66 -0
  199. package/lib/built-in/quick-access/blockInitializerItem.mjs +31 -0
  200. package/lib/built-in/quick-access/blockSchema.mjs +20 -0
  201. package/lib/built-in/quick-access/blockSettings.mjs +92 -0
  202. package/lib/built-in/quick-access/configureActions.mjs +25 -0
  203. package/lib/built-in/quick-access/index.mjs +66 -0
  204. package/lib/built-in/scroll-assistant/ScrollAssistant.provider.mjs +62 -0
  205. package/lib/built-in/scroll-assistant/ScrollAssistantStatus.provider.mjs +31 -0
  206. package/lib/built-in/scroll-assistant/index.mjs +41 -0
  207. package/lib/built-in/scroll-assistant/useJoystick.mjs +216 -0
  208. package/lib/built-in/setting-layout/AdminSettings.mjs +174 -0
  209. package/lib/built-in/setting-layout/SettingLayout.mjs +171 -0
  210. package/lib/built-in/setting-layout/SettingsCenterDropdown.mjs +104 -0
  211. package/lib/built-in/system-settings/SystemSettingsProvider.mjs +33 -0
  212. package/lib/built-in/system-settings/SystemSettingsShortcut.mjs +189 -0
  213. package/lib/built-in/system-settings/index.mjs +18 -0
  214. package/lib/built-in/system-version/SystemVersion.provider.mjs +52 -0
  215. package/lib/built-in/system-version/index.mjs +17 -0
  216. package/lib/built-in/user-settings/UserSettingsLayout.mjs +221 -0
  217. package/lib/built-in/user-settings/index.mjs +38 -0
  218. package/lib/built-in/user-settings/style.mjs +86 -0
  219. package/lib/collection-manager/CollectionHistoryProvider.mjs +81 -0
  220. package/lib/collection-manager/CollectionManagerProvider.mjs +92 -0
  221. package/lib/collection-manager/CollectionManagerSchemaComponentProvider.mjs +46 -0
  222. package/lib/collection-manager/CollectionProvider_deprecated.mjs +40 -0
  223. package/lib/collection-manager/Configuration/AddCollectionAction.mjs +292 -0
  224. package/lib/collection-manager/Configuration/AddFieldAction.mjs +457 -0
  225. package/lib/collection-manager/Configuration/AddSubFieldAction.mjs +211 -0
  226. package/lib/collection-manager/Configuration/DeleteCollectionAction.mjs +268 -0
  227. package/lib/collection-manager/Configuration/EditCollectionAction.mjs +221 -0
  228. package/lib/collection-manager/Configuration/EditFieldAction.mjs +315 -0
  229. package/lib/collection-manager/Configuration/EditSubFieldAction.mjs +163 -0
  230. package/lib/collection-manager/Configuration/ImportCollectionMetaAction.mjs +210 -0
  231. package/lib/collection-manager/Configuration/OverridingCollectionField.mjs +274 -0
  232. package/lib/collection-manager/Configuration/SyncFieldsAction.mjs +257 -0
  233. package/lib/collection-manager/Configuration/SyncSQLFieldsAction.mjs +214 -0
  234. package/lib/collection-manager/Configuration/ViewInheritedField.mjs +187 -0
  235. package/lib/collection-manager/Configuration/components/CollectionCategory.mjs +38 -0
  236. package/lib/collection-manager/Configuration/components/CollectionFieldInterfaceTag.mjs +40 -0
  237. package/lib/collection-manager/Configuration/components/CollectionTemplateTag.mjs +39 -0
  238. package/lib/collection-manager/Configuration/components/FieldSummary.mjs +39 -0
  239. package/lib/collection-manager/Configuration/components/Summary.mjs +84 -0
  240. package/lib/collection-manager/Configuration/components/TemplateSummary.mjs +39 -0
  241. package/lib/collection-manager/Configuration/components/index.mjs +359 -0
  242. package/lib/collection-manager/Configuration/index.mjs +46 -0
  243. package/lib/collection-manager/Configuration/interfaces.mjs +48 -0
  244. package/lib/collection-manager/ResourceActionProvider.mjs +168 -0
  245. package/lib/collection-manager/action-hooks.mjs +658 -0
  246. package/lib/collection-manager/collectionPlugin.mjs +151 -0
  247. package/lib/collection-manager/context.mjs +13 -0
  248. package/lib/collection-manager/demos/demo2.mjs +143 -0
  249. package/lib/collection-manager/demos/demo3.mjs +96 -0
  250. package/lib/collection-manager/demos/demo4.mjs +183 -0
  251. package/lib/collection-manager/demos/demo5.mjs +187 -0
  252. package/lib/collection-manager/hooks/index.mjs +11 -0
  253. package/lib/collection-manager/hooks/useCollectionDataSource.mjs +29 -0
  254. package/lib/collection-manager/hooks/useCollectionField_deprecated.mjs +43 -0
  255. package/lib/collection-manager/hooks/useCollectionManager_deprecated.mjs +272 -0
  256. package/lib/collection-manager/hooks/useCollection_deprecated.mjs +70 -0
  257. package/lib/collection-manager/hooks/useDialect.mjs +17 -0
  258. package/lib/collection-manager/index.mjs +63 -0
  259. package/lib/collection-manager/interfaces/__tests__/json.mjs +73 -0
  260. package/lib/collection-manager/interfaces/checkbox.mjs +61 -0
  261. package/lib/collection-manager/interfaces/checkboxGroup.mjs +55 -0
  262. package/lib/collection-manager/interfaces/chinaRegion.mjs +127 -0
  263. package/lib/collection-manager/interfaces/collection.mjs +57 -0
  264. package/lib/collection-manager/interfaces/color.mjs +43 -0
  265. package/lib/collection-manager/interfaces/components/index.mjs +73 -0
  266. package/lib/collection-manager/interfaces/createdAt.mjs +47 -0
  267. package/lib/collection-manager/interfaces/createdBy.mjs +70 -0
  268. package/lib/collection-manager/interfaces/datetime.mjs +56 -0
  269. package/lib/collection-manager/interfaces/email.mjs +54 -0
  270. package/lib/collection-manager/interfaces/icon.mjs +40 -0
  271. package/lib/collection-manager/interfaces/id.mjs +66 -0
  272. package/lib/collection-manager/interfaces/index.mjs +81 -0
  273. package/lib/collection-manager/interfaces/input.mjs +200 -0
  274. package/lib/collection-manager/interfaces/integer.mjs +138 -0
  275. package/lib/collection-manager/interfaces/json.mjs +102 -0
  276. package/lib/collection-manager/interfaces/linkTo.mjs +119 -0
  277. package/lib/collection-manager/interfaces/m2m.mjs +253 -0
  278. package/lib/collection-manager/interfaces/m2o.mjs +182 -0
  279. package/lib/collection-manager/interfaces/markdown.mjs +94 -0
  280. package/lib/collection-manager/interfaces/multipleSelect.mjs +62 -0
  281. package/lib/collection-manager/interfaces/nanoid.mjs +72 -0
  282. package/lib/collection-manager/interfaces/number.mjs +146 -0
  283. package/lib/collection-manager/interfaces/o2m.mjs +211 -0
  284. package/lib/collection-manager/interfaces/o2o.mjs +493 -0
  285. package/lib/collection-manager/interfaces/password.mjs +80 -0
  286. package/lib/collection-manager/interfaces/percent.mjs +193 -0
  287. package/lib/collection-manager/interfaces/phone.mjs +46 -0
  288. package/lib/collection-manager/interfaces/properties/index.mjs +506 -0
  289. package/lib/collection-manager/interfaces/properties/operators.mjs +370 -0
  290. package/lib/collection-manager/interfaces/radioGroup.mjs +46 -0
  291. package/lib/collection-manager/interfaces/richText.mjs +92 -0
  292. package/lib/collection-manager/interfaces/select.mjs +60 -0
  293. package/lib/collection-manager/interfaces/sort.mjs +123 -0
  294. package/lib/collection-manager/interfaces/subTable.mjs +218 -0
  295. package/lib/collection-manager/interfaces/tableoid.mjs +60 -0
  296. package/lib/collection-manager/interfaces/textarea.mjs +92 -0
  297. package/lib/collection-manager/interfaces/time.mjs +59 -0
  298. package/lib/collection-manager/interfaces/types.mjs +4 -0
  299. package/lib/collection-manager/interfaces/unixTimestamp.mjs +64 -0
  300. package/lib/collection-manager/interfaces/updatedAt.mjs +47 -0
  301. package/lib/collection-manager/interfaces/updatedBy.mjs +70 -0
  302. package/lib/collection-manager/interfaces/url.mjs +46 -0
  303. package/lib/collection-manager/interfaces/uuid.mjs +60 -0
  304. package/lib/collection-manager/mixins/InheritanceCollectionMixin.mjs +249 -0
  305. package/lib/collection-manager/sub-table.mjs +270 -0
  306. package/lib/collection-manager/templates/components/PresetFields.mjs +271 -0
  307. package/lib/collection-manager/templates/components/PreviewFields.mjs +345 -0
  308. package/lib/collection-manager/templates/components/PreviewTable.mjs +171 -0
  309. package/lib/collection-manager/templates/components/sql-collection/FieldsConfigure.mjs +348 -0
  310. package/lib/collection-manager/templates/components/sql-collection/PreviewTable.mjs +81 -0
  311. package/lib/collection-manager/templates/components/sql-collection/SQLInput.mjs +130 -0
  312. package/lib/collection-manager/templates/components/sql-collection/SQLRequestProvider.mjs +74 -0
  313. package/lib/collection-manager/templates/components/sql-collection/index.mjs +11 -0
  314. package/lib/collection-manager/templates/expression.mjs +78 -0
  315. package/lib/collection-manager/templates/general.mjs +32 -0
  316. package/lib/collection-manager/templates/import.mjs +28 -0
  317. package/lib/collection-manager/templates/index.mjs +15 -0
  318. package/lib/collection-manager/templates/properties/index.mjs +81 -0
  319. package/lib/collection-manager/templates/sql.mjs +105 -0
  320. package/lib/collection-manager/templates/tree.mjs +94 -0
  321. package/lib/collection-manager/templates/types.mjs +4 -0
  322. package/lib/collection-manager/templates/view.mjs +177 -0
  323. package/lib/collection-manager/types.mjs +4 -0
  324. package/lib/collection-manager/utils.mjs +23 -0
  325. package/lib/common/SelectWithTitle.mjs +56 -0
  326. package/lib/common/appInfo/CurrentAppInfoProvider.mjs +33 -0
  327. package/lib/common/appInfo/index.mjs +5 -0
  328. package/lib/common/index.mjs +9 -0
  329. package/lib/common/useFieldComponentName.mjs +39 -0
  330. package/lib/common/useNiceDropdownHeight.mjs +28 -0
  331. package/lib/data-source/__tests__/collection/AssociationProvider.test.mjs +132 -0
  332. package/lib/data-source/__tests__/collection/Collection.test.mjs +308 -0
  333. package/lib/data-source/__tests__/collection/CollectionManager.test.mjs +308 -0
  334. package/lib/data-source/__tests__/collection/CollectionManagerProvider.test.mjs +135 -0
  335. package/lib/data-source/__tests__/collection/CollectionProvider.test.mjs +123 -0
  336. package/lib/data-source/__tests__/collection/ExtendCollectionsProvider.test.mjs +105 -0
  337. package/lib/data-source/__tests__/collection-field/CollectionField.test.mjs +84 -0
  338. package/lib/data-source/__tests__/collection-field/CollectionFieldProvider.test.mjs +70 -0
  339. package/lib/data-source/__tests__/collection-field-interface/CollectionFieldInterfaceManager.test.mjs +171 -0
  340. package/lib/data-source/__tests__/collection-record/CollectionRecord.test.mjs +27 -0
  341. package/lib/data-source/__tests__/collection-record/CollectionRecordProvider.test.mjs +268 -0
  342. package/lib/data-source/__tests__/collection-record/isNewRecord.test.mjs +55 -0
  343. package/lib/data-source/__tests__/collection-template/CollectionTemplateManager.test.mjs +132 -0
  344. package/lib/data-source/__tests__/components/CollectionDeletedPlaceholder.test.mjs +58 -0
  345. package/lib/data-source/__tests__/data-block/DataBlockProvider.test.mjs +151 -0
  346. package/lib/data-source/__tests__/data-block/data-block-demos/association-table-list-and-parent-record.mjs +108 -0
  347. package/lib/data-source/__tests__/data-block/data-block-demos/association-table-list-and-source-id.mjs +160 -0
  348. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-create.mjs +131 -0
  349. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-get-and-update.mjs +197 -0
  350. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-record-and-update.mjs +160 -0
  351. package/lib/data-source/__tests__/data-block/data-block-demos/collection-table-list.mjs +114 -0
  352. package/lib/data-source/__tests__/data-block/data-block-demos/createApp.mjs +66 -0
  353. package/lib/data-source/__tests__/data-source/CollectionDataSourceProvider.test.mjs +56 -0
  354. package/lib/data-source/__tests__/data-source/DataSource.test.mjs +81 -0
  355. package/lib/data-source/__tests__/data-source/DataSourceManager.test.mjs +174 -0
  356. package/lib/data-source/__tests__/data-source/DataSourceManagerProvider.test.mjs +45 -0
  357. package/lib/data-source/__tests__/data-source/DataSourceProvider.test.mjs +100 -0
  358. package/lib/data-source/__tests__/utils.test.mjs +66 -0
  359. package/lib/data-source/collection/AssociationProvider.mjs +68 -0
  360. package/lib/data-source/collection/Collection.mjs +200 -0
  361. package/lib/data-source/collection/CollectionManager.mjs +165 -0
  362. package/lib/data-source/collection/CollectionManagerProvider.mjs +64 -0
  363. package/lib/data-source/collection/CollectionProvider.mjs +53 -0
  364. package/lib/data-source/collection/ExtendCollectionsProvider.mjs +47 -0
  365. package/lib/data-source/collection/index.mjs +15 -0
  366. package/lib/data-source/collection/utils.mjs +62 -0
  367. package/lib/data-source/collection-field/CollectionField.mjs +116 -0
  368. package/lib/data-source/collection-field/CollectionFieldProvider.mjs +65 -0
  369. package/lib/data-source/collection-field/index.mjs +7 -0
  370. package/lib/data-source/collection-field-interface/CollectionFieldInterface.mjs +42 -0
  371. package/lib/data-source/collection-field-interface/CollectionFieldInterfaceManager.mjs +65 -0
  372. package/lib/data-source/collection-field-interface/index.mjs +7 -0
  373. package/lib/data-source/collection-record/CollectionRecord.mjs +34 -0
  374. package/lib/data-source/collection-record/CollectionRecordProvider.mjs +78 -0
  375. package/lib/data-source/collection-record/index.mjs +7 -0
  376. package/lib/data-source/collection-record/isNewRecord.mjs +26 -0
  377. package/lib/data-source/collection-template/CollectionTemplate.mjs +39 -0
  378. package/lib/data-source/collection-template/CollectionTemplateManager.mjs +61 -0
  379. package/lib/data-source/collection-template/index.mjs +7 -0
  380. package/lib/data-source/commonsSettingsItem/fieldComponent.mjs +80 -0
  381. package/lib/data-source/commonsSettingsItem/index.mjs +5 -0
  382. package/lib/data-source/components/CollectionDeletedPlaceholder.mjs +125 -0
  383. package/lib/data-source/components/DataSourceApplicationProvider.mjs +32 -0
  384. package/lib/data-source/components/index.mjs +7 -0
  385. package/lib/data-source/data-block/DataBlockProvider.mjs +115 -0
  386. package/lib/data-source/data-block/DataBlockRequestProvider.mjs +168 -0
  387. package/lib/data-source/data-block/DataBlockResourceProvider.mjs +84 -0
  388. package/lib/data-source/data-block/context/ConfigSetting.provider.mjs +18 -0
  389. package/lib/data-source/data-block/index.mjs +11 -0
  390. package/lib/data-source/data-source/DataSource.mjs +83 -0
  391. package/lib/data-source/data-source/DataSourceManager.mjs +127 -0
  392. package/lib/data-source/data-source/DataSourceManagerProvider.mjs +25 -0
  393. package/lib/data-source/data-source/DataSourceProvider.mjs +87 -0
  394. package/lib/data-source/data-source/index.mjs +11 -0
  395. package/lib/data-source/index.mjs +23 -0
  396. package/lib/data-source/utils.mjs +28 -0
  397. package/lib/env.d.mjs +1 -0
  398. package/lib/filter-provider/FilterProvider.mjs +182 -0
  399. package/lib/filter-provider/__tests__/transformToFilter.mjs +74 -0
  400. package/lib/filter-provider/__tests__/useFilter.mjs +61 -0
  401. package/lib/filter-provider/__tests__/utiles.test.mjs +271 -0
  402. package/lib/filter-provider/index.mjs +7 -0
  403. package/lib/filter-provider/utils.mjs +262 -0
  404. package/lib/flag-provider/FlagProvider.mjs +19 -0
  405. package/lib/flag-provider/__tests__/flag-provider.test.mjs +37 -0
  406. package/lib/flag-provider/hooks/useFlag.mjs +15 -0
  407. package/lib/flag-provider/index.mjs +7 -0
  408. package/lib/global.css +34 -0
  409. package/lib/hooks/index.mjs +7 -0
  410. package/lib/hooks/useAdminSchemaUid.mjs +7 -0
  411. package/lib/hooks/useMenuItem.mjs +101 -0
  412. package/lib/hooks/useViewport.mjs +47 -0
  413. package/lib/i18n/i18n.mjs +37 -0
  414. package/lib/i18n/index.mjs +5 -0
  415. package/lib/icon/Icon.mjs +80 -0
  416. package/lib/icon/__tests__/icon.test.mjs +49 -0
  417. package/lib/icon/demos/antd-icon.mjs +19 -0
  418. package/lib/icon/demos/custom-icon.mjs +28 -0
  419. package/lib/icon/demos/iconfont.mjs +22 -0
  420. package/lib/icon/demos/register-icon.mjs +35 -0
  421. package/lib/icon/index.mjs +5 -0
  422. package/lib/icon/preloaded.mjs +139 -0
  423. package/lib/index.mjs +53 -102387
  424. package/lib/locale/index.mjs +274 -0
  425. package/lib/modules/actions/ActionSchemaToolbar.mjs +24 -0
  426. package/lib/modules/actions/add-child/CreateChildInitializer.mjs +76 -0
  427. package/lib/modules/actions/add-child/addChildActionSettings.mjs +88 -0
  428. package/lib/modules/actions/add-new/CreateActionInitializer.mjs +82 -0
  429. package/lib/modules/actions/add-new/addNewActionSettings.mjs +81 -0
  430. package/lib/modules/actions/add-new/createFormBlockInitializers.mjs +75 -0
  431. package/lib/modules/actions/add-record/CustomizeAddRecordActionInitializer.mjs +78 -0
  432. package/lib/modules/actions/add-record/customizeAddRecordActionSettings.mjs +50 -0
  433. package/lib/modules/actions/add-record/customizeCreateFormBlockInitializers.mjs +45 -0
  434. package/lib/modules/actions/bulk-destroy/BulkDestroyActionInitializer.mjs +52 -0
  435. package/lib/modules/actions/bulk-destroy/bulkDeleteActionSettings.mjs +42 -0
  436. package/lib/modules/actions/delete/DestroyActionInitializer.mjs +40 -0
  437. package/lib/modules/actions/delete/deleteActionSettings.mjs +57 -0
  438. package/lib/modules/actions/disassociate/DisassociateActionInitializer.mjs +40 -0
  439. package/lib/modules/actions/disassociate/__e2e__/disassociate.test.mjs +53 -0
  440. package/lib/modules/actions/disassociate/__e2e__/templatesOfPage.mjs +386 -0
  441. package/lib/modules/actions/disassociate/disassociateActionSettings.mjs +57 -0
  442. package/lib/modules/actions/expand-collapse/ExpandableActionInitializer.mjs +40 -0
  443. package/lib/modules/actions/expand-collapse/expendableActionSettings.mjs +148 -0
  444. package/lib/modules/actions/filter/FilterActionInitializer.mjs +34 -0
  445. package/lib/modules/actions/filter/filterActionSettings.mjs +103 -0
  446. package/lib/modules/actions/link/customizeLinkActionSettings.mjs +149 -0
  447. package/lib/modules/actions/link/hooks.mjs +243 -0
  448. package/lib/modules/actions/refresh/RefreshActionInitializer.mjs +33 -0
  449. package/lib/modules/actions/refresh/refreshActionSettings.mjs +42 -0
  450. package/lib/modules/actions/save-record/SaveRecordActionInitializer.mjs +49 -0
  451. package/lib/modules/actions/save-record/customizeSaveRecordActionSettings.mjs +67 -0
  452. package/lib/modules/actions/submit/CreateSubmitActionInitializer.mjs +39 -0
  453. package/lib/modules/actions/submit/UpdateSubmitActionInitializer.mjs +44 -0
  454. package/lib/modules/actions/submit/createSubmitActionSettings.mjs +250 -0
  455. package/lib/modules/actions/submit/updateSubmitActionSettings.mjs +107 -0
  456. package/lib/modules/actions/update-record/UpdateRecordActionInitializer.mjs +48 -0
  457. package/lib/modules/actions/update-record/customizeUpdateRecordActionSettings.mjs +83 -0
  458. package/lib/modules/actions/view-edit-popup/PopupActionInitializer.mjs +74 -0
  459. package/lib/modules/actions/view-edit-popup/RecordFormBlockInitializers.mjs +46 -0
  460. package/lib/modules/actions/view-edit-popup/UpdateActionInitializer.mjs +69 -0
  461. package/lib/modules/actions/view-edit-popup/ViewActionInitializer.mjs +68 -0
  462. package/lib/modules/actions/view-edit-popup/customizePopupActionSettings.mjs +70 -0
  463. package/lib/modules/actions/view-edit-popup/editActionSettings.mjs +65 -0
  464. package/lib/modules/actions/view-edit-popup/viewActionSettings.mjs +70 -0
  465. package/lib/modules/blocks/BlockSchemaToolbar.mjs +85 -0
  466. package/lib/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.mjs +49 -0
  467. package/lib/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.mjs +76 -0
  468. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/schemaInitializer.test.mjs +123 -0
  469. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/schemaSettings.test.mjs +81 -0
  470. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/templatesOfBug.mjs +1 -0
  471. package/lib/modules/blocks/data-blocks/details-multi/__tests__/createDetailsBlockWithPagingUISchema.test.mjs +20 -0
  472. package/lib/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.mjs +66 -0
  473. package/lib/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.mjs +256 -0
  474. package/lib/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.mjs +19 -0
  475. package/lib/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.mjs +11 -0
  476. package/lib/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.mjs +106 -0
  477. package/lib/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.mjs +94 -0
  478. package/lib/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.mjs +110 -0
  479. package/lib/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.mjs +108 -0
  480. package/lib/modules/blocks/data-blocks/details-single/__e2e__/schemaInitializer.test.mjs +110 -0
  481. package/lib/modules/blocks/data-blocks/details-single/__e2e__/schemaSettings.test.mjs +31 -0
  482. package/lib/modules/blocks/data-blocks/details-single/__e2e__/templatesOfBug.mjs +1 -0
  483. package/lib/modules/blocks/data-blocks/details-single/__tests__/createDetailsBlockWithoutPagingUISchema.test.mjs +21 -0
  484. package/lib/modules/blocks/data-blocks/details-single/createDetailsUISchema.mjs +62 -0
  485. package/lib/modules/blocks/data-blocks/details-single/detailsBlockSettings.mjs +67 -0
  486. package/lib/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.mjs +43 -0
  487. package/lib/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.mjs +11 -0
  488. package/lib/modules/blocks/data-blocks/form/CreateFormBlockInitializer.mjs +85 -0
  489. package/lib/modules/blocks/data-blocks/form/FilterItemCustomSettings.mjs +321 -0
  490. package/lib/modules/blocks/data-blocks/form/FormBlockInitializer.mjs +113 -0
  491. package/lib/modules/blocks/data-blocks/form/FormItemSchemaToolbar.mjs +23 -0
  492. package/lib/modules/blocks/data-blocks/form/RecordFormBlockInitializer.mjs +123 -0
  493. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/associationForm.test.mjs +27 -0
  494. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/dragAndDrop.test.mjs +33 -0
  495. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadAssociationFields.test.mjs +207 -0
  496. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadVariables.test.mjs +36 -0
  497. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/schemaInitializer.test.mjs +167 -0
  498. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/schemaSettings.test.mjs +1367 -0
  499. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/templatesOfBug.mjs +6009 -0
  500. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaInitializer.test.mjs +22 -0
  501. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaSettings.test.mjs +235 -0
  502. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/templatesOfBug.mjs +1 -0
  503. package/lib/modules/blocks/data-blocks/form/__tests__/createCreateFormBlockUISchema.test.mjs +27 -0
  504. package/lib/modules/blocks/data-blocks/form/__tests__/createEditFormBlockUISchema.test.mjs +27 -0
  505. package/lib/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.mjs +63 -0
  506. package/lib/modules/blocks/data-blocks/form/createEditFormBlockUISchema.mjs +62 -0
  507. package/lib/modules/blocks/data-blocks/form/createFormActionInitializers.mjs +51 -0
  508. package/lib/modules/blocks/data-blocks/form/createFormBlockSettings.mjs +157 -0
  509. package/lib/modules/blocks/data-blocks/form/editFormBlockSettings.mjs +90 -0
  510. package/lib/modules/blocks/data-blocks/form/fieldSettingsFormItem.mjs +598 -0
  511. package/lib/modules/blocks/data-blocks/form/formActionInitializers.mjs +54 -0
  512. package/lib/modules/blocks/data-blocks/form/formItemInitializers.mjs +51 -0
  513. package/lib/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.mjs +19 -0
  514. package/lib/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.mjs +11 -0
  515. package/lib/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.mjs +29 -0
  516. package/lib/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.mjs +11 -0
  517. package/lib/modules/blocks/data-blocks/form/index.mjs +31 -0
  518. package/lib/modules/blocks/data-blocks/form/updateFormActionInitializers.mjs +62 -0
  519. package/lib/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.mjs +94 -0
  520. package/lib/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.mjs +69 -0
  521. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/schemaInitializer.test.mjs +231 -0
  522. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/schemaSettings.test.mjs +58 -0
  523. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/templatesOfBug.mjs +1 -0
  524. package/lib/modules/blocks/data-blocks/grid-card/__tests__/createGridCardBlockSchema.test.mjs +32 -0
  525. package/lib/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.mjs +78 -0
  526. package/lib/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.mjs +484 -0
  527. package/lib/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.mjs +109 -0
  528. package/lib/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.mjs +25 -0
  529. package/lib/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.mjs +28 -0
  530. package/lib/modules/blocks/data-blocks/grid-card/utils.mjs +17 -0
  531. package/lib/modules/blocks/data-blocks/list/ListActionInitializers.mjs +90 -0
  532. package/lib/modules/blocks/data-blocks/list/ListBlockInitializer.mjs +69 -0
  533. package/lib/modules/blocks/data-blocks/list/__e2e__/schemaInitializer.test.mjs +224 -0
  534. package/lib/modules/blocks/data-blocks/list/__e2e__/schemaSettings.test.mjs +29 -0
  535. package/lib/modules/blocks/data-blocks/list/__e2e__/templatesOfBug.mjs +1 -0
  536. package/lib/modules/blocks/data-blocks/list/__tests__/createListBlockSchema.test.mjs +30 -0
  537. package/lib/modules/blocks/data-blocks/list/createListBlockUISchema.mjs +71 -0
  538. package/lib/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.mjs +19 -0
  539. package/lib/modules/blocks/data-blocks/list/listBlockSettings.mjs +286 -0
  540. package/lib/modules/blocks/data-blocks/list/listItemActionInitializers.mjs +109 -0
  541. package/lib/modules/blocks/data-blocks/table/TableActionColumnInitializers.mjs +287 -0
  542. package/lib/modules/blocks/data-blocks/table/TableActionInitializers.mjs +143 -0
  543. package/lib/modules/blocks/data-blocks/table/TableBlockInitializer.mjs +69 -0
  544. package/lib/modules/blocks/data-blocks/table/TableColumnInitializers.mjs +135 -0
  545. package/lib/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.mjs +35 -0
  546. package/lib/modules/blocks/data-blocks/table/__e2e__/actions/duplicate.test.mjs +19 -0
  547. package/lib/modules/blocks/data-blocks/table/__e2e__/actions/filter.test.mjs +46 -0
  548. package/lib/modules/blocks/data-blocks/table/__e2e__/checkboxForTableRow.test.mjs +28 -0
  549. package/lib/modules/blocks/data-blocks/table/__e2e__/dragAndDrop.test.mjs +40 -0
  550. package/lib/modules/blocks/data-blocks/table/__e2e__/schemaInitializer.test.mjs +450 -0
  551. package/lib/modules/blocks/data-blocks/table/__e2e__/schemaSettings.test.mjs +922 -0
  552. package/lib/modules/blocks/data-blocks/table/__e2e__/templatesOfBug.mjs +937 -0
  553. package/lib/modules/blocks/data-blocks/table/__e2e__/tree/schemaSettings.test.mjs +53 -0
  554. package/lib/modules/blocks/data-blocks/table/__tests__/createTableBLockSchema.test.mjs +24 -0
  555. package/lib/modules/blocks/data-blocks/table/createTableBlockUISchema.mjs +90 -0
  556. package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.mjs +54 -0
  557. package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockProps.mjs +176 -0
  558. package/lib/modules/blocks/data-blocks/table/index.mjs +21 -0
  559. package/lib/modules/blocks/data-blocks/table/tableBlockSettings.mjs +461 -0
  560. package/lib/modules/blocks/data-blocks/table/tableColumnSettings.mjs +388 -0
  561. package/lib/modules/blocks/data-blocks/table/utils.mjs +30 -0
  562. package/lib/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.mjs +45 -0
  563. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/schemaInitializer.test.mjs +174 -0
  564. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/schemaSettings.test.mjs +169 -0
  565. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/templatesOfBug.mjs +695 -0
  566. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/utils.mjs +20 -0
  567. package/lib/modules/blocks/data-blocks/table-selector/__tests__/createTableSelectorSchema.test.mjs +22 -0
  568. package/lib/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.mjs +55 -0
  569. package/lib/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.mjs +5 -0
  570. package/lib/modules/blocks/data-blocks/table-selector/index.mjs +7 -0
  571. package/lib/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.mjs +353 -0
  572. package/lib/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.mjs +22 -0
  573. package/lib/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.mjs +51 -0
  574. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/schemaInitializer.test.mjs +67 -0
  575. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/schemaSettings.test.mjs +72 -0
  576. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/templatesOfBug.mjs +1 -0
  577. package/lib/modules/blocks/filter-blocks/collapse/__tests__/createCollapseBlockSchema.test.mjs +46 -0
  578. package/lib/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.mjs +37 -0
  579. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.mjs +79 -0
  580. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.mjs +244 -0
  581. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.mjs +170 -0
  582. package/lib/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.mjs +5 -0
  583. package/lib/modules/blocks/filter-blocks/form/FilterFormActionInitializers.mjs +38 -0
  584. package/lib/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.mjs +60 -0
  585. package/lib/modules/blocks/filter-blocks/form/__e2e__/schemaInitializer.test.mjs +127 -0
  586. package/lib/modules/blocks/filter-blocks/form/__e2e__/schemaSettings.test.mjs +111 -0
  587. package/lib/modules/blocks/filter-blocks/form/__e2e__/templatesOfBug.mjs +1 -0
  588. package/lib/modules/blocks/filter-blocks/form/__tests__/createFilterFormBlockSchema.test.mjs +31 -0
  589. package/lib/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.mjs +56 -0
  590. package/lib/modules/blocks/filter-blocks/form/filterFormBlockSettings.mjs +87 -0
  591. package/lib/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.mjs +394 -0
  592. package/lib/modules/blocks/filter-blocks/form/filterFormItemInitializers.mjs +53 -0
  593. package/lib/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.mjs +5 -0
  594. package/lib/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.mjs +11 -0
  595. package/lib/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.mjs +38 -0
  596. package/lib/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.mjs +101 -0
  597. package/lib/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.mjs +87 -0
  598. package/lib/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.mjs +394 -0
  599. package/lib/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.mjs +53 -0
  600. package/lib/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.mjs +48 -0
  601. package/lib/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.mjs +42 -0
  602. package/lib/modules/blocks/other-blocks/markdown/__e2e__/schemaInitializer.test.mjs +16 -0
  603. package/lib/modules/blocks/other-blocks/markdown/__e2e__/schemaSettings.test.mjs +40 -0
  604. package/lib/modules/blocks/other-blocks/markdown/__e2e__/templatesOfBug.mjs +1 -0
  605. package/lib/modules/blocks/other-blocks/markdown/markdownBlockSettings.mjs +51 -0
  606. package/lib/modules/blocks/useParentRecordCommon.mjs +18 -0
  607. package/lib/modules/blocks/useSourceId.mjs +23 -0
  608. package/lib/modules/blocks/useSourceKey.mjs +16 -0
  609. package/lib/modules/dialog/__e2e__/schemaInitializer.test.mjs +435 -0
  610. package/lib/modules/dialog/__e2e__/schemaSettings.test.mjs +65 -0
  611. package/lib/modules/dialog/__e2e__/templatesOfBug.mjs +2128 -0
  612. package/lib/modules/dialog/__e2e__/zIndex.test.mjs +46 -0
  613. package/lib/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.mjs +120 -0
  614. package/lib/modules/fields/component/Cascader/cascaderComponentFieldSettings.mjs +457 -0
  615. package/lib/modules/fields/component/Checkbox/checkboxComponentFieldSettings.mjs +71 -0
  616. package/lib/modules/fields/component/DatePicker/__e2e__/schemaSettings.test.mjs +86 -0
  617. package/lib/modules/fields/component/DatePicker/__e2e__/utils.mjs +335 -0
  618. package/lib/modules/fields/component/DatePicker/datePickerComponentFieldSettings.mjs +37 -0
  619. package/lib/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.mjs +184 -0
  620. package/lib/modules/fields/component/FileManager/fileManagerComponentFieldSettings.mjs +225 -0
  621. package/lib/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.mjs +123 -0
  622. package/lib/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.mjs +45 -0
  623. package/lib/modules/fields/component/Nester/subformComponentFieldSettings.mjs +157 -0
  624. package/lib/modules/fields/component/Picker/TableSelectorInitializers.mjs +98 -0
  625. package/lib/modules/fields/component/Picker/recordPickerComponentFieldSettings.mjs +222 -0
  626. package/lib/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.mjs +134 -0
  627. package/lib/modules/fields/component/Radio/radioComponentFieldSettings.mjs +71 -0
  628. package/lib/modules/fields/component/Select/selectComponentFieldSettings.mjs +453 -0
  629. package/lib/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.mjs +447 -0
  630. package/lib/modules/fields/component/Tag/tagComponentFieldSettings.mjs +207 -0
  631. package/lib/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.mjs +37 -0
  632. package/lib/modules/fields/initializer/CollectionFieldInitializer.mjs +30 -0
  633. package/lib/modules/fields/initializer/TableCollectionFieldInitializer.mjs +30 -0
  634. package/lib/modules/menu/GroupItem.mjs +110 -0
  635. package/lib/modules/menu/LinkMenuItem.mjs +116 -0
  636. package/lib/modules/menu/PageMenuItem.mjs +125 -0
  637. package/lib/modules/menu/__e2e__/dragAndDrop.test.mjs +34 -0
  638. package/lib/modules/menu/__e2e__/schemaInitializer.test.mjs +114 -0
  639. package/lib/modules/menu/__e2e__/schemaSettings.test.mjs +366 -0
  640. package/lib/modules/menu/__e2e__/templatesOfBug.mjs +1 -0
  641. package/lib/modules/menu/menuItemInitializer.mjs +65 -0
  642. package/lib/modules/page/BlockInitializers.mjs +86 -0
  643. package/lib/modules/page/__e2e__/blockInitializers.test.mjs +23 -0
  644. package/lib/modules/page/__e2e__/dragAndDrop.test.mjs +24 -0
  645. package/lib/modules/page/__e2e__/schemaInitailizer.test.mjs +22 -0
  646. package/lib/modules/page/__e2e__/schemaSettings.test.mjs +154 -0
  647. package/lib/modules/page/__e2e__/templatesOfBug.mjs +1 -0
  648. package/lib/modules/plugin-manager/__e2e__/pluginManager.test.mjs +132 -0
  649. package/lib/modules/plugin-manager/__e2e__/templatesOfBug.mjs +1 -0
  650. package/lib/modules/user-center/__e2e__/settings.test.mjs +18 -0
  651. package/lib/modules/variable/DeclareVariable.mjs +27 -0
  652. package/lib/modules/variable/useVariable.mjs +27 -0
  653. package/lib/powered-by/index.mjs +57 -0
  654. package/lib/record-provider/index.mjs +77 -0
  655. package/lib/route-switch/RouteSchemaComponent.mjs +27 -0
  656. package/lib/route-switch/index.mjs +5 -0
  657. package/lib/schema-component/antd/AntdSchemaComponentProvider.mjs +74 -0
  658. package/lib/schema-component/antd/__builtins__/hooks/index.mjs +9 -0
  659. package/lib/schema-component/antd/__builtins__/hooks/useConfig.mjs +14 -0
  660. package/lib/schema-component/antd/__builtins__/hooks/usePrefixCls.mjs +22 -0
  661. package/lib/schema-component/antd/__builtins__/hooks/useToken.mjs +13 -0
  662. package/lib/schema-component/antd/__builtins__/index.mjs +11 -0
  663. package/lib/schema-component/antd/__builtins__/loading.mjs +21 -0
  664. package/lib/schema-component/antd/__builtins__/portal.mjs +76 -0
  665. package/lib/schema-component/antd/__builtins__/render.mjs +65 -0
  666. package/lib/schema-component/antd/__builtins__/style.mjs +79 -0
  667. package/lib/schema-component/antd/action/Action.Area.mjs +130 -0
  668. package/lib/schema-component/antd/action/Action.Area.style.mjs +48 -0
  669. package/lib/schema-component/antd/action/Action.Container.mjs +75 -0
  670. package/lib/schema-component/antd/action/Action.Designer.mjs +1053 -0
  671. package/lib/schema-component/antd/action/Action.Drawer.mjs +179 -0
  672. package/lib/schema-component/antd/action/Action.Drawer.style.mjs +52 -0
  673. package/lib/schema-component/antd/action/Action.Link.mjs +37 -0
  674. package/lib/schema-component/antd/action/Action.Modal.mjs +214 -0
  675. package/lib/schema-component/antd/action/Action.Page.mjs +112 -0
  676. package/lib/schema-component/antd/action/Action.Popover.mjs +1 -0
  677. package/lib/schema-component/antd/action/Action.Sheet.mjs +115 -0
  678. package/lib/schema-component/antd/action/Action.mjs +349 -0
  679. package/lib/schema-component/antd/action/Action.style.mjs +53 -0
  680. package/lib/schema-component/antd/action/ActionBar.mjs +172 -0
  681. package/lib/schema-component/antd/action/__tests__/action.test.mjs +161 -0
  682. package/lib/schema-component/antd/action/context.mjs +29 -0
  683. package/lib/schema-component/antd/action/demos/demo1.mjs +87 -0
  684. package/lib/schema-component/antd/action/demos/demo2.mjs +90 -0
  685. package/lib/schema-component/antd/action/demos/demo3.mjs +148 -0
  686. package/lib/schema-component/antd/action/demos/demo4.mjs +75 -0
  687. package/lib/schema-component/antd/action/demos/demo5.mjs +237 -0
  688. package/lib/schema-component/antd/action/demos/demo6.mjs +114 -0
  689. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfAction.mjs +62 -0
  690. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.mjs +43 -0
  691. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfModal.mjs +43 -0
  692. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.mjs +43 -0
  693. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.mjs +42 -0
  694. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForModal.mjs +44 -0
  695. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForPopover.mjs +33 -0
  696. package/lib/schema-component/antd/action/hooks.mjs +86 -0
  697. package/lib/schema-component/antd/action/index.mjs +23 -0
  698. package/lib/schema-component/antd/action/types.mjs +4 -0
  699. package/lib/schema-component/antd/action/utils.mjs +229 -0
  700. package/lib/schema-component/antd/appends-tree-select/AppendsTreeSelect.mjs +268 -0
  701. package/lib/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.mjs +267 -0
  702. package/lib/schema-component/antd/appends-tree-select/index.mjs +7 -0
  703. package/lib/schema-component/antd/association-cascader/AssociationCascader.mjs +173 -0
  704. package/lib/schema-component/antd/association-cascader/index.mjs +5 -0
  705. package/lib/schema-component/antd/association-field/AssociationFieldProvider.mjs +166 -0
  706. package/lib/schema-component/antd/association-field/AssociationSelect.mjs +229 -0
  707. package/lib/schema-component/antd/association-field/Editable.mjs +165 -0
  708. package/lib/schema-component/antd/association-field/FileManager.mjs +261 -0
  709. package/lib/schema-component/antd/association-field/InternalCascadeSelect.mjs +463 -0
  710. package/lib/schema-component/antd/association-field/InternalCascader.mjs +443 -0
  711. package/lib/schema-component/antd/association-field/InternalDrawerSubTable.mjs +138 -0
  712. package/lib/schema-component/antd/association-field/InternalNester.mjs +117 -0
  713. package/lib/schema-component/antd/association-field/InternalPicker.mjs +276 -0
  714. package/lib/schema-component/antd/association-field/InternalPopoverNester.mjs +176 -0
  715. package/lib/schema-component/antd/association-field/InternalSubTable.mjs +133 -0
  716. package/lib/schema-component/antd/association-field/InternalTag.mjs +180 -0
  717. package/lib/schema-component/antd/association-field/InternalViewer.mjs +197 -0
  718. package/lib/schema-component/antd/association-field/Nester.mjs +330 -0
  719. package/lib/schema-component/antd/association-field/ReadPretty.mjs +82 -0
  720. package/lib/schema-component/antd/association-field/SubTable.mjs +351 -0
  721. package/lib/schema-component/antd/association-field/SubTabs/InternalCollapse.mjs +384 -0
  722. package/lib/schema-component/antd/association-field/SubTabs/hook.mjs +87 -0
  723. package/lib/schema-component/antd/association-field/SubTabs/index.mjs +5 -0
  724. package/lib/schema-component/antd/association-field/SubTabs/styles.mjs +33 -0
  725. package/lib/schema-component/antd/association-field/components/CreateRecordAction.mjs +84 -0
  726. package/lib/schema-component/antd/association-field/context.mjs +10 -0
  727. package/lib/schema-component/antd/association-field/hooks.mjs +221 -0
  728. package/lib/schema-component/antd/association-field/index.mjs +42 -0
  729. package/lib/schema-component/antd/association-field/schema.mjs +135 -0
  730. package/lib/schema-component/antd/association-field/util.mjs +133 -0
  731. package/lib/schema-component/antd/association-filter/ActionBarAssociationFilterAction.mjs +88 -0
  732. package/lib/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.mjs +67 -0
  733. package/lib/schema-component/antd/association-filter/AssociationFilter.Initializer.mjs +67 -0
  734. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.Designer.mjs +168 -0
  735. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.mjs +183 -0
  736. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.style.mjs +107 -0
  737. package/lib/schema-component/antd/association-filter/AssociationFilter.mjs +128 -0
  738. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDelete.mjs +55 -0
  739. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.mjs +43 -0
  740. package/lib/schema-component/antd/association-filter/utilts.mjs +7 -0
  741. package/lib/schema-component/antd/association-select/AssociationSelect.mjs +1010 -0
  742. package/lib/schema-component/antd/association-select/ReadPretty.mjs +38 -0
  743. package/lib/schema-component/antd/association-select/__tests__/association-select.test.mjs +33 -0
  744. package/lib/schema-component/antd/association-select/demos/demo1.mjs +75 -0
  745. package/lib/schema-component/antd/association-select/index.mjs +5 -0
  746. package/lib/schema-component/antd/association-select/useServiceOptions.mjs +114 -0
  747. package/lib/schema-component/antd/auto-complete/AutoComplete.mjs +92 -0
  748. package/lib/schema-component/antd/auto-complete/index.mjs +5 -0
  749. package/lib/schema-component/antd/block-item/BlockItem.mjs +93 -0
  750. package/lib/schema-component/antd/block-item/BlockToolbar.mjs +114 -0
  751. package/lib/schema-component/antd/block-item/__tests__/block-item.test.mjs +29 -0
  752. package/lib/schema-component/antd/block-item/demos/demo1.mjs +75 -0
  753. package/lib/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.mjs +63 -0
  754. package/lib/schema-component/antd/block-item/index.mjs +5 -0
  755. package/lib/schema-component/antd/block-item/useBlockToolbar.mjs +107 -0
  756. package/lib/schema-component/antd/card-item/CardItem.mjs +49 -0
  757. package/lib/schema-component/antd/card-item/__tests__/card-item.test.mjs +28 -0
  758. package/lib/schema-component/antd/card-item/demos/demo1.mjs +45 -0
  759. package/lib/schema-component/antd/card-item/index.mjs +5 -0
  760. package/lib/schema-component/antd/card-item/style.mjs +33 -0
  761. package/lib/schema-component/antd/cascader/Cascader.mjs +123 -0
  762. package/lib/schema-component/antd/cascader/ReadPretty.mjs +50 -0
  763. package/lib/schema-component/antd/cascader/__tests__/cascader.test.mjs +56 -0
  764. package/lib/schema-component/antd/cascader/defaultFieldNames.mjs +9 -0
  765. package/lib/schema-component/antd/cascader/demos/demo1.mjs +100 -0
  766. package/lib/schema-component/antd/cascader/demos/demo2.mjs +140 -0
  767. package/lib/schema-component/antd/cascader/index.mjs +5 -0
  768. package/lib/schema-component/antd/checkbox/Checkbox.mjs +120 -0
  769. package/lib/schema-component/antd/checkbox/__tests__/checkbox.test.mjs +60 -0
  770. package/lib/schema-component/antd/checkbox/demos/checkbox.group.mjs +73 -0
  771. package/lib/schema-component/antd/checkbox/demos/checkbox.mjs +59 -0
  772. package/lib/schema-component/antd/checkbox/index.mjs +5 -0
  773. package/lib/schema-component/antd/collection-select/CollectionSelect.mjs +194 -0
  774. package/lib/schema-component/antd/collection-select/__tests__/collection-select.test.mjs +33 -0
  775. package/lib/schema-component/antd/collection-select/demos/demo1.mjs +54 -0
  776. package/lib/schema-component/antd/collection-select/index.mjs +5 -0
  777. package/lib/schema-component/antd/color-picker/ColorPicker.mjs +114 -0
  778. package/lib/schema-component/antd/color-picker/ReadPretty.mjs +36 -0
  779. package/lib/schema-component/antd/color-picker/demos/demo1.mjs +68 -0
  780. package/lib/schema-component/antd/color-picker/index.mjs +5 -0
  781. package/lib/schema-component/antd/color-picker/util.mjs +196 -0
  782. package/lib/schema-component/antd/color-select/ColorSelect.mjs +73 -0
  783. package/lib/schema-component/antd/color-select/__tests__/color-select.test.mjs +32 -0
  784. package/lib/schema-component/antd/color-select/demos/demo1.mjs +59 -0
  785. package/lib/schema-component/antd/color-select/index.mjs +5 -0
  786. package/lib/schema-component/antd/cron/Cron.mjs +100 -0
  787. package/lib/schema-component/antd/cron/CronSet.mjs +147 -0
  788. package/lib/schema-component/antd/cron/__tests__/cron-set.test.mjs +50 -0
  789. package/lib/schema-component/antd/cron/demos/demo1.mjs +50 -0
  790. package/lib/schema-component/antd/cron/demos/demo2.mjs +69 -0
  791. package/lib/schema-component/antd/cron/index.mjs +7 -0
  792. package/lib/schema-component/antd/custom-cascader/CustomCascader.mjs +63 -0
  793. package/lib/schema-component/antd/custom-cascader/ReadPretty.mjs +50 -0
  794. package/lib/schema-component/antd/custom-cascader/defaultFieldNames.mjs +9 -0
  795. package/lib/schema-component/antd/custom-cascader/index.mjs +5 -0
  796. package/lib/schema-component/antd/date-picker/DatePicker.mjs +176 -0
  797. package/lib/schema-component/antd/date-picker/ReadPretty.mjs +66 -0
  798. package/lib/schema-component/antd/date-picker/__tests__/date-picker.test.mjs +250 -0
  799. package/lib/schema-component/antd/date-picker/__tests__/getDateRanges.test.mjs +119 -0
  800. package/lib/schema-component/antd/date-picker/__tests__/mapDatePicker.test.mjs +212 -0
  801. package/lib/schema-component/antd/date-picker/__tests__/mapRangePicker.test.mjs +71 -0
  802. package/lib/schema-component/antd/date-picker/__tests__/util.test.mjs +182 -0
  803. package/lib/schema-component/antd/date-picker/demos/demo1.mjs +76 -0
  804. package/lib/schema-component/antd/date-picker/demos/demo10.mjs +80 -0
  805. package/lib/schema-component/antd/date-picker/demos/demo11.mjs +84 -0
  806. package/lib/schema-component/antd/date-picker/demos/demo2.mjs +79 -0
  807. package/lib/schema-component/antd/date-picker/demos/demo3.mjs +77 -0
  808. package/lib/schema-component/antd/date-picker/demos/demo4.mjs +94 -0
  809. package/lib/schema-component/antd/date-picker/demos/demo5.mjs +93 -0
  810. package/lib/schema-component/antd/date-picker/demos/demo6.mjs +93 -0
  811. package/lib/schema-component/antd/date-picker/demos/demo7.mjs +80 -0
  812. package/lib/schema-component/antd/date-picker/demos/demo8.mjs +80 -0
  813. package/lib/schema-component/antd/date-picker/demos/demo9.mjs +80 -0
  814. package/lib/schema-component/antd/date-picker/index.mjs +5 -0
  815. package/lib/schema-component/antd/date-picker/util.mjs +217 -0
  816. package/lib/schema-component/antd/details/Details.mjs +44 -0
  817. package/lib/schema-component/antd/details/__tests__/details.test.mjs +25 -0
  818. package/lib/schema-component/antd/details/demos/demo1.mjs +59 -0
  819. package/lib/schema-component/antd/details/index.mjs +5 -0
  820. package/lib/schema-component/antd/error-fallback/ErrorFallback.mjs +77 -0
  821. package/lib/schema-component/antd/error-fallback/__tests__/error-fallback.test.mjs +33 -0
  822. package/lib/schema-component/antd/error-fallback/demos/demo1.mjs +30 -0
  823. package/lib/schema-component/antd/error-fallback/index.mjs +5 -0
  824. package/lib/schema-component/antd/expand-action/Expand.Action.Design.mjs +134 -0
  825. package/lib/schema-component/antd/expand-action/Expand.Action.mjs +103 -0
  826. package/lib/schema-component/antd/expand-action/index.mjs +15 -0
  827. package/lib/schema-component/antd/filter/DynamicComponent.mjs +81 -0
  828. package/lib/schema-component/antd/filter/Filter.Action.Designer.mjs +156 -0
  829. package/lib/schema-component/antd/filter/Filter.mjs +95 -0
  830. package/lib/schema-component/antd/filter/FilterAction.mjs +218 -0
  831. package/lib/schema-component/antd/filter/FilterGroup.mjs +166 -0
  832. package/lib/schema-component/antd/filter/FilterItem.mjs +120 -0
  833. package/lib/schema-component/antd/filter/FilterItems.mjs +47 -0
  834. package/lib/schema-component/antd/filter/SaveDefaultValue.mjs +61 -0
  835. package/lib/schema-component/antd/filter/__tests__/filter.test.mjs +152 -0
  836. package/lib/schema-component/antd/filter/context.mjs +14 -0
  837. package/lib/schema-component/antd/filter/demos/demo2.mjs +143 -0
  838. package/lib/schema-component/antd/filter/demos/demo3.mjs +213 -0
  839. package/lib/schema-component/antd/filter/demos/demo4.mjs +203 -0
  840. package/lib/schema-component/antd/filter/demos/demo5.mjs +145 -0
  841. package/lib/schema-component/antd/filter/demos/demo6.mjs +140 -0
  842. package/lib/schema-component/antd/filter/index.mjs +9 -0
  843. package/lib/schema-component/antd/filter/useFilterActionProps.mjs +298 -0
  844. package/lib/schema-component/antd/filter/useOperators.mjs +38 -0
  845. package/lib/schema-component/antd/filter/useValues.mjs +155 -0
  846. package/lib/schema-component/antd/filter/utils.mjs +20 -0
  847. package/lib/schema-component/antd/form/Form.Designer.mjs +27 -0
  848. package/lib/schema-component/antd/form/Form.Settings.mjs +48 -0
  849. package/lib/schema-component/antd/form/Form.mjs +187 -0
  850. package/lib/schema-component/antd/form/__tests__/form.test.mjs +155 -0
  851. package/lib/schema-component/antd/form/demos/apiClient.mjs +26 -0
  852. package/lib/schema-component/antd/form/demos/demo1.mjs +93 -0
  853. package/lib/schema-component/antd/form/demos/demo2.mjs +95 -0
  854. package/lib/schema-component/antd/form/demos/demo3.mjs +94 -0
  855. package/lib/schema-component/antd/form/demos/demo4.mjs +98 -0
  856. package/lib/schema-component/antd/form/demos/demo5.mjs +142 -0
  857. package/lib/schema-component/antd/form/demos/demo6.mjs +95 -0
  858. package/lib/schema-component/antd/form/demos/demo7.mjs +103 -0
  859. package/lib/schema-component/antd/form/demos/demo8.mjs +110 -0
  860. package/lib/schema-component/antd/form/index.mjs +7 -0
  861. package/lib/schema-component/antd/form-dialog/index.mjs +199 -0
  862. package/lib/schema-component/antd/form-item/FormItem.FilterFormDesigner.mjs +21 -0
  863. package/lib/schema-component/antd/form-item/FormItem.FilterFormSettings.mjs +183 -0
  864. package/lib/schema-component/antd/form-item/FormItem.Settings.mjs +1326 -0
  865. package/lib/schema-component/antd/form-item/FormItem.mjs +200 -0
  866. package/lib/schema-component/antd/form-item/SchemaSettingOptions.mjs +638 -0
  867. package/lib/schema-component/antd/form-item/__tests__/form-item.test.mjs +27 -0
  868. package/lib/schema-component/antd/form-item/__tests__/hooks/useSpecialCase.test.mjs +33 -0
  869. package/lib/schema-component/antd/form-item/__tests__/utils.test.mjs +71 -0
  870. package/lib/schema-component/antd/form-item/demos/demo1.mjs +56 -0
  871. package/lib/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.mjs +135 -0
  872. package/lib/schema-component/antd/form-item/hooks/useParseDefaultValue.mjs +164 -0
  873. package/lib/schema-component/antd/form-item/hooks/useSpecialCase.mjs +182 -0
  874. package/lib/schema-component/antd/form-item/index.mjs +11 -0
  875. package/lib/schema-component/antd/form-item/utils.mjs +22 -0
  876. package/lib/schema-component/antd/form-tab/index.mjs +168 -0
  877. package/lib/schema-component/antd/form-v2/Form.Designer.mjs +51 -0
  878. package/lib/schema-component/antd/form-v2/Form.FilterDesigner.mjs +36 -0
  879. package/lib/schema-component/antd/form-v2/Form.Settings.mjs +364 -0
  880. package/lib/schema-component/antd/form-v2/Form.mjs +432 -0
  881. package/lib/schema-component/antd/form-v2/FormField.mjs +51 -0
  882. package/lib/schema-component/antd/form-v2/Templates.mjs +257 -0
  883. package/lib/schema-component/antd/form-v2/__tests__/form-v2.test.mjs +69 -0
  884. package/lib/schema-component/antd/form-v2/demos/collections.mjs +1568 -0
  885. package/lib/schema-component/antd/form-v2/demos/demo1.mjs +139 -0
  886. package/lib/schema-component/antd/form-v2/demos/demo2.mjs +162 -0
  887. package/lib/schema-component/antd/form-v2/demos/demo3.mjs +139 -0
  888. package/lib/schema-component/antd/form-v2/index.mjs +30 -0
  889. package/lib/schema-component/antd/form-v2/utils.mjs +182 -0
  890. package/lib/schema-component/antd/grid/Block.mjs +39 -0
  891. package/lib/schema-component/antd/grid/Grid.mjs +562 -0
  892. package/lib/schema-component/antd/grid/Grid.style.mjs +51 -0
  893. package/lib/schema-component/antd/grid/__tests__/grid.test.mjs +47 -0
  894. package/lib/schema-component/antd/grid/demos/demo1.mjs +211 -0
  895. package/lib/schema-component/antd/grid/demos/demo2.mjs +119 -0
  896. package/lib/schema-component/antd/grid/demos/demo3.mjs +101 -0
  897. package/lib/schema-component/antd/grid/index.mjs +7 -0
  898. package/lib/schema-component/antd/grid-card/GridCard.Decorator.mjs +108 -0
  899. package/lib/schema-component/antd/grid-card/GridCard.Decorator.style.mjs +30 -0
  900. package/lib/schema-component/antd/grid-card/GridCard.Designer.mjs +317 -0
  901. package/lib/schema-component/antd/grid-card/GridCard.Item.mjs +120 -0
  902. package/lib/schema-component/antd/grid-card/GridCard.mjs +215 -0
  903. package/lib/schema-component/antd/grid-card/__tests__/grid-card.test.mjs +24 -0
  904. package/lib/schema-component/antd/grid-card/demos/demo1.mjs +17 -0
  905. package/lib/schema-component/antd/grid-card/hooks.mjs +37 -0
  906. package/lib/schema-component/antd/grid-card/index.mjs +5 -0
  907. package/lib/schema-component/antd/grid-card/options.mjs +38 -0
  908. package/lib/schema-component/antd/icon-picker/IconFilterInput.mjs +32 -0
  909. package/lib/schema-component/antd/icon-picker/IconList.mjs +71 -0
  910. package/lib/schema-component/antd/icon-picker/IconPicker.mjs +116 -0
  911. package/lib/schema-component/antd/icon-picker/__tests__/icon-picker.test.mjs +43 -0
  912. package/lib/schema-component/antd/icon-picker/demos/icon-picker.mjs +57 -0
  913. package/lib/schema-component/antd/icon-picker/index.mjs +5 -0
  914. package/lib/schema-component/antd/index.css +30 -0
  915. package/lib/schema-component/antd/index.mjs +137 -0
  916. package/lib/schema-component/antd/input/EllipsisWithTooltip.mjs +82 -0
  917. package/lib/schema-component/antd/input/Input.mjs +56 -0
  918. package/lib/schema-component/antd/input/Json.mjs +83 -0
  919. package/lib/schema-component/antd/input/ReadPretty.mjs +186 -0
  920. package/lib/schema-component/antd/input/__tests__/Input.test.mjs +141 -0
  921. package/lib/schema-component/antd/input/demos/input.mjs +57 -0
  922. package/lib/schema-component/antd/input/demos/json.mjs +63 -0
  923. package/lib/schema-component/antd/input/demos/textarea.mjs +85 -0
  924. package/lib/schema-component/antd/input/demos/url.mjs +59 -0
  925. package/lib/schema-component/antd/input/index.mjs +13 -0
  926. package/lib/schema-component/antd/input/shared.mjs +11 -0
  927. package/lib/schema-component/antd/input-number/InputNumber.mjs +37 -0
  928. package/lib/schema-component/antd/input-number/ReadPretty.mjs +161 -0
  929. package/lib/schema-component/antd/input-number/__tests__/input-number.test.mjs +152 -0
  930. package/lib/schema-component/antd/input-number/demos/addonBefore&addonAfter.mjs +65 -0
  931. package/lib/schema-component/antd/input-number/demos/highPrecisionDecimals.mjs +67 -0
  932. package/lib/schema-component/antd/input-number/demos/inputNumber.mjs +57 -0
  933. package/lib/schema-component/antd/input-number/index.mjs +5 -0
  934. package/lib/schema-component/antd/list/List.Decorator.mjs +135 -0
  935. package/lib/schema-component/antd/list/List.Designer.mjs +260 -0
  936. package/lib/schema-component/antd/list/List.Item.mjs +85 -0
  937. package/lib/schema-component/antd/list/List.mjs +129 -0
  938. package/lib/schema-component/antd/list/List.style.mjs +62 -0
  939. package/lib/schema-component/antd/list/__tests__/list.test.mjs +24 -0
  940. package/lib/schema-component/antd/list/demos/demo1.mjs +17 -0
  941. package/lib/schema-component/antd/list/hooks.mjs +16 -0
  942. package/lib/schema-component/antd/list/index.mjs +5 -0
  943. package/lib/schema-component/antd/markdown/Markdown.Void.Designer.mjs +45 -0
  944. package/lib/schema-component/antd/markdown/Markdown.Void.mjs +148 -0
  945. package/lib/schema-component/antd/markdown/Markdown.mjs +83 -0
  946. package/lib/schema-component/antd/markdown/__tests__/markdown.test.mjs +48 -0
  947. package/lib/schema-component/antd/markdown/demos/demo1.mjs +59 -0
  948. package/lib/schema-component/antd/markdown/demos/demo2.mjs +78 -0
  949. package/lib/schema-component/antd/markdown/index.mjs +5 -0
  950. package/lib/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.mjs +73 -0
  951. package/lib/schema-component/antd/markdown/md.mjs +25 -0
  952. package/lib/schema-component/antd/markdown/style.mjs +233 -0
  953. package/lib/schema-component/antd/markdown/util.mjs +49 -0
  954. package/lib/schema-component/antd/menu/Menu.Designer.mjs +478 -0
  955. package/lib/schema-component/antd/menu/Menu.mjs +686 -0
  956. package/lib/schema-component/antd/menu/Menu.styles.mjs +85 -0
  957. package/lib/schema-component/antd/menu/MenuItemInitializers/index.mjs +17 -0
  958. package/lib/schema-component/antd/menu/__tests__/menu.test.mjs +65 -0
  959. package/lib/schema-component/antd/menu/demos/demo1.mjs +109 -0
  960. package/lib/schema-component/antd/menu/demos/demo2.mjs +112 -0
  961. package/lib/schema-component/antd/menu/demos/demo3.mjs +152 -0
  962. package/lib/schema-component/antd/menu/index.mjs +9 -0
  963. package/lib/schema-component/antd/menu/locale.mjs +11 -0
  964. package/lib/schema-component/antd/menu/util.mjs +56 -0
  965. package/lib/schema-component/antd/nanoIDInput/NanoIDInput.mjs +71 -0
  966. package/lib/schema-component/antd/nanoIDInput/index.mjs +5 -0
  967. package/lib/schema-component/antd/page/FixedBlock.mjs +118 -0
  968. package/lib/schema-component/antd/page/FixedBlockDesignerItem.mjs +72 -0
  969. package/lib/schema-component/antd/page/Page.Settings.mjs +167 -0
  970. package/lib/schema-component/antd/page/Page.mjs +317 -0
  971. package/lib/schema-component/antd/page/PageTab.Settings.mjs +108 -0
  972. package/lib/schema-component/antd/page/PageTabDesigner.mjs +98 -0
  973. package/lib/schema-component/antd/page/__tests__/page.test.mjs +33 -0
  974. package/lib/schema-component/antd/page/demos/demo1.mjs +52 -0
  975. package/lib/schema-component/antd/page/hooks/useIsBlockInPage.mjs +25 -0
  976. package/lib/schema-component/antd/page/index.mjs +13 -0
  977. package/lib/schema-component/antd/page/style.mjs +149 -0
  978. package/lib/schema-component/antd/pagination/index.mjs +48 -0
  979. package/lib/schema-component/antd/password/Password.mjs +102 -0
  980. package/lib/schema-component/antd/password/PasswordStrength.mjs +29 -0
  981. package/lib/schema-component/antd/password/__tests__/password.test.mjs +46 -0
  982. package/lib/schema-component/antd/password/__tests__/utils.test.mjs +27 -0
  983. package/lib/schema-component/antd/password/demos/demo1.mjs +59 -0
  984. package/lib/schema-component/antd/password/demos/demo2.mjs +62 -0
  985. package/lib/schema-component/antd/password/index.mjs +5 -0
  986. package/lib/schema-component/antd/password/utils.mjs +146 -0
  987. package/lib/schema-component/antd/percent/Percent.mjs +59 -0
  988. package/lib/schema-component/antd/percent/__tests__/percent.test.mjs +31 -0
  989. package/lib/schema-component/antd/percent/demos/percent.mjs +57 -0
  990. package/lib/schema-component/antd/percent/index.mjs +5 -0
  991. package/lib/schema-component/antd/popover/Popover.mjs +67 -0
  992. package/lib/schema-component/antd/popover/index.mjs +5 -0
  993. package/lib/schema-component/antd/preview/Preview.mjs +324 -0
  994. package/lib/schema-component/antd/preview/__tests__/preview.test.mjs +26 -0
  995. package/lib/schema-component/antd/preview/demos/demo1.mjs +103 -0
  996. package/lib/schema-component/antd/preview/index.mjs +5 -0
  997. package/lib/schema-component/antd/quick-edit/QuickEdit.mjs +148 -0
  998. package/lib/schema-component/antd/quick-edit/index.mjs +5 -0
  999. package/lib/schema-component/antd/radio/Radio.mjs +62 -0
  1000. package/lib/schema-component/antd/radio/__tests__/radio.test.mjs +64 -0
  1001. package/lib/schema-component/antd/radio/demos/demo1.mjs +60 -0
  1002. package/lib/schema-component/antd/radio/demos/demo2.mjs +72 -0
  1003. package/lib/schema-component/antd/radio/demos/demo3.mjs +73 -0
  1004. package/lib/schema-component/antd/radio/index.mjs +5 -0
  1005. package/lib/schema-component/antd/record-picker/InputRecordPicker.mjs +308 -0
  1006. package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.mjs +177 -0
  1007. package/lib/schema-component/antd/record-picker/RecordPicker.mjs +17 -0
  1008. package/lib/schema-component/antd/record-picker/__tests__/record-picker.test.mjs +44 -0
  1009. package/lib/schema-component/antd/record-picker/demos/demo1.mjs +198 -0
  1010. package/lib/schema-component/antd/record-picker/demos/mockData.mjs +214 -0
  1011. package/lib/schema-component/antd/record-picker/index.mjs +24 -0
  1012. package/lib/schema-component/antd/record-picker/useFieldNames.mjs +18 -0
  1013. package/lib/schema-component/antd/record-picker/util.mjs +59 -0
  1014. package/lib/schema-component/antd/remote-select/ReadPretty.mjs +71 -0
  1015. package/lib/schema-component/antd/remote-select/RemoteSelect.mjs +291 -0
  1016. package/lib/schema-component/antd/remote-select/__tests__/remote-select.test.mjs +33 -0
  1017. package/lib/schema-component/antd/remote-select/demos/demo1.mjs +75 -0
  1018. package/lib/schema-component/antd/remote-select/index.mjs +5 -0
  1019. package/lib/schema-component/antd/remote-select/shared.mjs +11 -0
  1020. package/lib/schema-component/antd/rich-text/RichText.mjs +85 -0
  1021. package/lib/schema-component/antd/rich-text/__tests__/rich-text.test.mjs +28 -0
  1022. package/lib/schema-component/antd/rich-text/demos/demo1.mjs +61 -0
  1023. package/lib/schema-component/antd/rich-text/index.mjs +5 -0
  1024. package/lib/schema-component/antd/rich-text/style.mjs +818 -0
  1025. package/lib/schema-component/antd/scroll-area/ScrollArea.mjs +63 -0
  1026. package/lib/schema-component/antd/scroll-area/index.mjs +5 -0
  1027. package/lib/schema-component/antd/select/FormulaSelect.mjs +263 -0
  1028. package/lib/schema-component/antd/select/ReadPretty.mjs +61 -0
  1029. package/lib/schema-component/antd/select/Select.mjs +214 -0
  1030. package/lib/schema-component/antd/select/__tests__/select.test.mjs +63 -0
  1031. package/lib/schema-component/antd/select/__tests__/utils.test.mjs +135 -0
  1032. package/lib/schema-component/antd/select/demos/demo1.mjs +91 -0
  1033. package/lib/schema-component/antd/select/demos/demo2.mjs +95 -0
  1034. package/lib/schema-component/antd/select/demos/demo3.mjs +105 -0
  1035. package/lib/schema-component/antd/select/index.mjs +7 -0
  1036. package/lib/schema-component/antd/select/utils.mjs +49 -0
  1037. package/lib/schema-component/antd/space/index.mjs +36 -0
  1038. package/lib/schema-component/antd/table/Table.Array.Designer.mjs +26 -0
  1039. package/lib/schema-component/antd/table/Table.Array.mjs +358 -0
  1040. package/lib/schema-component/antd/table/Table.Column.ActionBar.mjs +62 -0
  1041. package/lib/schema-component/antd/table/Table.Column.Decorator.mjs +77 -0
  1042. package/lib/schema-component/antd/table/Table.Column.Designer.mjs +173 -0
  1043. package/lib/schema-component/antd/table/Table.Column.mjs +22 -0
  1044. package/lib/schema-component/antd/table/Table.Designer.mjs +32 -0
  1045. package/lib/schema-component/antd/table/Table.RowActionDesigner.mjs +60 -0
  1046. package/lib/schema-component/antd/table/Table.RowSelection.mjs +47 -0
  1047. package/lib/schema-component/antd/table/Table.Void.Designer.mjs +278 -0
  1048. package/lib/schema-component/antd/table/Table.Void.mjs +155 -0
  1049. package/lib/schema-component/antd/table/__tests__/table.test.mjs +45 -0
  1050. package/lib/schema-component/antd/table/demos/demo1.mjs +77 -0
  1051. package/lib/schema-component/antd/table/demos/demo2.mjs +77 -0
  1052. package/lib/schema-component/antd/table/demos/demo3.mjs +77 -0
  1053. package/lib/schema-component/antd/table/demos/demo4.mjs +242 -0
  1054. package/lib/schema-component/antd/table/index.mjs +60 -0
  1055. package/lib/schema-component/antd/table-v2/Table.ActionColumnDesigner.mjs +60 -0
  1056. package/lib/schema-component/antd/table-v2/Table.Column.ActionBar.mjs +72 -0
  1057. package/lib/schema-component/antd/table-v2/Table.Column.Decorator.mjs +91 -0
  1058. package/lib/schema-component/antd/table-v2/Table.Column.Designer.mjs +514 -0
  1059. package/lib/schema-component/antd/table-v2/Table.Column.mjs +23 -0
  1060. package/lib/schema-component/antd/table-v2/Table.Designer.mjs +32 -0
  1061. package/lib/schema-component/antd/table-v2/Table.Index.mjs +22 -0
  1062. package/lib/schema-component/antd/table-v2/Table.mjs +574 -0
  1063. package/lib/schema-component/antd/table-v2/Table.styles.mjs +146 -0
  1064. package/lib/schema-component/antd/table-v2/TableBlockDesigner.mjs +392 -0
  1065. package/lib/schema-component/antd/table-v2/TableField.mjs +77 -0
  1066. package/lib/schema-component/antd/table-v2/TableSelector.mjs +9 -0
  1067. package/lib/schema-component/antd/table-v2/TableSelectorDesigner.mjs +347 -0
  1068. package/lib/schema-component/antd/table-v2/__tests__/table-v2.test.mjs +31 -0
  1069. package/lib/schema-component/antd/table-v2/components/ColumnFieldProvider.mjs +59 -0
  1070. package/lib/schema-component/antd/table-v2/demos/collections.mjs +1563 -0
  1071. package/lib/schema-component/antd/table-v2/demos/demo1.mjs +251 -0
  1072. package/lib/schema-component/antd/table-v2/demos/demo2.mjs +145 -0
  1073. package/lib/schema-component/antd/table-v2/index.mjs +52 -0
  1074. package/lib/schema-component/antd/table-v2/utils.mjs +20 -0
  1075. package/lib/schema-component/antd/tabs/Tabs.Designer.mjs +159 -0
  1076. package/lib/schema-component/antd/tabs/Tabs.mjs +141 -0
  1077. package/lib/schema-component/antd/tabs/__tests__/tabs.test.mjs +29 -0
  1078. package/lib/schema-component/antd/tabs/context.mjs +23 -0
  1079. package/lib/schema-component/antd/tabs/demos/demo1.mjs +86 -0
  1080. package/lib/schema-component/antd/tabs/index.mjs +7 -0
  1081. package/lib/schema-component/antd/time-picker/ReadPretty.mjs +42 -0
  1082. package/lib/schema-component/antd/time-picker/TimePicker.mjs +40 -0
  1083. package/lib/schema-component/antd/time-picker/__tests__/time-picker.test.mjs +68 -0
  1084. package/lib/schema-component/antd/time-picker/demos/demo1.mjs +59 -0
  1085. package/lib/schema-component/antd/time-picker/demos/demo2.mjs +59 -0
  1086. package/lib/schema-component/antd/time-picker/index.mjs +5 -0
  1087. package/lib/schema-component/antd/tree/Tree.mjs +115 -0
  1088. package/lib/schema-component/antd/tree/index.mjs +10 -0
  1089. package/lib/schema-component/antd/tree-select/ReadPretty.mjs +91 -0
  1090. package/lib/schema-component/antd/tree-select/TreeSelect.mjs +37 -0
  1091. package/lib/schema-component/antd/tree-select/__tests__/tree-select.test.mjs +29 -0
  1092. package/lib/schema-component/antd/tree-select/demos/demo1.mjs +103 -0
  1093. package/lib/schema-component/antd/tree-select/index.mjs +5 -0
  1094. package/lib/schema-component/antd/unixTimestamp/UnixTimestamp.mjs +69 -0
  1095. package/lib/schema-component/antd/unixTimestamp/index.mjs +5 -0
  1096. package/lib/schema-component/antd/upload/ReadPretty.mjs +249 -0
  1097. package/lib/schema-component/antd/upload/Upload.mjs +394 -0
  1098. package/lib/schema-component/antd/upload/__tests__/upload.test.mjs +31 -0
  1099. package/lib/schema-component/antd/upload/demos/apiClient.mjs +51 -0
  1100. package/lib/schema-component/antd/upload/demos/demo1.mjs +71 -0
  1101. package/lib/schema-component/antd/upload/demos/demo2.mjs +137 -0
  1102. package/lib/schema-component/antd/upload/index.mjs +5 -0
  1103. package/lib/schema-component/antd/upload/placeholder.mjs +66 -0
  1104. package/lib/schema-component/antd/upload/shared.mjs +254 -0
  1105. package/lib/schema-component/antd/upload/style.mjs +81 -0
  1106. package/lib/schema-component/antd/upload/type.d.mjs +7 -0
  1107. package/lib/schema-component/antd/variable/CodeMirror.mjs +124 -0
  1108. package/lib/schema-component/antd/variable/Input.mjs +384 -0
  1109. package/lib/schema-component/antd/variable/JSONInput.mjs +57 -0
  1110. package/lib/schema-component/antd/variable/RawTextArea.mjs +125 -0
  1111. package/lib/schema-component/antd/variable/TextArea.mjs +504 -0
  1112. package/lib/schema-component/antd/variable/Variable.mjs +57 -0
  1113. package/lib/schema-component/antd/variable/VariableSelect.mjs +101 -0
  1114. package/lib/schema-component/antd/variable/VariableSelect.style.mjs +36 -0
  1115. package/lib/schema-component/antd/variable/XButton.mjs +35 -0
  1116. package/lib/schema-component/antd/variable/__tests__/variable.test.mjs +66 -0
  1117. package/lib/schema-component/antd/variable/demos/demo1.mjs +63 -0
  1118. package/lib/schema-component/antd/variable/demos/demo2.mjs +63 -0
  1119. package/lib/schema-component/antd/variable/demos/demo3.mjs +63 -0
  1120. package/lib/schema-component/antd/variable/index.mjs +5 -0
  1121. package/lib/schema-component/antd/variable/style.mjs +186 -0
  1122. package/lib/schema-component/common/dnd-context/index.mjs +124 -0
  1123. package/lib/schema-component/common/index.mjs +7 -0
  1124. package/lib/schema-component/common/infinite-scroll/infinite-scroll.mjs +153 -0
  1125. package/lib/schema-component/common/infinite-scroll/style.mjs +36 -0
  1126. package/lib/schema-component/common/sortable-item/SortableItem.mjs +166 -0
  1127. package/lib/schema-component/common/sortable-item/index.mjs +5 -0
  1128. package/lib/schema-component/common/utils/logic.mjs +578 -0
  1129. package/lib/schema-component/common/utils/uitls.mjs +155 -0
  1130. package/lib/schema-component/context.mjs +10 -0
  1131. package/lib/schema-component/core/DesignableSwitch.mjs +67 -0
  1132. package/lib/schema-component/core/FormProvider.mjs +70 -0
  1133. package/lib/schema-component/core/RemoteSchemaComponent.mjs +72 -0
  1134. package/lib/schema-component/core/SchemaComponent.mjs +86 -0
  1135. package/lib/schema-component/core/SchemaComponentOptions.mjs +62 -0
  1136. package/lib/schema-component/core/SchemaComponentProvider.mjs +116 -0
  1137. package/lib/schema-component/core/index.mjs +32 -0
  1138. package/lib/schema-component/demos/demo1.mjs +111 -0
  1139. package/lib/schema-component/demos/demo2.mjs +40 -0
  1140. package/lib/schema-component/demos/demo3.mjs +41 -0
  1141. package/lib/schema-component/demos/demo4.mjs +41 -0
  1142. package/lib/schema-component/hooks/__tests__/designable.test.mjs +564 -0
  1143. package/lib/schema-component/hooks/__tests__/splitWrapSchema.test.mjs +98 -0
  1144. package/lib/schema-component/hooks/index.mjs +27 -0
  1145. package/lib/schema-component/hooks/useAttach.mjs +24 -0
  1146. package/lib/schema-component/hooks/useCompile.mjs +59 -0
  1147. package/lib/schema-component/hooks/useComponent.mjs +26 -0
  1148. package/lib/schema-component/hooks/useDesignable.mjs +858 -0
  1149. package/lib/schema-component/hooks/useDesigner.mjs +36 -0
  1150. package/lib/schema-component/hooks/useFieldComponentOptions.mjs +106 -0
  1151. package/lib/schema-component/hooks/useFieldModeOptions.mjs +304 -0
  1152. package/lib/schema-component/hooks/useFieldProps.mjs +27 -0
  1153. package/lib/schema-component/hooks/useFieldTitle.mjs +37 -0
  1154. package/lib/schema-component/hooks/useProps.mjs +22 -0
  1155. package/lib/schema-component/hooks/useSchemaComponentContext.mjs +15 -0
  1156. package/lib/schema-component/hooks/useTableSize.mjs +40 -0
  1157. package/lib/schema-component/index.mjs +15 -0
  1158. package/lib/schema-component/types.mjs +7 -0
  1159. package/lib/schema-initializer/buttons/CustomFormItemInitializers.mjs +71 -0
  1160. package/lib/schema-initializer/buttons/FormItemInitializers.mjs +187 -0
  1161. package/lib/schema-initializer/buttons/RecordBlockInitializers.mjs +460 -0
  1162. package/lib/schema-initializer/buttons/SubTableActionInitializers.mjs +41 -0
  1163. package/lib/schema-initializer/buttons/TabPaneInitializers.mjs +232 -0
  1164. package/lib/schema-initializer/buttons/index.mjs +16 -0
  1165. package/lib/schema-initializer/components/CreateRecordAction.mjs +414 -0
  1166. package/lib/schema-initializer/components/DeletedField.mjs +25 -0
  1167. package/lib/schema-initializer/components/assigned-field/AssignedField.mjs +177 -0
  1168. package/lib/schema-initializer/components/assigned-field/index.mjs +5 -0
  1169. package/lib/schema-initializer/components/index.mjs +7 -0
  1170. package/lib/schema-initializer/demos/basic.mjs +81 -0
  1171. package/lib/schema-initializer/demos/build-type.mjs +96 -0
  1172. package/lib/schema-initializer/demos/custom-button.mjs +114 -0
  1173. package/lib/schema-initializer/demos/custom-items-component.mjs +116 -0
  1174. package/lib/schema-initializer/demos/dynamic-visible-children.mjs +94 -0
  1175. package/lib/schema-initializer/demos/insert-schema-action.mjs +111 -0
  1176. package/lib/schema-initializer/demos/insert-schema-basic.mjs +133 -0
  1177. package/lib/schema-initializer/demos/insert-schema-form-item.mjs +153 -0
  1178. package/lib/schema-initializer/demos/nested-items.mjs +170 -0
  1179. package/lib/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.mjs +36 -0
  1180. package/lib/schema-initializer/index.mjs +329 -0
  1181. package/lib/schema-initializer/items/ActionInitializer.mjs +29 -0
  1182. package/lib/schema-initializer/items/BlockInitializer.mjs +43 -0
  1183. package/lib/schema-initializer/items/CreateFilterActionInitializer.mjs +33 -0
  1184. package/lib/schema-initializer/items/CreateResetActionInitializer.mjs +28 -0
  1185. package/lib/schema-initializer/items/CustomFilterFormItemInitializer.mjs +540 -0
  1186. package/lib/schema-initializer/items/CustomizeActionInitializer.mjs +27 -0
  1187. package/lib/schema-initializer/items/DataBlockInitializer.mjs +393 -0
  1188. package/lib/schema-initializer/items/DeleteEventActionInitializer.mjs +36 -0
  1189. package/lib/schema-initializer/items/FilterBlockInitializer.mjs +9 -0
  1190. package/lib/schema-initializer/items/G2PlotInitializer.mjs +28 -0
  1191. package/lib/schema-initializer/items/InitializerWithSwitch.mjs +47 -0
  1192. package/lib/schema-initializer/items/RecordAssociationBlockInitializer.mjs +86 -0
  1193. package/lib/schema-initializer/items/RecordAssociationDetailsBlockInitializer.mjs +84 -0
  1194. package/lib/schema-initializer/items/RecordAssociationFormBlockInitializer.mjs +119 -0
  1195. package/lib/schema-initializer/items/RecordAssociationGridCardBlockInitializer.mjs +86 -0
  1196. package/lib/schema-initializer/items/RecordAssociationListBlockInitializer.mjs +84 -0
  1197. package/lib/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.mjs +118 -0
  1198. package/lib/schema-initializer/items/SelectActionInitializer.mjs +76 -0
  1199. package/lib/schema-initializer/items/SubmitActionInitializer.mjs +34 -0
  1200. package/lib/schema-initializer/items/TableActionColumnInitializer.mjs +57 -0
  1201. package/lib/schema-initializer/items/index.mjs +50 -0
  1202. package/lib/schema-initializer/style.mjs +23 -0
  1203. package/lib/schema-initializer/utils.mjs +1535 -0
  1204. package/lib/schema-items/GeneralSchemaItems.mjs +181 -0
  1205. package/lib/schema-items/GeneralSettings.mjs +226 -0
  1206. package/lib/schema-items/OpenModeSchemaItems.mjs +215 -0
  1207. package/lib/schema-items/index.mjs +7 -0
  1208. package/lib/schema-settings/DataTemplates/FormDataTemplates.mjs +332 -0
  1209. package/lib/schema-settings/DataTemplates/TreeLabel.mjs +42 -0
  1210. package/lib/schema-settings/DataTemplates/components/AsDefaultTemplate.mjs +64 -0
  1211. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.mjs +305 -0
  1212. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.style.mjs +15 -0
  1213. package/lib/schema-settings/DataTemplates/components/Designer.mjs +208 -0
  1214. package/lib/schema-settings/DataTemplates/hooks/useCollectionState.mjs +348 -0
  1215. package/lib/schema-settings/DataTemplates/index.mjs +5 -0
  1216. package/lib/schema-settings/DataTemplates/utils.mjs +300 -0
  1217. package/lib/schema-settings/DateFormat/ExpiresRadio.mjs +160 -0
  1218. package/lib/schema-settings/EditCustomDefaultValue.mjs +137 -0
  1219. package/lib/schema-settings/EditFormulaTitleField.mjs +127 -0
  1220. package/lib/schema-settings/EnableChildCollections/DynamicComponent.mjs +91 -0
  1221. package/lib/schema-settings/EnableChildCollections/index.mjs +129 -0
  1222. package/lib/schema-settings/GeneralSchemaDesigner.mjs +328 -0
  1223. package/lib/schema-settings/LinkageRules/DynamicComponent.mjs +79 -0
  1224. package/lib/schema-settings/LinkageRules/LinkageRuleAction.mjs +272 -0
  1225. package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.mjs +116 -0
  1226. package/lib/schema-settings/LinkageRules/ValueDynamicComponent.mjs +200 -0
  1227. package/lib/schema-settings/LinkageRules/Variables.mjs +119 -0
  1228. package/lib/schema-settings/LinkageRules/action-hooks.mjs +128 -0
  1229. package/lib/schema-settings/LinkageRules/components/EnableLinkage.mjs +56 -0
  1230. package/lib/schema-settings/LinkageRules/components/LinkageHeader.mjs +304 -0
  1231. package/lib/schema-settings/LinkageRules/components/LinkageHeader.style.mjs +15 -0
  1232. package/lib/schema-settings/LinkageRules/context.mjs +14 -0
  1233. package/lib/schema-settings/LinkageRules/index.mjs +247 -0
  1234. package/lib/schema-settings/LinkageRules/type.mjs +18 -0
  1235. package/lib/schema-settings/LinkageRules/useValues.mjs +84 -0
  1236. package/lib/schema-settings/SchemaSettingCollection.mjs +73 -0
  1237. package/lib/schema-settings/SchemaSettingComponent.mjs +62 -0
  1238. package/lib/schema-settings/SchemaSettings.mjs +1517 -0
  1239. package/lib/schema-settings/SchemaSettingsDataScope.mjs +152 -0
  1240. package/lib/schema-settings/SchemaSettingsDateFormat.mjs +231 -0
  1241. package/lib/schema-settings/SchemaSettingsDefaultValue.mjs +274 -0
  1242. package/lib/schema-settings/SchemaSettingsNumberFormat.mjs +205 -0
  1243. package/lib/schema-settings/SchemaSettingsPlugin.mjs +265 -0
  1244. package/lib/schema-settings/SchemaSettingsSortingRule.mjs +155 -0
  1245. package/lib/schema-settings/VariableInput/VariableInput.mjs +260 -0
  1246. package/lib/schema-settings/VariableInput/hooks/index.mjs +9 -0
  1247. package/lib/schema-settings/VariableInput/hooks/useBaseVariable.mjs +228 -0
  1248. package/lib/schema-settings/VariableInput/hooks/useBlockCollection.mjs +16 -0
  1249. package/lib/schema-settings/VariableInput/hooks/useContextAssociationFields.mjs +126 -0
  1250. package/lib/schema-settings/VariableInput/hooks/useDateVariable.mjs +179 -0
  1251. package/lib/schema-settings/VariableInput/hooks/useFilterVariable.mjs +77 -0
  1252. package/lib/schema-settings/VariableInput/hooks/useFormVariable.mjs +85 -0
  1253. package/lib/schema-settings/VariableInput/hooks/useIterationVariable.mjs +94 -0
  1254. package/lib/schema-settings/VariableInput/hooks/useParentRecordVariable.mjs +71 -0
  1255. package/lib/schema-settings/VariableInput/hooks/usePopupVariable.mjs +37 -0
  1256. package/lib/schema-settings/VariableInput/hooks/useRecordVariable.mjs +64 -0
  1257. package/lib/schema-settings/VariableInput/hooks/useRoleVariable.mjs +64 -0
  1258. package/lib/schema-settings/VariableInput/hooks/useUserVariable.mjs +67 -0
  1259. package/lib/schema-settings/VariableInput/hooks/useVariableOptions.mjs +140 -0
  1260. package/lib/schema-settings/VariableInput/index.mjs +7 -0
  1261. package/lib/schema-settings/VariableInput/type.mjs +4 -0
  1262. package/lib/schema-settings/VariableInput/utils/formatVariableScop.mjs +16 -0
  1263. package/lib/schema-settings/demos/basic.mjs +75 -0
  1264. package/lib/schema-settings/demos/built-type.mjs +157 -0
  1265. package/lib/schema-settings/demos/custom-component.mjs +58 -0
  1266. package/lib/schema-settings/demos/demo3.mjs +120 -0
  1267. package/lib/schema-settings/demos/schema-basic.mjs +84 -0
  1268. package/lib/schema-settings/filter-form/FormFilterScope.mjs +147 -0
  1269. package/lib/schema-settings/filter-form/context.mjs +14 -0
  1270. package/lib/schema-settings/hooks/useFilterFormCustomProps.mjs +22 -0
  1271. package/lib/schema-settings/hooks/useGetAriaLabelOfDesigner.mjs +39 -0
  1272. package/lib/schema-settings/hooks/useIsAllowToSetDefaultValue.mjs +109 -0
  1273. package/lib/schema-settings/hooks/useIsShowMultipleSwitch.mjs +27 -0
  1274. package/lib/schema-settings/hooks/useParseDataScopeFilter.mjs +84 -0
  1275. package/lib/schema-settings/index.mjs +46 -0
  1276. package/lib/schema-settings/isPatternDisabled.mjs +8 -0
  1277. package/lib/schema-settings/styles.mjs +92 -0
  1278. package/lib/schema-settings/types.mjs +4 -0
  1279. package/lib/schema-templates/BlockTemplate.mjs +63 -0
  1280. package/lib/schema-templates/BlockTemplateDetails.mjs +126 -0
  1281. package/lib/schema-templates/BlockTemplatePage.mjs +55 -0
  1282. package/lib/schema-templates/SchemaTemplateManagerProvider.mjs +103 -0
  1283. package/lib/schema-templates/collections/uiSchemaTemplates.mjs +22 -0
  1284. package/lib/schema-templates/index.mjs +11 -0
  1285. package/lib/schema-templates/schemas/CollectionTitle.mjs +52 -0
  1286. package/lib/schema-templates/schemas/uiSchemaTemplates.mjs +249 -0
  1287. package/lib/schema-templates/useSchemaTemplateManager.mjs +119 -0
  1288. package/lib/style/css-variable/CSSVariableProvider.mjs +90 -0
  1289. package/lib/style/css-variable/index.mjs +9 -0
  1290. package/lib/style/index.mjs +16 -0
  1291. package/lib/style/theme/AntdAppProvider.mjs +54 -0
  1292. package/lib/style/theme/defaultTheme.mjs +24 -0
  1293. package/lib/style/theme/index.mjs +96 -0
  1294. package/lib/style/theme/type.mjs +4 -0
  1295. package/lib/style/useToken.mjs +13 -0
  1296. package/lib/testUtils/index.mjs +5 -0
  1297. package/lib/testUtils/mockAPIClient.mjs +57 -0
  1298. package/lib/user/ChangePassword.mjs +180 -0
  1299. package/lib/user/CurrentUser.mjs +282 -0
  1300. package/lib/user/CurrentUserProvider.mjs +89 -0
  1301. package/lib/user/CurrentUserSettingsMenuProvider.mjs +88 -0
  1302. package/lib/user/EditProfile.mjs +172 -0
  1303. package/lib/user/LanguageSettings.mjs +70 -0
  1304. package/lib/user/SwitchRole.mjs +66 -0
  1305. package/lib/user/VerificationCode.mjs +115 -0
  1306. package/lib/user/__tests__/current-user-settings-menu-provider.test.mjs +64 -0
  1307. package/lib/user/index.mjs +9 -0
  1308. package/lib/variables/VariablesProvider.mjs +319 -0
  1309. package/lib/variables/__tests__/useVariables.test.mjs +473 -0
  1310. package/lib/variables/__tests__/utils/filterEmptyValues.test.mjs +52 -0
  1311. package/lib/variables/__tests__/utils/getPath.test.mjs +10 -0
  1312. package/lib/variables/__tests__/utils/getVariableName.test.mjs +10 -0
  1313. package/lib/variables/__tests__/utils/isVariable.test.mjs +28 -0
  1314. package/lib/variables/__tests__/utils/transformVariableValue.test.mjs +142 -0
  1315. package/lib/variables/__tests__/utils/uniq.test.mjs +83 -0
  1316. package/lib/variables/constants.mjs +5 -0
  1317. package/lib/variables/hooks/useBuiltinVariables.mjs +80 -0
  1318. package/lib/variables/hooks/useContextVariable.mjs +38 -0
  1319. package/lib/variables/hooks/useLocalVariables.mjs +102 -0
  1320. package/lib/variables/hooks/useVariables.mjs +16 -0
  1321. package/lib/variables/index.mjs +36 -0
  1322. package/lib/variables/types.mjs +4 -0
  1323. package/lib/variables/utils/filterEmptyValues.mjs +12 -0
  1324. package/lib/variables/utils/getAction.mjs +14 -0
  1325. package/lib/variables/utils/getPath.mjs +19 -0
  1326. package/lib/variables/utils/getVariableName.mjs +25 -0
  1327. package/lib/variables/utils/hasRequested.mjs +24 -0
  1328. package/lib/variables/utils/isVariable.mjs +15 -0
  1329. package/lib/variables/utils/transformVariableValue.mjs +55 -0
  1330. package/lib/variables/utils/uniq.mjs +26 -0
  1331. package/package.json +4 -4
@@ -0,0 +1,2128 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE__tachybase_test_e2e__ from "@tachybase/test/e2e";
2
+
3
+ ;// CONCATENATED MODULE: external "@tachybase/test/e2e"
4
+
5
+ ;// CONCATENATED MODULE: ./packages/client/src/modules/dialog/__e2e__/templatesOfBug.ts?__rslib_entry__
6
+
7
+ const T2797 = {
8
+ pageSchema: {
9
+ _isJSONSchemaObject: true,
10
+ version: '2.0',
11
+ type: 'void',
12
+ 'x-component': 'Page',
13
+ 'x-index': 1,
14
+ properties: {
15
+ anaca99jfos: {
16
+ _isJSONSchemaObject: true,
17
+ version: '2.0',
18
+ type: 'void',
19
+ 'x-component': 'Grid',
20
+ 'x-initializer': 'page:addBlock',
21
+ 'x-index': 1,
22
+ properties: {
23
+ '921il71tsii': {
24
+ _isJSONSchemaObject: true,
25
+ version: '2.0',
26
+ type: 'void',
27
+ 'x-component': 'Grid.Row',
28
+ 'x-index': 1,
29
+ properties: {
30
+ '6s5exwpw6k1': {
31
+ _isJSONSchemaObject: true,
32
+ version: '2.0',
33
+ type: 'void',
34
+ 'x-component': 'Grid.Col',
35
+ 'x-index': 1,
36
+ properties: {
37
+ m1vdqkujhfd: {
38
+ _isJSONSchemaObject: true,
39
+ version: '2.0',
40
+ type: 'void',
41
+ 'x-decorator': 'TableBlockProvider',
42
+ 'x-acl-action': 'users:list',
43
+ 'x-decorator-props': {
44
+ collection: 'users',
45
+ resource: 'users',
46
+ action: 'list',
47
+ params: {
48
+ pageSize: 20,
49
+ sort: [
50
+ 'id'
51
+ ],
52
+ filter: {}
53
+ },
54
+ rowKey: 'id',
55
+ showIndex: true,
56
+ dragSort: false,
57
+ disableTemplate: false
58
+ },
59
+ 'x-designer': 'TableBlockDesigner',
60
+ 'x-component': 'CardItem',
61
+ 'x-filter-targets': [],
62
+ 'x-index': 1,
63
+ properties: {
64
+ actions: {
65
+ _isJSONSchemaObject: true,
66
+ version: '2.0',
67
+ type: 'void',
68
+ 'x-initializer': 'table:configureActions',
69
+ 'x-component': 'ActionBar',
70
+ 'x-component-props': {
71
+ style: {
72
+ marginBottom: 'var(--tb-spacing)'
73
+ }
74
+ },
75
+ 'x-index': 1,
76
+ 'x-uid': 'ekut6r82rxy',
77
+ 'x-async': false
78
+ },
79
+ buql1oo309b: {
80
+ _isJSONSchemaObject: true,
81
+ version: '2.0',
82
+ type: 'array',
83
+ 'x-initializer': 'table:configureColumns',
84
+ 'x-component': 'TableV2',
85
+ 'x-component-props': {
86
+ rowKey: 'id',
87
+ rowSelection: {
88
+ type: 'checkbox'
89
+ },
90
+ useProps: '{{ useTableBlockProps }}'
91
+ },
92
+ 'x-index': 2,
93
+ properties: {
94
+ actions: {
95
+ _isJSONSchemaObject: true,
96
+ version: '2.0',
97
+ type: 'void',
98
+ title: '{{ t("Actions") }}',
99
+ 'x-action-column': 'actions',
100
+ 'x-decorator': 'TableV2.Column.ActionBar',
101
+ 'x-component': 'TableV2.Column',
102
+ 'x-designer': 'TableV2.ActionColumnDesigner',
103
+ 'x-initializer': 'table:configureItemActions',
104
+ 'x-index': 1,
105
+ properties: {
106
+ actions: {
107
+ _isJSONSchemaObject: true,
108
+ version: '2.0',
109
+ type: 'void',
110
+ 'x-decorator': 'DndContext',
111
+ 'x-component': 'Space',
112
+ 'x-component-props': {
113
+ split: '|'
114
+ },
115
+ 'x-index': 1,
116
+ properties: {
117
+ xoem0ayb9dg: {
118
+ 'x-uid': 'x5h22i05z9y',
119
+ _isJSONSchemaObject: true,
120
+ version: '2.0',
121
+ type: 'void',
122
+ title: 'Popup drawer',
123
+ 'x-action': 'customize:popup',
124
+ 'x-designer': 'Action.Designer',
125
+ 'x-component': 'Action.Link',
126
+ 'x-component-props': {
127
+ openMode: 'drawer',
128
+ danger: false
129
+ },
130
+ 'x-designer-props': {
131
+ linkageAction: true
132
+ },
133
+ 'x-index': 1,
134
+ properties: {
135
+ drawer: {
136
+ _isJSONSchemaObject: true,
137
+ version: '2.0',
138
+ type: 'void',
139
+ title: '{{ t("Popup") }}',
140
+ 'x-component': 'Action.Container',
141
+ 'x-component-props': {
142
+ className: 'tb-action-popup'
143
+ },
144
+ 'x-index': 1,
145
+ properties: {
146
+ tabs: {
147
+ _isJSONSchemaObject: true,
148
+ version: '2.0',
149
+ type: 'void',
150
+ 'x-component': 'Tabs',
151
+ 'x-component-props': {},
152
+ 'x-initializer': 'TabPaneInitializers',
153
+ 'x-index': 1,
154
+ properties: {
155
+ tab1: {
156
+ _isJSONSchemaObject: true,
157
+ version: '2.0',
158
+ type: 'void',
159
+ title: '{{t("Details")}}',
160
+ 'x-component': 'Tabs.TabPane',
161
+ 'x-designer': 'Tabs.Designer',
162
+ 'x-component-props': {},
163
+ 'x-index': 1,
164
+ properties: {
165
+ grid: {
166
+ _isJSONSchemaObject: true,
167
+ version: '2.0',
168
+ type: 'void',
169
+ 'x-component': 'Grid',
170
+ 'x-initializer': 'popup:common:addBlock',
171
+ 'x-index': 1,
172
+ properties: {
173
+ uq6k35ibdum: {
174
+ _isJSONSchemaObject: true,
175
+ version: '2.0',
176
+ type: 'void',
177
+ 'x-component': 'Grid.Row',
178
+ 'x-index': 1,
179
+ properties: {
180
+ gju15zbxua7: {
181
+ _isJSONSchemaObject: true,
182
+ version: '2.0',
183
+ type: 'void',
184
+ 'x-component': 'Grid.Col',
185
+ 'x-index': 1,
186
+ properties: {
187
+ '3gvctyne9ch': {
188
+ _isJSONSchemaObject: true,
189
+ version: '2.0',
190
+ type: 'void',
191
+ 'x-acl-action-props': {
192
+ skipScopeCheck: false
193
+ },
194
+ 'x-acl-action': 'users:update',
195
+ 'x-decorator': 'FormBlockProvider',
196
+ 'x-decorator-props': {
197
+ useSourceId: '{{ useSourceIdFromParentRecord }}',
198
+ useParams: '{{ useParamsFromRecord }}',
199
+ action: 'get',
200
+ resource: 'users',
201
+ collection: 'users'
202
+ },
203
+ 'x-designer': 'FormV2.Designer',
204
+ 'x-component': 'CardItem',
205
+ 'x-component-props': {},
206
+ 'x-index': 1,
207
+ properties: {
208
+ rf52acn3z2h: {
209
+ _isJSONSchemaObject: true,
210
+ version: '2.0',
211
+ type: 'void',
212
+ 'x-component': 'FormV2',
213
+ 'x-component-props': {
214
+ useProps: '{{ useFormBlockProps }}'
215
+ },
216
+ 'x-index': 1,
217
+ properties: {
218
+ grid: {
219
+ _isJSONSchemaObject: true,
220
+ version: '2.0',
221
+ type: 'void',
222
+ 'x-component': 'Grid',
223
+ 'x-initializer': 'form:configureFields',
224
+ 'x-index': 1,
225
+ 'x-uid': '1d3zru9pi2o',
226
+ 'x-async': false
227
+ },
228
+ actions: {
229
+ _isJSONSchemaObject: true,
230
+ version: '2.0',
231
+ type: 'void',
232
+ 'x-initializer': 'editForm:configureActions',
233
+ 'x-component': 'ActionBar',
234
+ 'x-component-props': {
235
+ layout: 'one-column',
236
+ style: {
237
+ marginTop: 24
238
+ }
239
+ },
240
+ 'x-index': 2,
241
+ properties: {
242
+ r5fvw6udpo5: {
243
+ 'x-uid': 'fhhipgvw969',
244
+ _isJSONSchemaObject: true,
245
+ version: '2.0',
246
+ type: 'void',
247
+ title: 'Popup drawer',
248
+ 'x-action': 'customize:popup',
249
+ 'x-designer': 'Action.Designer',
250
+ 'x-component': 'Action',
251
+ 'x-component-props': {
252
+ openMode: 'drawer',
253
+ danger: false,
254
+ type: 'default'
255
+ },
256
+ 'x-index': 1,
257
+ properties: {
258
+ drawer: {
259
+ _isJSONSchemaObject: true,
260
+ version: '2.0',
261
+ type: 'void',
262
+ title: '{{ t("Popup") }}',
263
+ 'x-component': 'Action.Container',
264
+ 'x-component-props': {
265
+ className: 'tb-action-popup'
266
+ },
267
+ 'x-index': 1,
268
+ properties: {
269
+ tabs: {
270
+ _isJSONSchemaObject: true,
271
+ version: '2.0',
272
+ type: 'void',
273
+ 'x-component': 'Tabs',
274
+ 'x-component-props': {},
275
+ 'x-initializer': 'TabPaneInitializers',
276
+ 'x-index': 1,
277
+ properties: {
278
+ tab1: {
279
+ _isJSONSchemaObject: true,
280
+ version: '2.0',
281
+ type: 'void',
282
+ title: '{{t("Details")}}',
283
+ 'x-component': 'Tabs.TabPane',
284
+ 'x-designer': 'Tabs.Designer',
285
+ 'x-component-props': {},
286
+ 'x-index': 1,
287
+ properties: {
288
+ grid: {
289
+ _isJSONSchemaObject: true,
290
+ version: '2.0',
291
+ type: 'void',
292
+ 'x-component': 'Grid',
293
+ 'x-initializer': 'popup:common:addBlock',
294
+ 'x-index': 1,
295
+ properties: {
296
+ i7919iug0zf: {
297
+ _isJSONSchemaObject: true,
298
+ version: '2.0',
299
+ type: 'void',
300
+ 'x-component': 'Grid.Row',
301
+ 'x-index': 1,
302
+ properties: {
303
+ fnfowdb69of: {
304
+ _isJSONSchemaObject: true,
305
+ version: '2.0',
306
+ type: 'void',
307
+ 'x-component': 'Grid.Col',
308
+ 'x-index': 1,
309
+ properties: {
310
+ '7a1tbf51g8v': {
311
+ _isJSONSchemaObject: true,
312
+ version: '2.0',
313
+ type: 'void',
314
+ 'x-acl-action-props': {
315
+ skipScopeCheck: false
316
+ },
317
+ 'x-acl-action': 'users:update',
318
+ 'x-decorator': 'FormBlockProvider',
319
+ 'x-decorator-props': {
320
+ useSourceId: '{{ useSourceIdFromParentRecord }}',
321
+ useParams: '{{ useParamsFromRecord }}',
322
+ action: 'get',
323
+ resource: 'users',
324
+ collection: 'users'
325
+ },
326
+ 'x-designer': 'FormV2.Designer',
327
+ 'x-component': 'CardItem',
328
+ 'x-component-props': {},
329
+ 'x-index': 1,
330
+ properties: {
331
+ nn34pmsspnz: {
332
+ _isJSONSchemaObject: true,
333
+ version: '2.0',
334
+ type: 'void',
335
+ 'x-component': 'FormV2',
336
+ 'x-component-props': {
337
+ useProps: '{{ useFormBlockProps }}'
338
+ },
339
+ 'x-index': 1,
340
+ properties: {
341
+ grid: {
342
+ _isJSONSchemaObject: true,
343
+ version: '2.0',
344
+ type: 'void',
345
+ 'x-component': 'Grid',
346
+ 'x-initializer': 'form:configureFields',
347
+ 'x-index': 1,
348
+ 'x-uid': 'k9p2rqt49v1',
349
+ 'x-async': false
350
+ },
351
+ actions: {
352
+ _isJSONSchemaObject: true,
353
+ version: '2.0',
354
+ type: 'void',
355
+ 'x-initializer': 'editForm:configureActions',
356
+ 'x-component': 'ActionBar',
357
+ 'x-component-props': {
358
+ layout: 'one-column',
359
+ style: {
360
+ marginTop: 24
361
+ }
362
+ },
363
+ 'x-index': 2,
364
+ properties: {
365
+ m1d82kfi4wj: {
366
+ _isJSONSchemaObject: true,
367
+ version: '2.0',
368
+ title: '{{ t("Submit") }}',
369
+ 'x-action': 'submit',
370
+ 'x-component': 'Action',
371
+ 'x-designer': 'Action.Designer',
372
+ 'x-component-props': {
373
+ type: 'primary',
374
+ htmlType: 'submit',
375
+ useProps: '{{ useUpdateActionProps }}'
376
+ },
377
+ 'x-action-settings': {
378
+ triggerWorkflows: []
379
+ },
380
+ type: 'void',
381
+ 'x-index': 1,
382
+ 'x-uid': '9mm8kvh4o2m',
383
+ 'x-async': false
384
+ }
385
+ },
386
+ 'x-uid': 'on41cr8zg41',
387
+ 'x-async': false
388
+ }
389
+ },
390
+ 'x-uid': 'y6uigc4n4vm',
391
+ 'x-async': false
392
+ }
393
+ },
394
+ 'x-uid': 'fnj75090iwa',
395
+ 'x-async': false
396
+ }
397
+ },
398
+ 'x-uid': 'y7t6l50j29g',
399
+ 'x-async': false
400
+ }
401
+ },
402
+ 'x-uid': 'gcaxegx915j',
403
+ 'x-async': false
404
+ }
405
+ },
406
+ 'x-uid': 'oijx43exgjw',
407
+ 'x-async': false
408
+ }
409
+ },
410
+ 'x-uid': 'uss69qgzgfr',
411
+ 'x-async': false
412
+ }
413
+ },
414
+ 'x-uid': 'wo27pk5oaxl',
415
+ 'x-async': false
416
+ }
417
+ },
418
+ 'x-uid': 'ssukg1yq6xs',
419
+ 'x-async': false
420
+ }
421
+ },
422
+ 'x-async': false
423
+ }
424
+ },
425
+ 'x-uid': 'g6i2gve8d67',
426
+ 'x-async': false
427
+ }
428
+ },
429
+ 'x-uid': 'bmm6oo074xl',
430
+ 'x-async': false
431
+ }
432
+ },
433
+ 'x-uid': '46e0m820bo2',
434
+ 'x-async': false
435
+ }
436
+ },
437
+ 'x-uid': '1gvrltd8yqg',
438
+ 'x-async': false
439
+ }
440
+ },
441
+ 'x-uid': 'w97q3lbbsh4',
442
+ 'x-async': false
443
+ }
444
+ },
445
+ 'x-uid': '6l2ef5vge85',
446
+ 'x-async': false
447
+ }
448
+ },
449
+ 'x-uid': 'n4cpdx9ysfb',
450
+ 'x-async': false
451
+ }
452
+ },
453
+ 'x-uid': 'o06coc1mgwa',
454
+ 'x-async': false
455
+ }
456
+ },
457
+ 'x-uid': '7zj8405odj1',
458
+ 'x-async': false
459
+ }
460
+ },
461
+ 'x-async': false
462
+ }
463
+ },
464
+ 'x-uid': 'd72ecevv19r',
465
+ 'x-async': false
466
+ }
467
+ },
468
+ 'x-uid': 'dymj7cnulu9',
469
+ 'x-async': false
470
+ },
471
+ ehaaqzdovop: {
472
+ _isJSONSchemaObject: true,
473
+ version: '2.0',
474
+ type: 'void',
475
+ 'x-decorator': 'TableV2.Column.Decorator',
476
+ 'x-designer': 'TableV2.Column.Designer',
477
+ 'x-component': 'TableV2.Column',
478
+ 'x-index': 2,
479
+ properties: {
480
+ id: {
481
+ _isJSONSchemaObject: true,
482
+ version: '2.0',
483
+ 'x-collection-field': 'users.id',
484
+ 'x-component': 'CollectionField',
485
+ 'x-component-props': {},
486
+ 'x-read-pretty': true,
487
+ 'x-decorator': null,
488
+ 'x-decorator-props': {
489
+ labelStyle: {
490
+ display: 'none'
491
+ }
492
+ },
493
+ 'x-index': 1,
494
+ 'x-uid': '4xk1wkpwu0x',
495
+ 'x-async': false
496
+ }
497
+ },
498
+ 'x-uid': '9kcdkg7zqss',
499
+ 'x-async': false
500
+ }
501
+ },
502
+ 'x-uid': '8zzc49ye7c1',
503
+ 'x-async': false
504
+ }
505
+ },
506
+ 'x-uid': 'j5a3t93mc8y',
507
+ 'x-async': false
508
+ }
509
+ },
510
+ 'x-uid': 'ngqxn545h2z',
511
+ 'x-async': false
512
+ }
513
+ },
514
+ 'x-uid': 'qbwre8gvolh',
515
+ 'x-async': false
516
+ }
517
+ },
518
+ 'x-uid': 'b9f5kb02zxd',
519
+ 'x-async': false
520
+ }
521
+ },
522
+ 'x-uid': '6u34l9yf166',
523
+ 'x-async': true
524
+ }
525
+ };
526
+ const T2838 = {
527
+ collections: __WEBPACK_EXTERNAL_MODULE__tachybase_test_e2e__.generalWithMultiLevelM2oFields,
528
+ pageSchema: {
529
+ _isJSONSchemaObject: true,
530
+ version: '2.0',
531
+ type: 'void',
532
+ 'x-component': 'Page',
533
+ 'x-index': 1,
534
+ properties: {
535
+ gk0rcxdp7ci: {
536
+ _isJSONSchemaObject: true,
537
+ version: '2.0',
538
+ type: 'void',
539
+ 'x-component': 'Grid',
540
+ 'x-initializer': 'page:addBlock',
541
+ 'x-index': 1,
542
+ properties: {
543
+ ocvzef7y4nh: {
544
+ _isJSONSchemaObject: true,
545
+ version: '2.0',
546
+ type: 'void',
547
+ 'x-component': 'Grid.Row',
548
+ 'x-index': 1,
549
+ properties: {
550
+ wgt31pysku3: {
551
+ _isJSONSchemaObject: true,
552
+ version: '2.0',
553
+ type: 'void',
554
+ 'x-component': 'Grid.Col',
555
+ 'x-index': 1,
556
+ properties: {
557
+ e36qxkskmws: {
558
+ _isJSONSchemaObject: true,
559
+ version: '2.0',
560
+ type: 'void',
561
+ 'x-decorator': 'TableBlockProvider',
562
+ 'x-acl-action': 'general:list',
563
+ 'x-decorator-props': {
564
+ collection: 'general',
565
+ resource: 'general',
566
+ action: 'list',
567
+ params: {
568
+ pageSize: 20
569
+ },
570
+ rowKey: 'id',
571
+ showIndex: true,
572
+ dragSort: false,
573
+ disableTemplate: false
574
+ },
575
+ 'x-designer': 'TableBlockDesigner',
576
+ 'x-component': 'CardItem',
577
+ 'x-filter-targets': [],
578
+ 'x-index': 1,
579
+ properties: {
580
+ actions: {
581
+ _isJSONSchemaObject: true,
582
+ version: '2.0',
583
+ type: 'void',
584
+ 'x-initializer': 'table:configureActions',
585
+ 'x-component': 'ActionBar',
586
+ 'x-component-props': {
587
+ style: {
588
+ marginBottom: 'var(--tb-spacing)'
589
+ }
590
+ },
591
+ 'x-index': 1,
592
+ 'x-uid': '9g7iqgfistn',
593
+ 'x-async': false
594
+ },
595
+ ewrmbv48omq: {
596
+ _isJSONSchemaObject: true,
597
+ version: '2.0',
598
+ type: 'array',
599
+ 'x-initializer': 'table:configureColumns',
600
+ 'x-component': 'TableV2',
601
+ 'x-component-props': {
602
+ rowKey: 'id',
603
+ rowSelection: {
604
+ type: 'checkbox'
605
+ },
606
+ useProps: '{{ useTableBlockProps }}'
607
+ },
608
+ 'x-index': 2,
609
+ properties: {
610
+ actions: {
611
+ _isJSONSchemaObject: true,
612
+ version: '2.0',
613
+ type: 'void',
614
+ title: '{{ t("Actions") }}',
615
+ 'x-action-column': 'actions',
616
+ 'x-decorator': 'TableV2.Column.ActionBar',
617
+ 'x-component': 'TableV2.Column',
618
+ 'x-designer': 'TableV2.ActionColumnDesigner',
619
+ 'x-initializer': 'table:configureItemActions',
620
+ 'x-index': 1,
621
+ properties: {
622
+ actions: {
623
+ _isJSONSchemaObject: true,
624
+ version: '2.0',
625
+ type: 'void',
626
+ 'x-decorator': 'DndContext',
627
+ 'x-component': 'Space',
628
+ 'x-component-props': {
629
+ split: '|'
630
+ },
631
+ 'x-index': 1,
632
+ properties: {
633
+ mxf2vugzynw: {
634
+ _isJSONSchemaObject: true,
635
+ version: '2.0',
636
+ type: 'void',
637
+ title: 'Edit record',
638
+ 'x-action': 'update',
639
+ 'x-designer': 'Action.Designer',
640
+ 'x-component': 'Action.Link',
641
+ 'x-component-props': {
642
+ openMode: 'modal',
643
+ danger: false
644
+ },
645
+ 'x-decorator': 'ACLActionProvider',
646
+ 'x-designer-props': {
647
+ linkageAction: true
648
+ },
649
+ 'x-index': 1,
650
+ properties: {
651
+ drawer: {
652
+ _isJSONSchemaObject: true,
653
+ version: '2.0',
654
+ type: 'void',
655
+ title: '{{ t("Edit record") }}',
656
+ 'x-component': 'Action.Container',
657
+ 'x-component-props': {
658
+ className: 'tb-action-popup'
659
+ },
660
+ 'x-index': 1,
661
+ properties: {
662
+ tabs: {
663
+ _isJSONSchemaObject: true,
664
+ version: '2.0',
665
+ type: 'void',
666
+ 'x-component': 'Tabs',
667
+ 'x-component-props': {},
668
+ 'x-initializer': 'TabPaneInitializers',
669
+ 'x-index': 1,
670
+ properties: {
671
+ tab1: {
672
+ _isJSONSchemaObject: true,
673
+ version: '2.0',
674
+ type: 'void',
675
+ title: '{{t("Edit")}}',
676
+ 'x-component': 'Tabs.TabPane',
677
+ 'x-designer': 'Tabs.Designer',
678
+ 'x-component-props': {},
679
+ 'x-index': 1,
680
+ properties: {
681
+ grid: {
682
+ _isJSONSchemaObject: true,
683
+ version: '2.0',
684
+ type: 'void',
685
+ 'x-component': 'Grid',
686
+ 'x-initializer': 'popup:common:addBlock',
687
+ 'x-index': 1,
688
+ properties: {
689
+ w9u8i9nzh10: {
690
+ _isJSONSchemaObject: true,
691
+ version: '2.0',
692
+ type: 'void',
693
+ 'x-component': 'Grid.Row',
694
+ 'x-index': 1,
695
+ properties: {
696
+ iq0d99ing5f: {
697
+ _isJSONSchemaObject: true,
698
+ version: '2.0',
699
+ type: 'void',
700
+ 'x-component': 'Grid.Col',
701
+ 'x-index': 1,
702
+ properties: {
703
+ '8ng5a7gfnxu': {
704
+ _isJSONSchemaObject: true,
705
+ version: '2.0',
706
+ type: 'void',
707
+ 'x-acl-action': 'general.m2oField0:get',
708
+ 'x-decorator': 'FormBlockProvider',
709
+ 'x-decorator-props': {
710
+ resource: 'general.m2oField0',
711
+ collection: 'm2oField1',
712
+ association: 'general.m2oField0',
713
+ readPretty: true,
714
+ action: 'get',
715
+ useParams: '{{ useParamsFromRecord }}',
716
+ useSourceId: '{{ useSourceIdFromParentRecord }}'
717
+ },
718
+ 'x-designer': 'FormV2.ReadPrettyDesigner',
719
+ 'x-component': 'CardItem',
720
+ 'x-index': 1,
721
+ properties: {
722
+ xed9u6i5rke: {
723
+ _isJSONSchemaObject: true,
724
+ version: '2.0',
725
+ type: 'void',
726
+ 'x-component': 'FormV2',
727
+ 'x-read-pretty': true,
728
+ 'x-component-props': {
729
+ useProps: '{{ useFormBlockProps }}'
730
+ },
731
+ 'x-index': 1,
732
+ properties: {
733
+ actions: {
734
+ _isJSONSchemaObject: true,
735
+ version: '2.0',
736
+ type: 'void',
737
+ 'x-initializer': 'details:configureActions',
738
+ 'x-component': 'ActionBar',
739
+ 'x-component-props': {
740
+ style: {
741
+ marginBottom: 24
742
+ }
743
+ },
744
+ 'x-index': 1,
745
+ properties: {
746
+ j8yl7ufxycc: {
747
+ 'x-uid': 't5zvkjpt399',
748
+ _isJSONSchemaObject: true,
749
+ version: '2.0',
750
+ type: 'void',
751
+ title: 'Edit button 1',
752
+ 'x-action': 'update',
753
+ 'x-designer': 'Action.Designer',
754
+ 'x-component': 'Action',
755
+ 'x-component-props': {
756
+ openMode: 'modal',
757
+ icon: 'EditOutlined',
758
+ type: 'primary',
759
+ danger: false
760
+ },
761
+ 'x-decorator': 'ACLActionProvider',
762
+ 'x-index': 1,
763
+ properties: {
764
+ drawer: {
765
+ _isJSONSchemaObject: true,
766
+ version: '2.0',
767
+ type: 'void',
768
+ title: '{{ t("Edit record") }}',
769
+ 'x-component': 'Action.Container',
770
+ 'x-component-props': {
771
+ className: 'tb-action-popup'
772
+ },
773
+ 'x-index': 1,
774
+ properties: {
775
+ tabs: {
776
+ _isJSONSchemaObject: true,
777
+ version: '2.0',
778
+ type: 'void',
779
+ 'x-component': 'Tabs',
780
+ 'x-component-props': {},
781
+ 'x-initializer': 'TabPaneInitializers',
782
+ 'x-index': 1,
783
+ properties: {
784
+ tab1: {
785
+ _isJSONSchemaObject: true,
786
+ version: '2.0',
787
+ type: 'void',
788
+ title: '{{t("Edit")}}',
789
+ 'x-component': 'Tabs.TabPane',
790
+ 'x-designer': 'Tabs.Designer',
791
+ 'x-component-props': {},
792
+ 'x-index': 1,
793
+ properties: {
794
+ grid: {
795
+ _isJSONSchemaObject: true,
796
+ version: '2.0',
797
+ type: 'void',
798
+ 'x-component': 'Grid',
799
+ 'x-initializer': 'popup:common:addBlock',
800
+ 'x-index': 1,
801
+ properties: {
802
+ nclrn6m8w40: {
803
+ _isJSONSchemaObject: true,
804
+ version: '2.0',
805
+ type: 'void',
806
+ 'x-component': 'Grid.Row',
807
+ 'x-index': 1,
808
+ properties: {
809
+ '986i76o9mkl': {
810
+ _isJSONSchemaObject: true,
811
+ version: '2.0',
812
+ type: 'void',
813
+ 'x-component': 'Grid.Col',
814
+ 'x-index': 1,
815
+ properties: {
816
+ ofcetydqvzr: {
817
+ _isJSONSchemaObject: true,
818
+ version: '2.0',
819
+ type: 'void',
820
+ 'x-acl-action': 'general.m2oField0:get',
821
+ 'x-decorator': 'FormBlockProvider',
822
+ 'x-decorator-props': {
823
+ resource: 'general.m2oField0',
824
+ collection: 'm2oField1',
825
+ association: 'general.m2oField0',
826
+ readPretty: true,
827
+ action: 'get',
828
+ useParams: '{{ useParamsFromRecord }}',
829
+ useSourceId: '{{ useSourceIdFromParentRecord }}'
830
+ },
831
+ 'x-designer': 'FormV2.ReadPrettyDesigner',
832
+ 'x-component': 'CardItem',
833
+ 'x-index': 1,
834
+ properties: {
835
+ bt4u5tt1zeu: {
836
+ _isJSONSchemaObject: true,
837
+ version: '2.0',
838
+ type: 'void',
839
+ 'x-component': 'FormV2',
840
+ 'x-read-pretty': true,
841
+ 'x-component-props': {
842
+ useProps: '{{ useFormBlockProps }}'
843
+ },
844
+ 'x-index': 1,
845
+ properties: {
846
+ actions: {
847
+ _isJSONSchemaObject: true,
848
+ version: '2.0',
849
+ type: 'void',
850
+ 'x-initializer': 'details:configureActions',
851
+ 'x-component': 'ActionBar',
852
+ 'x-component-props': {
853
+ style: {
854
+ marginBottom: 24
855
+ }
856
+ },
857
+ 'x-index': 1,
858
+ properties: {
859
+ tt6sks0prnw: {
860
+ 'x-uid': 'pqbio7v3v18',
861
+ _isJSONSchemaObject: true,
862
+ version: '2.0',
863
+ type: 'void',
864
+ title: 'Edit button 2',
865
+ 'x-action': 'update',
866
+ 'x-designer': 'Action.Designer',
867
+ 'x-component': 'Action',
868
+ 'x-component-props': {
869
+ openMode: 'drawer',
870
+ icon: 'EditOutlined',
871
+ type: 'primary',
872
+ danger: false
873
+ },
874
+ 'x-decorator': 'ACLActionProvider',
875
+ 'x-index': 1,
876
+ properties: {
877
+ drawer: {
878
+ _isJSONSchemaObject: true,
879
+ version: '2.0',
880
+ type: 'void',
881
+ title: '{{ t("Edit record") }}',
882
+ 'x-component': 'Action.Container',
883
+ 'x-component-props': {
884
+ className: 'tb-action-popup'
885
+ },
886
+ 'x-index': 1,
887
+ properties: {
888
+ tabs: {
889
+ _isJSONSchemaObject: true,
890
+ version: '2.0',
891
+ type: 'void',
892
+ 'x-component': 'Tabs',
893
+ 'x-component-props': {},
894
+ 'x-initializer': 'TabPaneInitializers',
895
+ 'x-index': 1,
896
+ properties: {
897
+ tab1: {
898
+ _isJSONSchemaObject: true,
899
+ version: '2.0',
900
+ type: 'void',
901
+ title: '{{t("Edit")}}',
902
+ 'x-component': 'Tabs.TabPane',
903
+ 'x-designer': 'Tabs.Designer',
904
+ 'x-component-props': {},
905
+ 'x-index': 1,
906
+ properties: {
907
+ grid: {
908
+ _isJSONSchemaObject: true,
909
+ version: '2.0',
910
+ type: 'void',
911
+ 'x-component': 'Grid',
912
+ 'x-initializer': 'popup:common:addBlock',
913
+ 'x-index': 1,
914
+ properties: {
915
+ '4xh2eecmles': {
916
+ _isJSONSchemaObject: true,
917
+ version: '2.0',
918
+ type: 'void',
919
+ 'x-component': 'Grid.Row',
920
+ 'x-index': 1,
921
+ properties: {
922
+ '0lk0jurc203': {
923
+ _isJSONSchemaObject: true,
924
+ version: '2.0',
925
+ type: 'void',
926
+ 'x-component': 'Grid.Col',
927
+ 'x-index': 1,
928
+ properties: {
929
+ qxyhsdqsjnk: {
930
+ _isJSONSchemaObject: true,
931
+ version: '2.0',
932
+ type: 'void',
933
+ 'x-acl-action-props': {
934
+ skipScopeCheck: false
935
+ },
936
+ 'x-acl-action': 'general.m2oField0:update',
937
+ 'x-decorator': 'FormBlockProvider',
938
+ 'x-decorator-props': {
939
+ useSourceId: '{{ useSourceIdFromParentRecord }}',
940
+ useParams: '{{ useParamsFromRecord }}',
941
+ action: 'get',
942
+ resource: 'general.m2oField0',
943
+ collection: 'm2oField1',
944
+ association: 'general.m2oField0'
945
+ },
946
+ 'x-designer': 'FormV2.Designer',
947
+ 'x-component': 'CardItem',
948
+ 'x-component-props': {},
949
+ 'x-index': 1,
950
+ properties: {
951
+ tzajxyqd9k3: {
952
+ _isJSONSchemaObject: true,
953
+ version: '2.0',
954
+ type: 'void',
955
+ 'x-component': 'FormV2',
956
+ 'x-component-props': {
957
+ useProps: '{{ useFormBlockProps }}'
958
+ },
959
+ 'x-index': 1,
960
+ properties: {
961
+ grid: {
962
+ _isJSONSchemaObject: true,
963
+ version: '2.0',
964
+ type: 'void',
965
+ 'x-component': 'Grid',
966
+ 'x-initializer': 'form:configureFields',
967
+ 'x-index': 1,
968
+ properties: {
969
+ '1nzk8lmeo35': {
970
+ _isJSONSchemaObject: true,
971
+ version: '2.0',
972
+ type: 'void',
973
+ 'x-component': 'Grid.Row',
974
+ 'x-index': 1,
975
+ properties: {
976
+ '0od1vb7dltp': {
977
+ _isJSONSchemaObject: true,
978
+ version: '2.0',
979
+ type: 'void',
980
+ 'x-component': 'Grid.Col',
981
+ 'x-index': 1,
982
+ properties: {
983
+ 'm2oField1.m2oField2': {
984
+ _isJSONSchemaObject: true,
985
+ version: '2.0',
986
+ type: 'string',
987
+ 'x-designer': 'FormItem.Designer',
988
+ 'x-component': 'CollectionField',
989
+ 'x-read-pretty': true,
990
+ 'x-component-props': {
991
+ 'pattern-disable': true,
992
+ fieldNames: {
993
+ label: 'id',
994
+ value: 'id'
995
+ }
996
+ },
997
+ 'x-decorator': 'FormItem',
998
+ 'x-collection-field': 'm2oField1.m2oField1.m2oField2',
999
+ 'x-index': 1,
1000
+ 'x-uid': 'n3hj825kfud',
1001
+ 'x-async': false
1002
+ }
1003
+ },
1004
+ 'x-uid': '0kh8ua794y5',
1005
+ 'x-async': false
1006
+ }
1007
+ },
1008
+ 'x-uid': 'op5kvbrfosf',
1009
+ 'x-async': false
1010
+ }
1011
+ },
1012
+ 'x-uid': '3qpo7t4qeu1',
1013
+ 'x-async': false
1014
+ },
1015
+ actions: {
1016
+ _isJSONSchemaObject: true,
1017
+ version: '2.0',
1018
+ type: 'void',
1019
+ 'x-initializer': 'editForm:configureActions',
1020
+ 'x-component': 'ActionBar',
1021
+ 'x-component-props': {
1022
+ layout: 'one-column',
1023
+ style: {
1024
+ marginTop: 24
1025
+ }
1026
+ },
1027
+ 'x-index': 2,
1028
+ properties: {
1029
+ el9dzf2keqq: {
1030
+ _isJSONSchemaObject: true,
1031
+ version: '2.0',
1032
+ title: '{{ t("Submit") }}',
1033
+ 'x-action': 'submit',
1034
+ 'x-component': 'Action',
1035
+ 'x-designer': 'Action.Designer',
1036
+ 'x-component-props': {
1037
+ type: 'primary',
1038
+ htmlType: 'submit',
1039
+ useProps: '{{ useUpdateActionProps }}'
1040
+ },
1041
+ 'x-action-settings': {
1042
+ triggerWorkflows: []
1043
+ },
1044
+ type: 'void',
1045
+ 'x-index': 1,
1046
+ 'x-uid': 'gptcyd5atoh',
1047
+ 'x-async': false
1048
+ }
1049
+ },
1050
+ 'x-uid': 'glo1qwk9c3h',
1051
+ 'x-async': false
1052
+ }
1053
+ },
1054
+ 'x-uid': '97l65a4xla1',
1055
+ 'x-async': false
1056
+ }
1057
+ },
1058
+ 'x-uid': 'vaa7w1uq7hz',
1059
+ 'x-async': false
1060
+ }
1061
+ },
1062
+ 'x-uid': 'o8ill8n44c1',
1063
+ 'x-async': false
1064
+ }
1065
+ },
1066
+ 'x-uid': '3eyyh9i881u',
1067
+ 'x-async': false
1068
+ }
1069
+ },
1070
+ 'x-uid': 'afrbgindhtc',
1071
+ 'x-async': false
1072
+ }
1073
+ },
1074
+ 'x-uid': 'q45xug6fmaa',
1075
+ 'x-async': false
1076
+ }
1077
+ },
1078
+ 'x-uid': 'nv8ngiz2t9g',
1079
+ 'x-async': false
1080
+ }
1081
+ },
1082
+ 'x-uid': 'yn1oabiw8em',
1083
+ 'x-async': false
1084
+ }
1085
+ },
1086
+ 'x-async': false
1087
+ }
1088
+ },
1089
+ 'x-uid': 'ag9hkuuvbf8',
1090
+ 'x-async': false
1091
+ },
1092
+ grid: {
1093
+ _isJSONSchemaObject: true,
1094
+ version: '2.0',
1095
+ type: 'void',
1096
+ 'x-component': 'Grid',
1097
+ 'x-initializer': 'details:configureFields',
1098
+ 'x-index': 2,
1099
+ 'x-uid': '1et421zrsz4',
1100
+ 'x-async': false
1101
+ }
1102
+ },
1103
+ 'x-uid': 'dd6b494mglm',
1104
+ 'x-async': false
1105
+ }
1106
+ },
1107
+ 'x-uid': 'ojkwzn3j25x',
1108
+ 'x-async': false
1109
+ }
1110
+ },
1111
+ 'x-uid': '5grm3qde69i',
1112
+ 'x-async': false
1113
+ }
1114
+ },
1115
+ 'x-uid': 'rnupfsm63cb',
1116
+ 'x-async': false
1117
+ }
1118
+ },
1119
+ 'x-uid': 'smqvz3oe3vp',
1120
+ 'x-async': false
1121
+ }
1122
+ },
1123
+ 'x-uid': 'kl0gn5nq2iu',
1124
+ 'x-async': false
1125
+ }
1126
+ },
1127
+ 'x-uid': 'nzvi02ku0k1',
1128
+ 'x-async': false
1129
+ }
1130
+ },
1131
+ 'x-uid': 'omhkk05odd6',
1132
+ 'x-async': false
1133
+ }
1134
+ },
1135
+ 'x-async': false
1136
+ }
1137
+ },
1138
+ 'x-uid': 'mcb1580si22',
1139
+ 'x-async': false
1140
+ },
1141
+ grid: {
1142
+ _isJSONSchemaObject: true,
1143
+ version: '2.0',
1144
+ type: 'void',
1145
+ 'x-component': 'Grid',
1146
+ 'x-initializer': 'details:configureFields',
1147
+ 'x-index': 2,
1148
+ 'x-uid': 'j4qxeoy1pqw',
1149
+ 'x-async': false
1150
+ }
1151
+ },
1152
+ 'x-uid': 'rgw0521c0xr',
1153
+ 'x-async': false
1154
+ }
1155
+ },
1156
+ 'x-uid': '5bjtdjcbleg',
1157
+ 'x-async': false
1158
+ }
1159
+ },
1160
+ 'x-uid': '83x4w7ehrui',
1161
+ 'x-async': false
1162
+ }
1163
+ },
1164
+ 'x-uid': '4ygad3n73lw',
1165
+ 'x-async': false
1166
+ }
1167
+ },
1168
+ 'x-uid': 'mqn8nmqjgbb',
1169
+ 'x-async': false
1170
+ }
1171
+ },
1172
+ 'x-uid': 'xv9bmd99krn',
1173
+ 'x-async': false
1174
+ }
1175
+ },
1176
+ 'x-uid': '08zjxet5wpu',
1177
+ 'x-async': false
1178
+ }
1179
+ },
1180
+ 'x-uid': 'aifb3prikr7',
1181
+ 'x-async': false
1182
+ }
1183
+ },
1184
+ 'x-uid': 'q8r8hehgfu2',
1185
+ 'x-async': false
1186
+ }
1187
+ },
1188
+ 'x-uid': 'gqb8kqcuxdz',
1189
+ 'x-async': false
1190
+ }
1191
+ },
1192
+ 'x-uid': 'vgh59kjigrk',
1193
+ 'x-async': false
1194
+ }
1195
+ },
1196
+ 'x-uid': 'aa4ttpf4a6q',
1197
+ 'x-async': false
1198
+ }
1199
+ },
1200
+ 'x-uid': '33rp8vvjrs4',
1201
+ 'x-async': false
1202
+ }
1203
+ },
1204
+ 'x-uid': 'c0w4ickkdgn',
1205
+ 'x-async': false
1206
+ }
1207
+ },
1208
+ 'x-uid': 'yf8csupk88d',
1209
+ 'x-async': false
1210
+ }
1211
+ },
1212
+ 'x-uid': 'vscfbf4v4tr',
1213
+ 'x-async': false
1214
+ }
1215
+ },
1216
+ 'x-uid': 'nnrjne1lxzr',
1217
+ 'x-async': true
1218
+ }
1219
+ };
1220
+ const tableWithRoles = {
1221
+ pageSchema: {
1222
+ _isJSONSchemaObject: true,
1223
+ version: '2.0',
1224
+ type: 'void',
1225
+ 'x-component': 'Page',
1226
+ properties: {
1227
+ kuzmtxw0lbq: {
1228
+ _isJSONSchemaObject: true,
1229
+ version: '2.0',
1230
+ type: 'void',
1231
+ 'x-component': 'Grid',
1232
+ 'x-initializer': 'page:addBlock',
1233
+ properties: {
1234
+ '9snoybve3hf': {
1235
+ _isJSONSchemaObject: true,
1236
+ version: '2.0',
1237
+ type: 'void',
1238
+ 'x-component': 'Grid.Row',
1239
+ properties: {
1240
+ uzodd1sblh8: {
1241
+ _isJSONSchemaObject: true,
1242
+ version: '2.0',
1243
+ type: 'void',
1244
+ 'x-component': 'Grid.Col',
1245
+ properties: {
1246
+ t77ozlyo0r4: {
1247
+ _isJSONSchemaObject: true,
1248
+ version: '2.0',
1249
+ type: 'void',
1250
+ 'x-decorator': 'TableBlockProvider',
1251
+ 'x-acl-action': 'roles:list',
1252
+ 'x-use-decorator-props': 'useTableBlockDecoratorProps',
1253
+ 'x-decorator-props': {
1254
+ collection: 'roles',
1255
+ dataSource: 'main',
1256
+ action: 'list',
1257
+ params: {
1258
+ pageSize: 20
1259
+ },
1260
+ rowKey: 'name',
1261
+ showIndex: true,
1262
+ dragSort: false
1263
+ },
1264
+ 'x-toolbar': 'BlockSchemaToolbar',
1265
+ 'x-settings': 'blockSettings:table',
1266
+ 'x-component': 'CardItem',
1267
+ 'x-filter-targets': [],
1268
+ properties: {
1269
+ actions: {
1270
+ _isJSONSchemaObject: true,
1271
+ version: '2.0',
1272
+ type: 'void',
1273
+ 'x-initializer': 'table:configureActions',
1274
+ 'x-component': 'ActionBar',
1275
+ 'x-component-props': {
1276
+ style: {
1277
+ marginBottom: 'var(--tb-spacing)'
1278
+ }
1279
+ },
1280
+ 'x-uid': 'w07zcu825vu',
1281
+ 'x-async': false,
1282
+ 'x-index': 1
1283
+ },
1284
+ i8s4er3z53z: {
1285
+ _isJSONSchemaObject: true,
1286
+ version: '2.0',
1287
+ type: 'array',
1288
+ 'x-initializer': 'table:configureColumns',
1289
+ 'x-component': 'TableV2',
1290
+ 'x-use-component-props': 'useTableBlockProps',
1291
+ 'x-component-props': {
1292
+ rowKey: 'id',
1293
+ rowSelection: {
1294
+ type: 'checkbox'
1295
+ }
1296
+ },
1297
+ properties: {
1298
+ actions: {
1299
+ _isJSONSchemaObject: true,
1300
+ version: '2.0',
1301
+ type: 'void',
1302
+ title: '{{ t("Actions") }}',
1303
+ 'x-action-column': 'actions',
1304
+ 'x-decorator': 'TableV2.Column.ActionBar',
1305
+ 'x-component': 'TableV2.Column',
1306
+ 'x-designer': 'TableV2.ActionColumnDesigner',
1307
+ 'x-initializer': 'table:configureItemActions',
1308
+ properties: {
1309
+ cgxhx0pycze: {
1310
+ _isJSONSchemaObject: true,
1311
+ version: '2.0',
1312
+ type: 'void',
1313
+ 'x-decorator': 'DndContext',
1314
+ 'x-component': 'Space',
1315
+ 'x-component-props': {
1316
+ split: '|'
1317
+ },
1318
+ properties: {
1319
+ l6zuv8kq3lz: {
1320
+ _isJSONSchemaObject: true,
1321
+ version: '2.0',
1322
+ type: 'void',
1323
+ title: '{{ t("View") }}',
1324
+ 'x-action': 'view',
1325
+ 'x-toolbar': 'ActionSchemaToolbar',
1326
+ 'x-settings': 'actionSettings:view',
1327
+ 'x-component': 'Action.Link',
1328
+ 'x-component-props': {
1329
+ openMode: 'drawer'
1330
+ },
1331
+ 'x-decorator': 'ACLActionProvider',
1332
+ 'x-designer-props': {
1333
+ linkageAction: true
1334
+ },
1335
+ properties: {
1336
+ drawer: {
1337
+ _isJSONSchemaObject: true,
1338
+ version: '2.0',
1339
+ type: 'void',
1340
+ title: '{{ t("View record") }}',
1341
+ 'x-component': 'Action.Container',
1342
+ 'x-component-props': {
1343
+ className: 'tb-action-popup'
1344
+ },
1345
+ properties: {
1346
+ tabs: {
1347
+ _isJSONSchemaObject: true,
1348
+ version: '2.0',
1349
+ type: 'void',
1350
+ 'x-component': 'Tabs',
1351
+ 'x-component-props': {},
1352
+ 'x-initializer': 'TabPaneInitializers',
1353
+ properties: {
1354
+ tab1: {
1355
+ _isJSONSchemaObject: true,
1356
+ version: '2.0',
1357
+ type: 'void',
1358
+ title: '{{t("Details")}}',
1359
+ 'x-component': 'Tabs.TabPane',
1360
+ 'x-designer': 'Tabs.Designer',
1361
+ 'x-component-props': {},
1362
+ properties: {
1363
+ grid: {
1364
+ _isJSONSchemaObject: true,
1365
+ version: '2.0',
1366
+ type: 'void',
1367
+ 'x-component': 'Grid',
1368
+ 'x-initializer': 'popup:common:addBlock',
1369
+ 'x-uid': '2ty04bmiunh',
1370
+ 'x-async': false,
1371
+ 'x-index': 1
1372
+ }
1373
+ },
1374
+ 'x-uid': 'ymqk4t82osd',
1375
+ 'x-async': false,
1376
+ 'x-index': 1
1377
+ }
1378
+ },
1379
+ 'x-uid': 'tpv088lk09n',
1380
+ 'x-async': false,
1381
+ 'x-index': 1
1382
+ }
1383
+ },
1384
+ 'x-uid': 'n1mmv9b43s7',
1385
+ 'x-async': false,
1386
+ 'x-index': 1
1387
+ }
1388
+ },
1389
+ 'x-uid': 'qh62598r5nz',
1390
+ 'x-async': false,
1391
+ 'x-index': 1
1392
+ }
1393
+ },
1394
+ 'x-uid': 'ovtpdelg5lo',
1395
+ 'x-async': false,
1396
+ 'x-index': 1
1397
+ }
1398
+ },
1399
+ 'x-uid': '0ck7uj73zdh',
1400
+ 'x-async': false,
1401
+ 'x-index': 1
1402
+ }
1403
+ },
1404
+ 'x-uid': '52a31apruw6',
1405
+ 'x-async': false,
1406
+ 'x-index': 2
1407
+ }
1408
+ },
1409
+ 'x-uid': '8n1731cywxw',
1410
+ 'x-async': false,
1411
+ 'x-index': 1
1412
+ }
1413
+ },
1414
+ 'x-uid': 'ua6aed1x4ba',
1415
+ 'x-async': false,
1416
+ 'x-index': 1
1417
+ }
1418
+ },
1419
+ 'x-uid': 'kplmcq59pey',
1420
+ 'x-async': false,
1421
+ 'x-index': 1
1422
+ }
1423
+ },
1424
+ 'x-uid': 'v0qbl3nyzyo',
1425
+ 'x-async': false,
1426
+ 'x-index': 1
1427
+ }
1428
+ },
1429
+ 'x-uid': 'nn6bi7v7ae0',
1430
+ 'x-async': true,
1431
+ 'x-index': 1
1432
+ }
1433
+ };
1434
+ const tableWithUsers = {
1435
+ pageSchema: {
1436
+ _isJSONSchemaObject: true,
1437
+ version: '2.0',
1438
+ type: 'void',
1439
+ 'x-component': 'Page',
1440
+ properties: {
1441
+ kuzmtxw0lbq: {
1442
+ _isJSONSchemaObject: true,
1443
+ version: '2.0',
1444
+ type: 'void',
1445
+ 'x-component': 'Grid',
1446
+ 'x-initializer': 'page:addBlock',
1447
+ properties: {
1448
+ au5iakeqo5e: {
1449
+ _isJSONSchemaObject: true,
1450
+ version: '2.0',
1451
+ type: 'void',
1452
+ 'x-component': 'Grid.Row',
1453
+ properties: {
1454
+ '2p9r34ylza3': {
1455
+ _isJSONSchemaObject: true,
1456
+ version: '2.0',
1457
+ type: 'void',
1458
+ 'x-component': 'Grid.Col',
1459
+ properties: {
1460
+ i0ywe80o2k0: {
1461
+ _isJSONSchemaObject: true,
1462
+ version: '2.0',
1463
+ type: 'void',
1464
+ 'x-decorator': 'TableBlockProvider',
1465
+ 'x-acl-action': 'users:list',
1466
+ 'x-use-decorator-props': 'useTableBlockDecoratorProps',
1467
+ 'x-decorator-props': {
1468
+ collection: 'users',
1469
+ dataSource: 'main',
1470
+ action: 'list',
1471
+ params: {
1472
+ pageSize: 20
1473
+ },
1474
+ rowKey: 'id',
1475
+ showIndex: true,
1476
+ dragSort: false
1477
+ },
1478
+ 'x-toolbar': 'BlockSchemaToolbar',
1479
+ 'x-settings': 'blockSettings:table',
1480
+ 'x-component': 'CardItem',
1481
+ 'x-filter-targets': [],
1482
+ properties: {
1483
+ actions: {
1484
+ _isJSONSchemaObject: true,
1485
+ version: '2.0',
1486
+ type: 'void',
1487
+ 'x-initializer': 'table:configureActions',
1488
+ 'x-component': 'ActionBar',
1489
+ 'x-component-props': {
1490
+ style: {
1491
+ marginBottom: 'var(--tb-spacing)'
1492
+ }
1493
+ },
1494
+ 'x-uid': 'e7ukdkylglc',
1495
+ 'x-async': false,
1496
+ 'x-index': 1
1497
+ },
1498
+ lbh0sin622q: {
1499
+ _isJSONSchemaObject: true,
1500
+ version: '2.0',
1501
+ type: 'array',
1502
+ 'x-initializer': 'table:configureColumns',
1503
+ 'x-component': 'TableV2',
1504
+ 'x-use-component-props': 'useTableBlockProps',
1505
+ 'x-component-props': {
1506
+ rowKey: 'id',
1507
+ rowSelection: {
1508
+ type: 'checkbox'
1509
+ }
1510
+ },
1511
+ properties: {
1512
+ actions: {
1513
+ _isJSONSchemaObject: true,
1514
+ version: '2.0',
1515
+ type: 'void',
1516
+ title: '{{ t("Actions") }}',
1517
+ 'x-action-column': 'actions',
1518
+ 'x-decorator': 'TableV2.Column.ActionBar',
1519
+ 'x-component': 'TableV2.Column',
1520
+ 'x-designer': 'TableV2.ActionColumnDesigner',
1521
+ 'x-initializer': 'table:configureItemActions',
1522
+ properties: {
1523
+ mp82chprh15: {
1524
+ _isJSONSchemaObject: true,
1525
+ version: '2.0',
1526
+ type: 'void',
1527
+ 'x-decorator': 'DndContext',
1528
+ 'x-component': 'Space',
1529
+ 'x-component-props': {
1530
+ split: '|'
1531
+ },
1532
+ properties: {
1533
+ '68vzmm4j2v7': {
1534
+ _isJSONSchemaObject: true,
1535
+ version: '2.0',
1536
+ type: 'void',
1537
+ title: '{{ t("View") }}',
1538
+ 'x-action': 'view',
1539
+ 'x-toolbar': 'ActionSchemaToolbar',
1540
+ 'x-settings': 'actionSettings:view',
1541
+ 'x-component': 'Action.Link',
1542
+ 'x-component-props': {
1543
+ openMode: 'drawer'
1544
+ },
1545
+ 'x-decorator': 'ACLActionProvider',
1546
+ 'x-designer-props': {
1547
+ linkageAction: true
1548
+ },
1549
+ properties: {
1550
+ drawer: {
1551
+ _isJSONSchemaObject: true,
1552
+ version: '2.0',
1553
+ type: 'void',
1554
+ title: '{{ t("View record") }}',
1555
+ 'x-component': 'Action.Container',
1556
+ 'x-component-props': {
1557
+ className: 'tb-action-popup'
1558
+ },
1559
+ properties: {
1560
+ tabs: {
1561
+ _isJSONSchemaObject: true,
1562
+ version: '2.0',
1563
+ type: 'void',
1564
+ 'x-component': 'Tabs',
1565
+ 'x-component-props': {},
1566
+ 'x-initializer': 'TabPaneInitializers',
1567
+ properties: {
1568
+ tab1: {
1569
+ _isJSONSchemaObject: true,
1570
+ version: '2.0',
1571
+ type: 'void',
1572
+ title: '{{t("Details")}}',
1573
+ 'x-component': 'Tabs.TabPane',
1574
+ 'x-designer': 'Tabs.Designer',
1575
+ 'x-component-props': {},
1576
+ properties: {
1577
+ grid: {
1578
+ _isJSONSchemaObject: true,
1579
+ version: '2.0',
1580
+ type: 'void',
1581
+ 'x-component': 'Grid',
1582
+ 'x-initializer': 'popup:common:addBlock',
1583
+ 'x-uid': 'v8mceafhtt9',
1584
+ 'x-async': false,
1585
+ 'x-index': 1
1586
+ }
1587
+ },
1588
+ 'x-uid': 'xgev5isxh8c',
1589
+ 'x-async': false,
1590
+ 'x-index': 1
1591
+ }
1592
+ },
1593
+ 'x-uid': 'zxhc26ocbwt',
1594
+ 'x-async': false,
1595
+ 'x-index': 1
1596
+ }
1597
+ },
1598
+ 'x-uid': '8y380jnrc91',
1599
+ 'x-async': false,
1600
+ 'x-index': 1
1601
+ }
1602
+ },
1603
+ 'x-uid': 'fvyqc3l0nlz',
1604
+ 'x-async': false,
1605
+ 'x-index': 1
1606
+ }
1607
+ },
1608
+ 'x-uid': 's9cdwte7qb5',
1609
+ 'x-async': false,
1610
+ 'x-index': 1
1611
+ }
1612
+ },
1613
+ 'x-uid': 'e1e3l9aoqlz',
1614
+ 'x-async': false,
1615
+ 'x-index': 1
1616
+ }
1617
+ },
1618
+ 'x-uid': '2eta2rrzfib',
1619
+ 'x-async': false,
1620
+ 'x-index': 2
1621
+ }
1622
+ },
1623
+ 'x-uid': 'vqxmw6sp0dp',
1624
+ 'x-async': false,
1625
+ 'x-index': 1
1626
+ }
1627
+ },
1628
+ 'x-uid': '1hdhsgoac99',
1629
+ 'x-async': false,
1630
+ 'x-index': 1
1631
+ }
1632
+ },
1633
+ 'x-uid': 'delawmtj0ku',
1634
+ 'x-async': false,
1635
+ 'x-index': 2
1636
+ }
1637
+ },
1638
+ 'x-uid': 'v0qbl3nyzyo',
1639
+ 'x-async': false,
1640
+ 'x-index': 1
1641
+ }
1642
+ },
1643
+ 'x-uid': 'nn6bi7v7ae0',
1644
+ 'x-async': true,
1645
+ 'x-index': 1
1646
+ }
1647
+ };
1648
+ const tableWithInherit = {
1649
+ collections: [
1650
+ {
1651
+ name: 'targetCollection',
1652
+ fields: [
1653
+ {
1654
+ type: 'string',
1655
+ name: 'singleLineText',
1656
+ interface: 'input'
1657
+ }
1658
+ ]
1659
+ },
1660
+ {
1661
+ name: 'father',
1662
+ fields: [
1663
+ {
1664
+ type: 'string',
1665
+ name: 'singleLineText',
1666
+ interface: 'input'
1667
+ },
1668
+ {
1669
+ name: 'manyToMany',
1670
+ interface: 'm2m',
1671
+ target: 'targetCollection'
1672
+ }
1673
+ ]
1674
+ },
1675
+ {
1676
+ name: 'children',
1677
+ inherits: [
1678
+ 'father'
1679
+ ]
1680
+ }
1681
+ ],
1682
+ pageSchema: {
1683
+ _isJSONSchemaObject: true,
1684
+ version: '2.0',
1685
+ type: 'void',
1686
+ 'x-component': 'Page',
1687
+ properties: {
1688
+ egrrnisc7pq: {
1689
+ _isJSONSchemaObject: true,
1690
+ version: '2.0',
1691
+ type: 'void',
1692
+ 'x-component': 'Grid',
1693
+ 'x-initializer': 'page:addBlock',
1694
+ properties: {
1695
+ bb1fa9y5wwh: {
1696
+ _isJSONSchemaObject: true,
1697
+ version: '2.0',
1698
+ type: 'void',
1699
+ 'x-component': 'Grid.Row',
1700
+ properties: {
1701
+ m8lbibphksn: {
1702
+ _isJSONSchemaObject: true,
1703
+ version: '2.0',
1704
+ type: 'void',
1705
+ 'x-component': 'Grid.Col',
1706
+ properties: {
1707
+ xj86s1jfwmk: {
1708
+ _isJSONSchemaObject: true,
1709
+ version: '2.0',
1710
+ type: 'void',
1711
+ 'x-decorator': 'TableBlockProvider',
1712
+ 'x-acl-action': 'father:list',
1713
+ 'x-use-decorator-props': 'useTableBlockDecoratorProps',
1714
+ 'x-decorator-props': {
1715
+ collection: 'father',
1716
+ dataSource: 'main',
1717
+ action: 'list',
1718
+ params: {
1719
+ pageSize: 20
1720
+ },
1721
+ rowKey: 'id',
1722
+ showIndex: true,
1723
+ dragSort: false
1724
+ },
1725
+ 'x-toolbar': 'BlockSchemaToolbar',
1726
+ 'x-settings': 'blockSettings:table',
1727
+ 'x-component': 'CardItem',
1728
+ 'x-filter-targets': [],
1729
+ properties: {
1730
+ actions: {
1731
+ _isJSONSchemaObject: true,
1732
+ version: '2.0',
1733
+ type: 'void',
1734
+ 'x-initializer': 'table:configureActions',
1735
+ 'x-component': 'ActionBar',
1736
+ 'x-component-props': {
1737
+ style: {
1738
+ marginBottom: 'var(--tb-spacing)'
1739
+ }
1740
+ },
1741
+ 'x-uid': '6j0p8tmwey7',
1742
+ 'x-async': false,
1743
+ 'x-index': 1
1744
+ },
1745
+ pm3vc0ire0v: {
1746
+ _isJSONSchemaObject: true,
1747
+ version: '2.0',
1748
+ type: 'array',
1749
+ 'x-initializer': 'table:configureColumns',
1750
+ 'x-component': 'TableV2',
1751
+ 'x-use-component-props': 'useTableBlockProps',
1752
+ 'x-component-props': {
1753
+ rowKey: 'id',
1754
+ rowSelection: {
1755
+ type: 'checkbox'
1756
+ }
1757
+ },
1758
+ properties: {
1759
+ actions: {
1760
+ _isJSONSchemaObject: true,
1761
+ version: '2.0',
1762
+ type: 'void',
1763
+ title: '{{ t("Actions") }}',
1764
+ 'x-action-column': 'actions',
1765
+ 'x-decorator': 'TableV2.Column.ActionBar',
1766
+ 'x-component': 'TableV2.Column',
1767
+ 'x-designer': 'TableV2.ActionColumnDesigner',
1768
+ 'x-initializer': 'table:configureItemActions',
1769
+ properties: {
1770
+ '6izaz7cwt1f': {
1771
+ _isJSONSchemaObject: true,
1772
+ version: '2.0',
1773
+ type: 'void',
1774
+ 'x-decorator': 'DndContext',
1775
+ 'x-component': 'Space',
1776
+ 'x-component-props': {
1777
+ split: '|'
1778
+ },
1779
+ properties: {
1780
+ '9qgblzykl18': {
1781
+ _isJSONSchemaObject: true,
1782
+ version: '2.0',
1783
+ type: 'void',
1784
+ title: '{{ t("View") }}',
1785
+ 'x-action': 'view',
1786
+ 'x-toolbar': 'ActionSchemaToolbar',
1787
+ 'x-settings': 'actionSettings:view',
1788
+ 'x-component': 'Action.Link',
1789
+ 'x-component-props': {
1790
+ openMode: 'drawer'
1791
+ },
1792
+ 'x-decorator': 'ACLActionProvider',
1793
+ 'x-designer-props': {
1794
+ linkageAction: true
1795
+ },
1796
+ properties: {
1797
+ drawer: {
1798
+ _isJSONSchemaObject: true,
1799
+ version: '2.0',
1800
+ type: 'void',
1801
+ title: '{{ t("View record") }}',
1802
+ 'x-component': 'Action.Container',
1803
+ 'x-component-props': {
1804
+ className: 'tb-action-popup'
1805
+ },
1806
+ properties: {
1807
+ tabs: {
1808
+ _isJSONSchemaObject: true,
1809
+ version: '2.0',
1810
+ type: 'void',
1811
+ 'x-component': 'Tabs',
1812
+ 'x-component-props': {},
1813
+ 'x-initializer': 'TabPaneInitializers',
1814
+ properties: {
1815
+ tab1: {
1816
+ _isJSONSchemaObject: true,
1817
+ version: '2.0',
1818
+ type: 'void',
1819
+ title: '{{t("Details")}}',
1820
+ 'x-component': 'Tabs.TabPane',
1821
+ 'x-designer': 'Tabs.Designer',
1822
+ 'x-component-props': {},
1823
+ properties: {
1824
+ grid: {
1825
+ _isJSONSchemaObject: true,
1826
+ version: '2.0',
1827
+ type: 'void',
1828
+ 'x-component': 'Grid',
1829
+ 'x-initializer': 'popup:common:addBlock',
1830
+ 'x-uid': '9h1njletm7j',
1831
+ 'x-async': false,
1832
+ 'x-index': 1
1833
+ }
1834
+ },
1835
+ 'x-uid': 'y9y0jzcb2pp',
1836
+ 'x-async': false,
1837
+ 'x-index': 1
1838
+ }
1839
+ },
1840
+ 'x-uid': '4m51ixkzi6i',
1841
+ 'x-async': false,
1842
+ 'x-index': 1
1843
+ }
1844
+ },
1845
+ 'x-uid': 'kt1n14v8q1u',
1846
+ 'x-async': false,
1847
+ 'x-index': 1
1848
+ }
1849
+ },
1850
+ 'x-uid': 'tkod1lyrj9z',
1851
+ 'x-async': false,
1852
+ 'x-index': 1
1853
+ }
1854
+ },
1855
+ 'x-uid': 'e84lmt2djp7',
1856
+ 'x-async': false,
1857
+ 'x-index': 1
1858
+ }
1859
+ },
1860
+ 'x-uid': '8pydvn47931',
1861
+ 'x-async': false,
1862
+ 'x-index': 1
1863
+ }
1864
+ },
1865
+ 'x-uid': 'zyfhdizs6g3',
1866
+ 'x-async': false,
1867
+ 'x-index': 2
1868
+ }
1869
+ },
1870
+ 'x-uid': '4r6xuptmtw8',
1871
+ 'x-async': false,
1872
+ 'x-index': 1
1873
+ }
1874
+ },
1875
+ 'x-uid': '0aqn6al8phn',
1876
+ 'x-async': false,
1877
+ 'x-index': 1
1878
+ }
1879
+ },
1880
+ 'x-uid': 'em7wvio4zan',
1881
+ 'x-async': false,
1882
+ 'x-index': 1
1883
+ }
1884
+ },
1885
+ 'x-uid': 'd0zbm0ezhp5',
1886
+ 'x-async': false,
1887
+ 'x-index': 1
1888
+ }
1889
+ },
1890
+ 'x-uid': 'qdffo69m238',
1891
+ 'x-async': true,
1892
+ 'x-index': 1
1893
+ }
1894
+ };
1895
+ const tableWithInheritWithoutAssociation = {
1896
+ collections: [
1897
+ {
1898
+ name: 'father',
1899
+ fields: [
1900
+ {
1901
+ type: 'string',
1902
+ name: 'singleLineText',
1903
+ interface: 'input'
1904
+ }
1905
+ ]
1906
+ },
1907
+ {
1908
+ name: 'children',
1909
+ inherits: [
1910
+ 'father'
1911
+ ]
1912
+ }
1913
+ ],
1914
+ pageSchema: {
1915
+ _isJSONSchemaObject: true,
1916
+ version: '2.0',
1917
+ type: 'void',
1918
+ 'x-component': 'Page',
1919
+ properties: {
1920
+ egrrnisc7pq: {
1921
+ _isJSONSchemaObject: true,
1922
+ version: '2.0',
1923
+ type: 'void',
1924
+ 'x-component': 'Grid',
1925
+ 'x-initializer': 'page:addBlock',
1926
+ properties: {
1927
+ bb1fa9y5wwh: {
1928
+ _isJSONSchemaObject: true,
1929
+ version: '2.0',
1930
+ type: 'void',
1931
+ 'x-component': 'Grid.Row',
1932
+ properties: {
1933
+ m8lbibphksn: {
1934
+ _isJSONSchemaObject: true,
1935
+ version: '2.0',
1936
+ type: 'void',
1937
+ 'x-component': 'Grid.Col',
1938
+ properties: {
1939
+ xj86s1jfwmk: {
1940
+ _isJSONSchemaObject: true,
1941
+ version: '2.0',
1942
+ type: 'void',
1943
+ 'x-decorator': 'TableBlockProvider',
1944
+ 'x-acl-action': 'father:list',
1945
+ 'x-use-decorator-props': 'useTableBlockDecoratorProps',
1946
+ 'x-decorator-props': {
1947
+ collection: 'father',
1948
+ dataSource: 'main',
1949
+ action: 'list',
1950
+ params: {
1951
+ pageSize: 20
1952
+ },
1953
+ rowKey: 'id',
1954
+ showIndex: true,
1955
+ dragSort: false
1956
+ },
1957
+ 'x-toolbar': 'BlockSchemaToolbar',
1958
+ 'x-settings': 'blockSettings:table',
1959
+ 'x-component': 'CardItem',
1960
+ 'x-filter-targets': [],
1961
+ properties: {
1962
+ actions: {
1963
+ _isJSONSchemaObject: true,
1964
+ version: '2.0',
1965
+ type: 'void',
1966
+ 'x-initializer': 'table:configureActions',
1967
+ 'x-component': 'ActionBar',
1968
+ 'x-component-props': {
1969
+ style: {
1970
+ marginBottom: 'var(--tb-spacing)'
1971
+ }
1972
+ },
1973
+ 'x-uid': '6j0p8tmwey7',
1974
+ 'x-async': false,
1975
+ 'x-index': 1
1976
+ },
1977
+ pm3vc0ire0v: {
1978
+ _isJSONSchemaObject: true,
1979
+ version: '2.0',
1980
+ type: 'array',
1981
+ 'x-initializer': 'table:configureColumns',
1982
+ 'x-component': 'TableV2',
1983
+ 'x-use-component-props': 'useTableBlockProps',
1984
+ 'x-component-props': {
1985
+ rowKey: 'id',
1986
+ rowSelection: {
1987
+ type: 'checkbox'
1988
+ }
1989
+ },
1990
+ properties: {
1991
+ actions: {
1992
+ _isJSONSchemaObject: true,
1993
+ version: '2.0',
1994
+ type: 'void',
1995
+ title: '{{ t("Actions") }}',
1996
+ 'x-action-column': 'actions',
1997
+ 'x-decorator': 'TableV2.Column.ActionBar',
1998
+ 'x-component': 'TableV2.Column',
1999
+ 'x-designer': 'TableV2.ActionColumnDesigner',
2000
+ 'x-initializer': 'table:configureItemActions',
2001
+ properties: {
2002
+ '6izaz7cwt1f': {
2003
+ _isJSONSchemaObject: true,
2004
+ version: '2.0',
2005
+ type: 'void',
2006
+ 'x-decorator': 'DndContext',
2007
+ 'x-component': 'Space',
2008
+ 'x-component-props': {
2009
+ split: '|'
2010
+ },
2011
+ properties: {
2012
+ '9qgblzykl18': {
2013
+ _isJSONSchemaObject: true,
2014
+ version: '2.0',
2015
+ type: 'void',
2016
+ title: '{{ t("View") }}',
2017
+ 'x-action': 'view',
2018
+ 'x-toolbar': 'ActionSchemaToolbar',
2019
+ 'x-settings': 'actionSettings:view',
2020
+ 'x-component': 'Action.Link',
2021
+ 'x-component-props': {
2022
+ openMode: 'drawer'
2023
+ },
2024
+ 'x-decorator': 'ACLActionProvider',
2025
+ 'x-designer-props': {
2026
+ linkageAction: true
2027
+ },
2028
+ properties: {
2029
+ drawer: {
2030
+ _isJSONSchemaObject: true,
2031
+ version: '2.0',
2032
+ type: 'void',
2033
+ title: '{{ t("View record") }}',
2034
+ 'x-component': 'Action.Container',
2035
+ 'x-component-props': {
2036
+ className: 'tb-action-popup'
2037
+ },
2038
+ properties: {
2039
+ tabs: {
2040
+ _isJSONSchemaObject: true,
2041
+ version: '2.0',
2042
+ type: 'void',
2043
+ 'x-component': 'Tabs',
2044
+ 'x-component-props': {},
2045
+ 'x-initializer': 'TabPaneInitializers',
2046
+ properties: {
2047
+ tab1: {
2048
+ _isJSONSchemaObject: true,
2049
+ version: '2.0',
2050
+ type: 'void',
2051
+ title: '{{t("Details")}}',
2052
+ 'x-component': 'Tabs.TabPane',
2053
+ 'x-designer': 'Tabs.Designer',
2054
+ 'x-component-props': {},
2055
+ properties: {
2056
+ grid: {
2057
+ _isJSONSchemaObject: true,
2058
+ version: '2.0',
2059
+ type: 'void',
2060
+ 'x-component': 'Grid',
2061
+ 'x-initializer': 'popup:common:addBlock',
2062
+ 'x-uid': '9h1njletm7j',
2063
+ 'x-async': false,
2064
+ 'x-index': 1
2065
+ }
2066
+ },
2067
+ 'x-uid': 'y9y0jzcb2pp',
2068
+ 'x-async': false,
2069
+ 'x-index': 1
2070
+ }
2071
+ },
2072
+ 'x-uid': '4m51ixkzi6i',
2073
+ 'x-async': false,
2074
+ 'x-index': 1
2075
+ }
2076
+ },
2077
+ 'x-uid': 'kt1n14v8q1u',
2078
+ 'x-async': false,
2079
+ 'x-index': 1
2080
+ }
2081
+ },
2082
+ 'x-uid': 'tkod1lyrj9z',
2083
+ 'x-async': false,
2084
+ 'x-index': 1
2085
+ }
2086
+ },
2087
+ 'x-uid': 'e84lmt2djp7',
2088
+ 'x-async': false,
2089
+ 'x-index': 1
2090
+ }
2091
+ },
2092
+ 'x-uid': '8pydvn47931',
2093
+ 'x-async': false,
2094
+ 'x-index': 1
2095
+ }
2096
+ },
2097
+ 'x-uid': 'zyfhdizs6g3',
2098
+ 'x-async': false,
2099
+ 'x-index': 2
2100
+ }
2101
+ },
2102
+ 'x-uid': '4r6xuptmtw8',
2103
+ 'x-async': false,
2104
+ 'x-index': 1
2105
+ }
2106
+ },
2107
+ 'x-uid': '0aqn6al8phn',
2108
+ 'x-async': false,
2109
+ 'x-index': 1
2110
+ }
2111
+ },
2112
+ 'x-uid': 'em7wvio4zan',
2113
+ 'x-async': false,
2114
+ 'x-index': 1
2115
+ }
2116
+ },
2117
+ 'x-uid': 'd0zbm0ezhp5',
2118
+ 'x-async': false,
2119
+ 'x-index': 1
2120
+ }
2121
+ },
2122
+ 'x-uid': 'qdffo69m238',
2123
+ 'x-async': true,
2124
+ 'x-index': 1
2125
+ }
2126
+ };
2127
+
2128
+ export { T2797, T2838, tableWithInherit, tableWithInheritWithoutAssociation, tableWithRoles, tableWithUsers };