@tachybase/client 0.23.8-alpha.32 → 0.23.8-alpha.33

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 (1333) hide show
  1. package/es/api-client/APIClient.js +179 -0
  2. package/es/api-client/APIClientProvider.js +45 -0
  3. package/es/api-client/__tests__/APIClient.test.js +90 -0
  4. package/es/api-client/context.js +39 -0
  5. package/es/api-client/demos/demo1.js +80 -0
  6. package/es/api-client/demos/demo2.js +79 -0
  7. package/es/api-client/demos/demo3.js +122 -0
  8. package/es/api-client/hooks/assign.js +110 -0
  9. package/es/api-client/hooks/index.js +83 -0
  10. package/es/api-client/hooks/useAPIClient.js +40 -0
  11. package/es/api-client/hooks/useRequest.js +72 -0
  12. package/es/api-client/hooks/useResource.js +40 -0
  13. package/es/api-client/index.js +92 -0
  14. package/es/application/AppSchemaComponentProvider.js +63 -0
  15. package/es/application/Application.js +360 -0
  16. package/es/application/AttachmentPreviewManager.js +67 -0
  17. package/es/application/NoticesManager.js +154 -0
  18. package/es/application/Plugin.js +96 -0
  19. package/es/application/PluginContextMenu.js +65 -0
  20. package/es/application/PluginManager.js +117 -0
  21. package/es/application/RouterManager.js +150 -0
  22. package/es/application/SystemSettingsManager.js +145 -0
  23. package/es/application/UserSettingsManager.js +147 -0
  24. package/es/application/WebSocketClient.js +190 -0
  25. package/es/application/__tests__/Application.test.js +517 -0
  26. package/es/application/__tests__/Plugin.test.js +233 -0
  27. package/es/application/__tests__/PluginSettingsManager.test.js +192 -0
  28. package/es/application/__tests__/RouterManager.test.js +347 -0
  29. package/es/application/__tests__/SchemaInitializer.test.js +170 -0
  30. package/es/application/__tests__/SchemaToolbar.test.js +150 -0
  31. package/es/application/__tests__/hoc/withDynamicSchemaProps.test.js +194 -0
  32. package/es/application/__tests__/hooks.test.js +92 -0
  33. package/es/application/__tests__/utils/remotePlugins.test.js +325 -0
  34. package/es/application/__tests__/utils.test.js +106 -0
  35. package/es/application/components/AppComponent.js +89 -0
  36. package/es/application/components/BlankComponent.js +43 -0
  37. package/es/application/components/MainComponent.js +65 -0
  38. package/es/application/components/RouterContextCleaner.js +64 -0
  39. package/es/application/components/defaultComponents.js +59 -0
  40. package/es/application/components/index.js +92 -0
  41. package/es/application/context.js +38 -0
  42. package/es/application/demos/demo1.js +144 -0
  43. package/es/application/demos/demo2.js +160 -0
  44. package/es/application/demos/demo3.js +46 -0
  45. package/es/application/hoc/index.js +65 -0
  46. package/es/application/hoc/withDynamicSchemaProps.js +164 -0
  47. package/es/application/hooks/index.js +83 -0
  48. package/es/application/hooks/useApp.js +38 -0
  49. package/es/application/hooks/usePlugin.js +40 -0
  50. package/es/application/hooks/useRouter.js +40 -0
  51. package/es/application/index.js +233 -0
  52. package/es/application/schema-initializer/SchemaInitializer.js +112 -0
  53. package/es/application/schema-initializer/SchemaInitializerManager.js +108 -0
  54. package/es/application/schema-initializer/components/SchemaInitializerActionModal.js +145 -0
  55. package/es/application/schema-initializer/components/SchemaInitializerButton.js +87 -0
  56. package/es/application/schema-initializer/components/SchemaInitializerChildren.js +104 -0
  57. package/es/application/schema-initializer/components/SchemaInitializerDivider.js +47 -0
  58. package/es/application/schema-initializer/components/SchemaInitializerItem.js +139 -0
  59. package/es/application/schema-initializer/components/SchemaInitializerItemGroup.js +71 -0
  60. package/es/application/schema-initializer/components/SchemaInitializerItems.js +45 -0
  61. package/es/application/schema-initializer/components/SchemaInitializerSelect.js +98 -0
  62. package/es/application/schema-initializer/components/SchemaInitializerSubMenu.js +157 -0
  63. package/es/application/schema-initializer/components/SchemaInitializerSwitch.js +73 -0
  64. package/es/application/schema-initializer/components/index.js +146 -0
  65. package/es/application/schema-initializer/components/style.js +75 -0
  66. package/es/application/schema-initializer/context/index.js +59 -0
  67. package/es/application/schema-initializer/hoc/index.js +165 -0
  68. package/es/application/schema-initializer/hooks/index.js +251 -0
  69. package/es/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.js +51 -0
  70. package/es/application/schema-initializer/index.js +119 -0
  71. package/es/application/schema-initializer/types.js +19 -0
  72. package/es/application/schema-settings/SchemaSettings.js +107 -0
  73. package/es/application/schema-settings/SchemaSettingsDefaults.js +249 -0
  74. package/es/application/schema-settings/SchemaSettingsManager.js +108 -0
  75. package/es/application/schema-settings/components/SchemaSettingsChildren.js +125 -0
  76. package/es/application/schema-settings/components/SchemaSettingsIcon.js +67 -0
  77. package/es/application/schema-settings/components/SchemaSettingsWrapper.js +81 -0
  78. package/es/application/schema-settings/components/index.js +74 -0
  79. package/es/application/schema-settings/context/index.js +42 -0
  80. package/es/application/schema-settings/hooks/index.js +92 -0
  81. package/es/application/schema-settings/index.js +110 -0
  82. package/es/application/schema-settings/types.js +19 -0
  83. package/es/application/schema-toolbar/context/index.js +51 -0
  84. package/es/application/schema-toolbar/hooks/index.js +59 -0
  85. package/es/application/schema-toolbar/index.js +74 -0
  86. package/es/application/utils/globalDeps.js +112 -0
  87. package/es/application/utils/index.js +74 -0
  88. package/es/application/utils/remotePlugins.js +153 -0
  89. package/es/async-data-provider/index.js +57 -0
  90. package/es/block-provider/BlockProvider.js +373 -0
  91. package/es/block-provider/DetailsBlockProvider.js +149 -0
  92. package/es/block-provider/FilterFormBlockProvider.js +53 -0
  93. package/es/block-provider/FormBlockProvider.js +220 -0
  94. package/es/block-provider/FormFieldProvider.js +122 -0
  95. package/es/block-provider/MobileProvider.js +50 -0
  96. package/es/block-provider/PageLayout.js +43 -0
  97. package/es/block-provider/TableBlockProvider.js +147 -0
  98. package/es/block-provider/TableFieldProvider.js +202 -0
  99. package/es/block-provider/TableSelectorProvider.js +338 -0
  100. package/es/block-provider/TreeBlockProvider.js +154 -0
  101. package/es/block-provider/hooks/index.js +1559 -0
  102. package/es/block-provider/hooks/useDataBlockSourceId.js +48 -0
  103. package/es/block-provider/hooks/useFormActiveFields.js +69 -0
  104. package/es/block-provider/hooks/useIsMobile.js +41 -0
  105. package/es/block-provider/hooks/useParsedFilter.js +96 -0
  106. package/es/block-provider/index.js +155 -0
  107. package/es/built-in/acl/ACLPlugin.js +47 -0
  108. package/es/built-in/acl/ACLProvider.js +328 -0
  109. package/es/built-in/acl/ACLShortcut.js +57 -0
  110. package/es/built-in/acl/Configuration/ConfigureCenter.js +158 -0
  111. package/es/built-in/acl/Configuration/MenuConfigure.js +181 -0
  112. package/es/built-in/acl/Configuration/MenuItemsProvider.js +76 -0
  113. package/es/built-in/acl/Configuration/PermisionProvider.js +105 -0
  114. package/es/built-in/acl/Configuration/RoleConfigure.js +175 -0
  115. package/es/built-in/acl/Configuration/RoleTable.js +75 -0
  116. package/es/built-in/acl/Configuration/RolesResourcesActions.js +251 -0
  117. package/es/built-in/acl/Configuration/ScopeSelect.js +76 -0
  118. package/es/built-in/acl/Configuration/StrategyActions.js +143 -0
  119. package/es/built-in/acl/Configuration/index.js +153 -0
  120. package/es/built-in/acl/Configuration/schemas/roles.js +443 -0
  121. package/es/built-in/acl/Configuration/schemas/scopes.js +397 -0
  122. package/es/built-in/acl/Configuration/schemas/useRoleResourceValues.js +69 -0
  123. package/es/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.js +57 -0
  124. package/es/built-in/acl/index.js +92 -0
  125. package/es/built-in/acl/style.js +57 -0
  126. package/es/built-in/admin-layout/AdminContent.js +47 -0
  127. package/es/built-in/admin-layout/AdminTabs.js +43 -0
  128. package/es/built-in/admin-layout/NoticeArea.js +50 -0
  129. package/es/built-in/admin-layout/components/AddNewButton.js +89 -0
  130. package/es/built-in/admin-layout/components/WelcomeCard.js +115 -0
  131. package/es/built-in/admin-layout/index.js +350 -0
  132. package/es/built-in/admin-layout/style.js +176 -0
  133. package/es/built-in/assistant/Assistant.provider.js +125 -0
  134. package/es/built-in/assistant/ai-chat/index.js +378 -0
  135. package/es/built-in/assistant/ai-chat/index.module.js +64 -0
  136. package/es/built-in/assistant/calculator/AutoScalingText.js +67 -0
  137. package/es/built-in/assistant/calculator/Calculator.js +283 -0
  138. package/es/built-in/assistant/calculator/CalculatorDisplay.js +55 -0
  139. package/es/built-in/assistant/calculator/CalculatorKey.js +45 -0
  140. package/es/built-in/assistant/calculator/CalculatorProvider.js +65 -0
  141. package/es/built-in/assistant/calculator/Draggable.js +102 -0
  142. package/es/built-in/assistant/calculator/style.js +59 -0
  143. package/es/built-in/assistant/index.js +46 -0
  144. package/es/built-in/assistant/search-and-jump/index.js +96 -0
  145. package/es/built-in/attachment-preview/index.js +49 -0
  146. package/es/built-in/attachment-preview/interface.js +19 -0
  147. package/es/built-in/attachment-preview/previewers/file-default.js +117 -0
  148. package/es/built-in/attachment-preview/previewers/file-pdf.js +143 -0
  149. package/es/built-in/attachment-preview/previewers/file-pdf.style.js +79 -0
  150. package/es/built-in/attachment-preview/previewers/file-sheet.js +153 -0
  151. package/es/built-in/attachment-preview/previewers/file-sheet.style.js +79 -0
  152. package/es/built-in/attachment-preview/previewers/image-jpeg.js +68 -0
  153. package/es/built-in/attachment-preview/previewers/image-png.js +68 -0
  154. package/es/built-in/attachment-preview/previewers/image-svg.js +54 -0
  155. package/es/built-in/attachment-preview/previewers/index.js +110 -0
  156. package/es/built-in/block-schema-component/index.js +121 -0
  157. package/es/built-in/built-in-collections/index.js +94 -0
  158. package/es/built-in/context-menu/ContextMenu.provider.js +102 -0
  159. package/es/built-in/context-menu/ContextMenuItemsProps.js +183 -0
  160. package/es/built-in/context-menu/index.js +52 -0
  161. package/es/built-in/context-menu/useContextMenu.js +39 -0
  162. package/es/built-in/document-title/index.js +91 -0
  163. package/es/built-in/dynamic-page/DynamicPage.js +70 -0
  164. package/es/built-in/dynamic-page/index.js +109 -0
  165. package/es/built-in/dynamic-page/style.js +87 -0
  166. package/es/built-in/dynamic-page/utils.js +97 -0
  167. package/es/built-in/index.js +664 -0
  168. package/es/built-in/locale/LocalePlugin.js +132 -0
  169. package/es/built-in/locale/loadConstrueLocale.js +233 -0
  170. package/es/built-in/page-style/CustomAdminHeader.js +43 -0
  171. package/es/built-in/page-style/PageStyle.provider.js +67 -0
  172. package/es/built-in/page-style/TabContent.js +101 -0
  173. package/es/built-in/page-style/TabHeader.js +129 -0
  174. package/es/built-in/page-style/index.js +48 -0
  175. package/es/built-in/page-style/usePageStyle.js +38 -0
  176. package/es/built-in/page-style/useTabSettings.js +105 -0
  177. package/es/built-in/pinned-list/PinnedPluginListProvider.js +96 -0
  178. package/es/built-in/pinned-list/PluginPinnedList.js +42 -0
  179. package/es/built-in/pinned-list/context.js +40 -0
  180. package/es/built-in/pinned-list/index.js +74 -0
  181. package/es/built-in/pm/PluginCard.js +305 -0
  182. package/es/built-in/pm/PluginDetail.js +369 -0
  183. package/es/built-in/pm/PluginDocument.js +105 -0
  184. package/es/built-in/pm/PluginForm/form/PluginNpmForm.js +175 -0
  185. package/es/built-in/pm/PluginForm/form/PluginUploadForm.js +141 -0
  186. package/es/built-in/pm/PluginForm/form/PluginUrlForm.js +135 -0
  187. package/es/built-in/pm/PluginForm/modal/PluginAddModal.js +95 -0
  188. package/es/built-in/pm/PluginForm/modal/PluginUpgradeModal.js +99 -0
  189. package/es/built-in/pm/PluginManager.js +319 -0
  190. package/es/built-in/pm/index.js +90 -0
  191. package/es/built-in/pm/style.js +106 -0
  192. package/es/built-in/pm/types.js +19 -0
  193. package/es/built-in/quick-access/Action.js +124 -0
  194. package/es/built-in/quick-access/Block.js +163 -0
  195. package/es/built-in/quick-access/CustomRequestActionSchemaInitializerItem.js +125 -0
  196. package/es/built-in/quick-access/LinkActionSchemaInitializerItem.js +118 -0
  197. package/es/built-in/quick-access/ModalActionSchemaInitializerItem.js +126 -0
  198. package/es/built-in/quick-access/PopupActionSchemaInitializerItem.js +153 -0
  199. package/es/built-in/quick-access/SchemaSettingsBlockTitleItem.js +79 -0
  200. package/es/built-in/quick-access/blockInitializerItem.js +53 -0
  201. package/es/built-in/quick-access/blockSchema.js +53 -0
  202. package/es/built-in/quick-access/blockSettings.js +100 -0
  203. package/es/built-in/quick-access/configureActions.js +49 -0
  204. package/es/built-in/quick-access/index.js +65 -0
  205. package/es/built-in/scroll-assistant/ScrollAssistant.provider.js +76 -0
  206. package/es/built-in/scroll-assistant/ScrollAssistantStatus.provider.js +57 -0
  207. package/es/built-in/scroll-assistant/index.js +61 -0
  208. package/es/built-in/scroll-assistant/useJoystick.js +201 -0
  209. package/es/built-in/setting-layout/AdminSettings.js +161 -0
  210. package/es/built-in/setting-layout/SettingLayout.js +170 -0
  211. package/es/built-in/setting-layout/SettingsCenterDropdown.js +109 -0
  212. package/es/built-in/system-settings/SystemSettingsProvider.js +53 -0
  213. package/es/built-in/system-settings/SystemSettingsShortcut.js +196 -0
  214. package/es/built-in/system-settings/index.js +98 -0
  215. package/es/built-in/system-version/SystemVersion.provider.js +68 -0
  216. package/es/built-in/system-version/index.js +42 -0
  217. package/es/built-in/user-settings/UserSettingsLayout.js +203 -0
  218. package/es/built-in/user-settings/index.js +51 -0
  219. package/es/built-in/user-settings/style.js +106 -0
  220. package/es/collection-manager/CollectionHistoryProvider.js +94 -0
  221. package/es/collection-manager/CollectionManagerProvider.js +93 -0
  222. package/es/collection-manager/CollectionManagerSchemaComponentProvider.js +57 -0
  223. package/es/collection-manager/CollectionProvider_deprecated.js +55 -0
  224. package/es/collection-manager/Configuration/AddCollectionAction.js +259 -0
  225. package/es/collection-manager/Configuration/AddFieldAction.js +409 -0
  226. package/es/collection-manager/Configuration/AddSubFieldAction.js +174 -0
  227. package/es/collection-manager/Configuration/DeleteCollectionAction.js +257 -0
  228. package/es/collection-manager/Configuration/EditCollectionAction.js +223 -0
  229. package/es/collection-manager/Configuration/EditFieldAction.js +297 -0
  230. package/es/collection-manager/Configuration/EditSubFieldAction.js +163 -0
  231. package/es/collection-manager/Configuration/ImportCollectionMetaAction.js +176 -0
  232. package/es/collection-manager/Configuration/OverridingCollectionField.js +265 -0
  233. package/es/collection-manager/Configuration/SyncFieldsAction.js +233 -0
  234. package/es/collection-manager/Configuration/SyncSQLFieldsAction.js +200 -0
  235. package/es/collection-manager/Configuration/ViewInheritedField.js +188 -0
  236. package/es/collection-manager/Configuration/components/CollectionCategory.js +52 -0
  237. package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.js +53 -0
  238. package/es/collection-manager/Configuration/components/CollectionTemplateTag.js +52 -0
  239. package/es/collection-manager/Configuration/components/FieldSummary.js +67 -0
  240. package/es/collection-manager/Configuration/components/Summary.js +95 -0
  241. package/es/collection-manager/Configuration/components/TemplateSummary.js +67 -0
  242. package/es/collection-manager/Configuration/components/index.js +360 -0
  243. package/es/collection-manager/Configuration/index.js +225 -0
  244. package/es/collection-manager/Configuration/interfaces.js +70 -0
  245. package/es/collection-manager/ResourceActionProvider.js +174 -0
  246. package/es/collection-manager/action-hooks.js +615 -0
  247. package/es/collection-manager/collectionPlugin.js +163 -0
  248. package/es/collection-manager/context.js +41 -0
  249. package/es/collection-manager/demos/demo2.js +140 -0
  250. package/es/collection-manager/demos/demo3.js +124 -0
  251. package/es/collection-manager/demos/demo4.js +202 -0
  252. package/es/collection-manager/demos/demo5.js +186 -0
  253. package/es/collection-manager/hooks/index.js +92 -0
  254. package/es/collection-manager/hooks/useCollectionDataSource.js +51 -0
  255. package/es/collection-manager/hooks/useCollectionField_deprecated.js +55 -0
  256. package/es/collection-manager/hooks/useCollectionManager_deprecated.js +272 -0
  257. package/es/collection-manager/hooks/useCollection_deprecated.js +88 -0
  258. package/es/collection-manager/hooks/useDialect.js +45 -0
  259. package/es/collection-manager/index.js +437 -0
  260. package/es/collection-manager/interfaces/__tests__/json.js +47 -0
  261. package/es/collection-manager/interfaces/checkbox.js +83 -0
  262. package/es/collection-manager/interfaces/checkboxGroup.js +77 -0
  263. package/es/collection-manager/interfaces/chinaRegion.js +136 -0
  264. package/es/collection-manager/interfaces/collection.js +77 -0
  265. package/es/collection-manager/interfaces/color.js +65 -0
  266. package/es/collection-manager/interfaces/components/index.js +88 -0
  267. package/es/collection-manager/interfaces/createdAt.js +69 -0
  268. package/es/collection-manager/interfaces/createdBy.js +89 -0
  269. package/es/collection-manager/interfaces/datetime.js +78 -0
  270. package/es/collection-manager/interfaces/email.js +76 -0
  271. package/es/collection-manager/interfaces/icon.js +62 -0
  272. package/es/collection-manager/interfaces/id.js +88 -0
  273. package/es/collection-manager/interfaces/index.js +407 -0
  274. package/es/collection-manager/interfaces/input.js +216 -0
  275. package/es/collection-manager/interfaces/integer.js +152 -0
  276. package/es/collection-manager/interfaces/json.js +109 -0
  277. package/es/collection-manager/interfaces/linkTo.js +126 -0
  278. package/es/collection-manager/interfaces/m2m.js +251 -0
  279. package/es/collection-manager/interfaces/m2o.js +193 -0
  280. package/es/collection-manager/interfaces/markdown.js +111 -0
  281. package/es/collection-manager/interfaces/multipleSelect.js +82 -0
  282. package/es/collection-manager/interfaces/nanoid.js +94 -0
  283. package/es/collection-manager/interfaces/number.js +165 -0
  284. package/es/collection-manager/interfaces/o2m.js +226 -0
  285. package/es/collection-manager/interfaces/o2o.js +488 -0
  286. package/es/collection-manager/interfaces/password.js +97 -0
  287. package/es/collection-manager/interfaces/percent.js +196 -0
  288. package/es/collection-manager/interfaces/phone.js +68 -0
  289. package/es/collection-manager/interfaces/properties/index.js +539 -0
  290. package/es/collection-manager/interfaces/properties/operators.js +436 -0
  291. package/es/collection-manager/interfaces/radioGroup.js +68 -0
  292. package/es/collection-manager/interfaces/richText.js +109 -0
  293. package/es/collection-manager/interfaces/select.js +80 -0
  294. package/es/collection-manager/interfaces/sort.js +140 -0
  295. package/es/collection-manager/interfaces/subTable.js +231 -0
  296. package/es/collection-manager/interfaces/tableoid.js +82 -0
  297. package/es/collection-manager/interfaces/textarea.js +109 -0
  298. package/es/collection-manager/interfaces/time.js +81 -0
  299. package/es/collection-manager/interfaces/types.js +19 -0
  300. package/es/collection-manager/interfaces/unixTimestamp.js +86 -0
  301. package/es/collection-manager/interfaces/updatedAt.js +69 -0
  302. package/es/collection-manager/interfaces/updatedBy.js +89 -0
  303. package/es/collection-manager/interfaces/url.js +68 -0
  304. package/es/collection-manager/interfaces/uuid.js +82 -0
  305. package/es/collection-manager/mixins/InheritanceCollectionMixin.js +221 -0
  306. package/es/collection-manager/sub-table.js +275 -0
  307. package/es/collection-manager/templates/components/PresetFields.js +262 -0
  308. package/es/collection-manager/templates/components/PreviewFields.js +357 -0
  309. package/es/collection-manager/templates/components/PreviewTable.js +174 -0
  310. package/es/collection-manager/templates/components/sql-collection/FieldsConfigure.js +328 -0
  311. package/es/collection-manager/templates/components/sql-collection/PreviewTable.js +94 -0
  312. package/es/collection-manager/templates/components/sql-collection/SQLInput.js +124 -0
  313. package/es/collection-manager/templates/components/sql-collection/SQLRequestProvider.js +85 -0
  314. package/es/collection-manager/templates/components/sql-collection/index.js +92 -0
  315. package/es/collection-manager/templates/expression.js +96 -0
  316. package/es/collection-manager/templates/general.js +54 -0
  317. package/es/collection-manager/templates/import.js +53 -0
  318. package/es/collection-manager/templates/index.js +110 -0
  319. package/es/collection-manager/templates/properties/index.js +104 -0
  320. package/es/collection-manager/templates/sql.js +119 -0
  321. package/es/collection-manager/templates/tree.js +112 -0
  322. package/es/collection-manager/templates/types.js +19 -0
  323. package/es/collection-manager/templates/view.js +193 -0
  324. package/es/collection-manager/types.js +19 -0
  325. package/es/collection-manager/utils.js +55 -0
  326. package/es/common/SelectWithTitle.js +78 -0
  327. package/es/common/appInfo/CurrentAppInfoProvider.js +53 -0
  328. package/es/common/appInfo/index.js +65 -0
  329. package/es/common/index.js +83 -0
  330. package/es/common/useFieldComponentName.js +57 -0
  331. package/es/common/useNiceDropdownHeight.js +52 -0
  332. package/es/data-source/__tests__/collection/AssociationProvider.test.js +120 -0
  333. package/es/data-source/__tests__/collection/Collection.test.js +304 -0
  334. package/es/data-source/__tests__/collection/CollectionManager.test.js +304 -0
  335. package/es/data-source/__tests__/collection/CollectionManagerProvider.test.js +121 -0
  336. package/es/data-source/__tests__/collection/CollectionProvider.test.js +113 -0
  337. package/es/data-source/__tests__/collection/ExtendCollectionsProvider.test.js +94 -0
  338. package/es/data-source/__tests__/collection-field/CollectionField.test.js +74 -0
  339. package/es/data-source/__tests__/collection-field/CollectionFieldProvider.test.js +58 -0
  340. package/es/data-source/__tests__/collection-field-interface/CollectionFieldInterfaceManager.test.js +169 -0
  341. package/es/data-source/__tests__/collection-record/CollectionRecord.test.js +28 -0
  342. package/es/data-source/__tests__/collection-record/CollectionRecordProvider.test.js +260 -0
  343. package/es/data-source/__tests__/collection-record/isNewRecord.test.js +52 -0
  344. package/es/data-source/__tests__/collection-template/CollectionTemplateManager.test.js +130 -0
  345. package/es/data-source/__tests__/components/CollectionDeletedPlaceholder.test.js +50 -0
  346. package/es/data-source/__tests__/data-block/DataBlockProvider.test.js +154 -0
  347. package/es/data-source/__tests__/data-block/data-block-demos/association-table-list-and-parent-record.js +122 -0
  348. package/es/data-source/__tests__/data-block/data-block-demos/association-table-list-and-source-id.js +187 -0
  349. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-create.js +143 -0
  350. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-get-and-update.js +222 -0
  351. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-record-and-update.js +172 -0
  352. package/es/data-source/__tests__/data-block/data-block-demos/collection-table-list.js +128 -0
  353. package/es/data-source/__tests__/data-block/data-block-demos/createApp.js +103 -0
  354. package/es/data-source/__tests__/data-source/CollectionDataSourceProvider.test.js +42 -0
  355. package/es/data-source/__tests__/data-source/DataSource.test.js +82 -0
  356. package/es/data-source/__tests__/data-source/DataSourceManager.test.js +173 -0
  357. package/es/data-source/__tests__/data-source/DataSourceManagerProvider.test.js +37 -0
  358. package/es/data-source/__tests__/data-source/DataSourceProvider.test.js +86 -0
  359. package/es/data-source/__tests__/utils.test.js +62 -0
  360. package/es/data-source/collection/AssociationProvider.js +78 -0
  361. package/es/data-source/collection/Collection.js +211 -0
  362. package/es/data-source/collection/CollectionManager.js +153 -0
  363. package/es/data-source/collection/CollectionManagerProvider.js +84 -0
  364. package/es/data-source/collection/CollectionProvider.js +75 -0
  365. package/es/data-source/collection/ExtendCollectionsProvider.js +66 -0
  366. package/es/data-source/collection/index.js +110 -0
  367. package/es/data-source/collection/utils.js +85 -0
  368. package/es/data-source/collection-field/CollectionField.js +108 -0
  369. package/es/data-source/collection-field/CollectionFieldProvider.js +76 -0
  370. package/es/data-source/collection-field/index.js +74 -0
  371. package/es/data-source/collection-field-interface/CollectionFieldInterface.js +69 -0
  372. package/es/data-source/collection-field-interface/CollectionFieldInterfaceManager.js +95 -0
  373. package/es/data-source/collection-field-interface/index.js +74 -0
  374. package/es/data-source/collection-record/CollectionRecord.js +64 -0
  375. package/es/data-source/collection-record/CollectionRecordProvider.js +101 -0
  376. package/es/data-source/collection-record/index.js +74 -0
  377. package/es/data-source/collection-record/isNewRecord.js +44 -0
  378. package/es/data-source/collection-template/CollectionTemplate.js +68 -0
  379. package/es/data-source/collection-template/CollectionTemplateManager.js +88 -0
  380. package/es/data-source/collection-template/index.js +74 -0
  381. package/es/data-source/commonsSettingsItem/fieldComponent.js +105 -0
  382. package/es/data-source/commonsSettingsItem/index.js +65 -0
  383. package/es/data-source/components/CollectionDeletedPlaceholder.js +115 -0
  384. package/es/data-source/components/DataSourceApplicationProvider.js +49 -0
  385. package/es/data-source/components/index.js +74 -0
  386. package/es/data-source/data-block/DataBlockProvider.js +117 -0
  387. package/es/data-source/data-block/DataBlockRequestProvider.js +160 -0
  388. package/es/data-source/data-block/DataBlockResourceProvider.js +90 -0
  389. package/es/data-source/data-block/context/ConfigSetting.provider.js +46 -0
  390. package/es/data-source/data-block/index.js +92 -0
  391. package/es/data-source/data-source/DataSource.js +107 -0
  392. package/es/data-source/data-source/DataSourceManager.js +158 -0
  393. package/es/data-source/data-source/DataSourceManagerProvider.js +52 -0
  394. package/es/data-source/data-source/DataSourceProvider.js +105 -0
  395. package/es/data-source/data-source/index.js +92 -0
  396. package/es/data-source/index.js +146 -0
  397. package/es/data-source/utils.js +52 -0
  398. package/es/env.d.js +6 -0
  399. package/es/filter-provider/FilterProvider.js +177 -0
  400. package/es/filter-provider/__tests__/transformToFilter.js +72 -0
  401. package/es/filter-provider/__tests__/useFilter.js +48 -0
  402. package/es/filter-provider/__tests__/utiles.test.js +272 -0
  403. package/es/filter-provider/index.js +74 -0
  404. package/es/filter-provider/utils.js +238 -0
  405. package/es/flag-provider/FlagProvider.js +57 -0
  406. package/es/flag-provider/__tests__/flag-provider.test.js +26 -0
  407. package/es/flag-provider/hooks/useFlag.js +38 -0
  408. package/es/flag-provider/index.js +74 -0
  409. package/es/hooks/index.js +74 -0
  410. package/es/hooks/useAdminSchemaUid.js +38 -0
  411. package/es/hooks/useMenuItem.js +122 -0
  412. package/es/hooks/useViewport.js +69 -0
  413. package/es/i18n/i18n.js +73 -0
  414. package/es/i18n/index.js +65 -0
  415. package/es/icon/Icon.js +109 -0
  416. package/es/icon/__tests__/icon.test.js +63 -0
  417. package/es/icon/demos/antd-icon.js +41 -0
  418. package/es/icon/demos/custom-icon.js +50 -0
  419. package/es/icon/demos/iconfont.js +44 -0
  420. package/es/icon/demos/register-icon.js +57 -0
  421. package/es/icon/index.js +65 -0
  422. package/es/icon/preloaded.js +163 -0
  423. package/es/index.js +676 -0
  424. package/es/locale/index.js +308 -0
  425. package/es/modules/actions/ActionSchemaToolbar.js +44 -0
  426. package/es/modules/actions/add-child/CreateChildInitializer.js +98 -0
  427. package/es/modules/actions/add-child/addChildActionSettings.js +98 -0
  428. package/es/modules/actions/add-new/CreateActionInitializer.js +101 -0
  429. package/es/modules/actions/add-new/addNewActionSettings.js +91 -0
  430. package/es/modules/actions/add-new/createFormBlockInitializers.js +90 -0
  431. package/es/modules/actions/add-record/CustomizeAddRecordActionInitializer.js +97 -0
  432. package/es/modules/actions/add-record/customizeAddRecordActionSettings.js +69 -0
  433. package/es/modules/actions/add-record/customizeCreateFormBlockInitializers.js +70 -0
  434. package/es/modules/actions/bulk-destroy/BulkDestroyActionInitializer.js +69 -0
  435. package/es/modules/actions/bulk-destroy/bulkDeleteActionSettings.js +64 -0
  436. package/es/modules/actions/delete/DestroyActionInitializer.js +62 -0
  437. package/es/modules/actions/delete/deleteActionSettings.js +73 -0
  438. package/es/modules/actions/disassociate/DisassociateActionInitializer.js +62 -0
  439. package/es/modules/actions/disassociate/__e2e__/disassociate.test.js +46 -0
  440. package/es/modules/actions/disassociate/__e2e__/templatesOfPage.js +419 -0
  441. package/es/modules/actions/disassociate/disassociateActionSettings.js +73 -0
  442. package/es/modules/actions/expand-collapse/ExpandableActionInitializer.js +60 -0
  443. package/es/modules/actions/expand-collapse/expendableActionSettings.js +152 -0
  444. package/es/modules/actions/filter/FilterActionInitializer.js +56 -0
  445. package/es/modules/actions/filter/filterActionSettings.js +117 -0
  446. package/es/modules/actions/link/customizeLinkActionSettings.js +156 -0
  447. package/es/modules/actions/link/hooks.js +233 -0
  448. package/es/modules/actions/refresh/RefreshActionInitializer.js +55 -0
  449. package/es/modules/actions/refresh/refreshActionSettings.js +64 -0
  450. package/es/modules/actions/save-record/SaveRecordActionInitializer.js +68 -0
  451. package/es/modules/actions/save-record/customizeSaveRecordActionSettings.js +86 -0
  452. package/es/modules/actions/submit/CreateSubmitActionInitializer.js +61 -0
  453. package/es/modules/actions/submit/UpdateSubmitActionInitializer.js +65 -0
  454. package/es/modules/actions/submit/createSubmitActionSettings.js +245 -0
  455. package/es/modules/actions/submit/updateSubmitActionSettings.js +124 -0
  456. package/es/modules/actions/update-record/UpdateRecordActionInitializer.js +66 -0
  457. package/es/modules/actions/update-record/customizeUpdateRecordActionSettings.js +96 -0
  458. package/es/modules/actions/view-edit-popup/PopupActionInitializer.js +93 -0
  459. package/es/modules/actions/view-edit-popup/RecordFormBlockInitializers.js +69 -0
  460. package/es/modules/actions/view-edit-popup/UpdateActionInitializer.js +91 -0
  461. package/es/modules/actions/view-edit-popup/ViewActionInitializer.js +90 -0
  462. package/es/modules/actions/view-edit-popup/customizePopupActionSettings.js +83 -0
  463. package/es/modules/actions/view-edit-popup/editActionSettings.js +78 -0
  464. package/es/modules/actions/view-edit-popup/viewActionSettings.js +83 -0
  465. package/es/modules/blocks/BlockSchemaToolbar.js +90 -0
  466. package/es/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.js +74 -0
  467. package/es/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.js +84 -0
  468. package/es/modules/blocks/data-blocks/details-multi/__e2e__/schemaInitializer.test.js +119 -0
  469. package/es/modules/blocks/data-blocks/details-multi/__e2e__/schemaSettings.test.js +79 -0
  470. package/es/modules/blocks/data-blocks/details-multi/__e2e__/templatesOfBug.js +6 -0
  471. package/es/modules/blocks/data-blocks/details-multi/__tests__/createDetailsBlockWithPagingUISchema.test.js +21 -0
  472. package/es/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.js +92 -0
  473. package/es/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.js +251 -0
  474. package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.js +43 -0
  475. package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.js +39 -0
  476. package/es/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.js +123 -0
  477. package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.js +119 -0
  478. package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.js +120 -0
  479. package/es/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.js +108 -0
  480. package/es/modules/blocks/data-blocks/details-single/__e2e__/schemaInitializer.test.js +105 -0
  481. package/es/modules/blocks/data-blocks/details-single/__e2e__/schemaSettings.test.js +31 -0
  482. package/es/modules/blocks/data-blocks/details-single/__e2e__/templatesOfBug.js +6 -0
  483. package/es/modules/blocks/data-blocks/details-single/__tests__/createDetailsBlockWithoutPagingUISchema.test.js +21 -0
  484. package/es/modules/blocks/data-blocks/details-single/createDetailsUISchema.js +88 -0
  485. package/es/modules/blocks/data-blocks/details-single/detailsBlockSettings.js +84 -0
  486. package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.js +56 -0
  487. package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.js +39 -0
  488. package/es/modules/blocks/data-blocks/form/CreateFormBlockInitializer.js +82 -0
  489. package/es/modules/blocks/data-blocks/form/FilterItemCustomSettings.js +327 -0
  490. package/es/modules/blocks/data-blocks/form/FormBlockInitializer.js +114 -0
  491. package/es/modules/blocks/data-blocks/form/FormItemSchemaToolbar.js +43 -0
  492. package/es/modules/blocks/data-blocks/form/RecordFormBlockInitializer.js +119 -0
  493. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/associationForm.test.js +21 -0
  494. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/dragAndDrop.test.js +33 -0
  495. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadAssociationFields.test.js +175 -0
  496. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadVariables.test.js +35 -0
  497. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/schemaInitializer.test.js +148 -0
  498. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/schemaSettings.test.js +1261 -0
  499. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/templatesOfBug.js +6047 -0
  500. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaInitializer.test.js +23 -0
  501. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaSettings.test.js +219 -0
  502. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/templatesOfBug.js +6 -0
  503. package/es/modules/blocks/data-blocks/form/__tests__/createCreateFormBlockUISchema.test.js +26 -0
  504. package/es/modules/blocks/data-blocks/form/__tests__/createEditFormBlockUISchema.test.js +25 -0
  505. package/es/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.js +85 -0
  506. package/es/modules/blocks/data-blocks/form/createEditFormBlockUISchema.js +88 -0
  507. package/es/modules/blocks/data-blocks/form/createFormActionInitializers.js +79 -0
  508. package/es/modules/blocks/data-blocks/form/createFormBlockSettings.js +173 -0
  509. package/es/modules/blocks/data-blocks/form/editFormBlockSettings.js +106 -0
  510. package/es/modules/blocks/data-blocks/form/fieldSettingsFormItem.js +573 -0
  511. package/es/modules/blocks/data-blocks/form/formActionInitializers.js +79 -0
  512. package/es/modules/blocks/data-blocks/form/formItemInitializers.js +73 -0
  513. package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.js +43 -0
  514. package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.js +39 -0
  515. package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.js +49 -0
  516. package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.js +39 -0
  517. package/es/modules/blocks/data-blocks/form/index.js +182 -0
  518. package/es/modules/blocks/data-blocks/form/updateFormActionInitializers.js +90 -0
  519. package/es/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.js +119 -0
  520. package/es/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.js +78 -0
  521. package/es/modules/blocks/data-blocks/grid-card/__e2e__/schemaInitializer.test.js +227 -0
  522. package/es/modules/blocks/data-blocks/grid-card/__e2e__/schemaSettings.test.js +55 -0
  523. package/es/modules/blocks/data-blocks/grid-card/__e2e__/templatesOfBug.js +6 -0
  524. package/es/modules/blocks/data-blocks/grid-card/__tests__/createGridCardBlockSchema.test.js +33 -0
  525. package/es/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.js +109 -0
  526. package/es/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.js +479 -0
  527. package/es/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.js +134 -0
  528. package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.js +46 -0
  529. package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.js +51 -0
  530. package/es/modules/blocks/data-blocks/grid-card/utils.js +50 -0
  531. package/es/modules/blocks/data-blocks/list/ListActionInitializers.js +115 -0
  532. package/es/modules/blocks/data-blocks/list/ListBlockInitializer.js +78 -0
  533. package/es/modules/blocks/data-blocks/list/__e2e__/schemaInitializer.test.js +218 -0
  534. package/es/modules/blocks/data-blocks/list/__e2e__/schemaSettings.test.js +30 -0
  535. package/es/modules/blocks/data-blocks/list/__e2e__/templatesOfBug.js +6 -0
  536. package/es/modules/blocks/data-blocks/list/__tests__/createListBlockSchema.test.js +31 -0
  537. package/es/modules/blocks/data-blocks/list/createListBlockUISchema.js +104 -0
  538. package/es/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.js +43 -0
  539. package/es/modules/blocks/data-blocks/list/listBlockSettings.js +297 -0
  540. package/es/modules/blocks/data-blocks/list/listItemActionInitializers.js +134 -0
  541. package/es/modules/blocks/data-blocks/table/TableActionColumnInitializers.js +288 -0
  542. package/es/modules/blocks/data-blocks/table/TableActionInitializers.js +165 -0
  543. package/es/modules/blocks/data-blocks/table/TableBlockInitializer.js +78 -0
  544. package/es/modules/blocks/data-blocks/table/TableColumnInitializers.js +139 -0
  545. package/es/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.js +63 -0
  546. package/es/modules/blocks/data-blocks/table/__e2e__/actions/duplicate.test.js +16 -0
  547. package/es/modules/blocks/data-blocks/table/__e2e__/actions/filter.test.js +40 -0
  548. package/es/modules/blocks/data-blocks/table/__e2e__/checkboxForTableRow.test.js +26 -0
  549. package/es/modules/blocks/data-blocks/table/__e2e__/dragAndDrop.test.js +38 -0
  550. package/es/modules/blocks/data-blocks/table/__e2e__/schemaInitializer.test.js +426 -0
  551. package/es/modules/blocks/data-blocks/table/__e2e__/schemaSettings.test.js +876 -0
  552. package/es/modules/blocks/data-blocks/table/__e2e__/templatesOfBug.js +979 -0
  553. package/es/modules/blocks/data-blocks/table/__e2e__/tree/schemaSettings.test.js +49 -0
  554. package/es/modules/blocks/data-blocks/table/__tests__/createTableBLockSchema.test.js +23 -0
  555. package/es/modules/blocks/data-blocks/table/createTableBlockUISchema.js +116 -0
  556. package/es/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.js +70 -0
  557. package/es/modules/blocks/data-blocks/table/hooks/useTableBlockProps.js +185 -0
  558. package/es/modules/blocks/data-blocks/table/index.js +137 -0
  559. package/es/modules/blocks/data-blocks/table/tableBlockSettings.js +450 -0
  560. package/es/modules/blocks/data-blocks/table/tableColumnSettings.js +367 -0
  561. package/es/modules/blocks/data-blocks/table/utils.js +51 -0
  562. package/es/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.js +58 -0
  563. package/es/modules/blocks/data-blocks/table-selector/__e2e__/schemaInitializer.test.js +166 -0
  564. package/es/modules/blocks/data-blocks/table-selector/__e2e__/schemaSettings.test.js +153 -0
  565. package/es/modules/blocks/data-blocks/table-selector/__e2e__/templatesOfBug.js +728 -0
  566. package/es/modules/blocks/data-blocks/table-selector/__e2e__/utils.js +46 -0
  567. package/es/modules/blocks/data-blocks/table-selector/__tests__/createTableSelectorSchema.test.js +21 -0
  568. package/es/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.js +81 -0
  569. package/es/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.js +38 -0
  570. package/es/modules/blocks/data-blocks/table-selector/index.js +74 -0
  571. package/es/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.js +344 -0
  572. package/es/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.js +42 -0
  573. package/es/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.js +63 -0
  574. package/es/modules/blocks/filter-blocks/collapse/__e2e__/schemaInitializer.test.js +66 -0
  575. package/es/modules/blocks/filter-blocks/collapse/__e2e__/schemaSettings.test.js +69 -0
  576. package/es/modules/blocks/filter-blocks/collapse/__e2e__/templatesOfBug.js +6 -0
  577. package/es/modules/blocks/filter-blocks/collapse/__tests__/createCollapseBlockSchema.test.js +47 -0
  578. package/es/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.js +65 -0
  579. package/es/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.js +92 -0
  580. package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.js +261 -0
  581. package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.js +188 -0
  582. package/es/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.js +38 -0
  583. package/es/modules/blocks/filter-blocks/form/FilterFormActionInitializers.js +66 -0
  584. package/es/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.js +71 -0
  585. package/es/modules/blocks/filter-blocks/form/__e2e__/schemaInitializer.test.js +122 -0
  586. package/es/modules/blocks/filter-blocks/form/__e2e__/schemaSettings.test.js +105 -0
  587. package/es/modules/blocks/filter-blocks/form/__e2e__/templatesOfBug.js +6 -0
  588. package/es/modules/blocks/filter-blocks/form/__tests__/createFilterFormBlockSchema.test.js +30 -0
  589. package/es/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.js +80 -0
  590. package/es/modules/blocks/filter-blocks/form/filterFormBlockSettings.js +100 -0
  591. package/es/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.js +403 -0
  592. package/es/modules/blocks/filter-blocks/form/filterFormItemInitializers.js +75 -0
  593. package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.js +38 -0
  594. package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.js +39 -0
  595. package/es/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.js +66 -0
  596. package/es/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.js +108 -0
  597. package/es/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.js +100 -0
  598. package/es/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.js +403 -0
  599. package/es/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.js +75 -0
  600. package/es/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.js +64 -0
  601. package/es/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.js +60 -0
  602. package/es/modules/blocks/other-blocks/markdown/__e2e__/schemaInitializer.test.js +17 -0
  603. package/es/modules/blocks/other-blocks/markdown/__e2e__/schemaSettings.test.js +40 -0
  604. package/es/modules/blocks/other-blocks/markdown/__e2e__/templatesOfBug.js +6 -0
  605. package/es/modules/blocks/other-blocks/markdown/markdownBlockSettings.js +73 -0
  606. package/es/modules/blocks/useParentRecordCommon.js +41 -0
  607. package/es/modules/blocks/useSourceId.js +46 -0
  608. package/es/modules/blocks/useSourceKey.js +40 -0
  609. package/es/modules/dialog/__e2e__/schemaInitializer.test.js +395 -0
  610. package/es/modules/dialog/__e2e__/schemaSettings.test.js +66 -0
  611. package/es/modules/dialog/__e2e__/templatesOfBug.js +2161 -0
  612. package/es/modules/dialog/__e2e__/zIndex.test.js +42 -0
  613. package/es/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.js +125 -0
  614. package/es/modules/fields/component/Cascader/cascaderComponentFieldSettings.js +430 -0
  615. package/es/modules/fields/component/Checkbox/checkboxComponentFieldSettings.js +87 -0
  616. package/es/modules/fields/component/DatePicker/__e2e__/schemaSettings.test.js +109 -0
  617. package/es/modules/fields/component/DatePicker/__e2e__/utils.js +358 -0
  618. package/es/modules/fields/component/DatePicker/datePickerComponentFieldSettings.js +56 -0
  619. package/es/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.js +183 -0
  620. package/es/modules/fields/component/FileManager/fileManagerComponentFieldSettings.js +224 -0
  621. package/es/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.js +136 -0
  622. package/es/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.js +61 -0
  623. package/es/modules/fields/component/Nester/subformComponentFieldSettings.js +159 -0
  624. package/es/modules/fields/component/Picker/TableSelectorInitializers.js +120 -0
  625. package/es/modules/fields/component/Picker/recordPickerComponentFieldSettings.js +225 -0
  626. package/es/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.js +133 -0
  627. package/es/modules/fields/component/Radio/radioComponentFieldSettings.js +87 -0
  628. package/es/modules/fields/component/Select/selectComponentFieldSettings.js +427 -0
  629. package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.js +443 -0
  630. package/es/modules/fields/component/Tag/tagComponentFieldSettings.js +206 -0
  631. package/es/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.js +56 -0
  632. package/es/modules/fields/initializer/CollectionFieldInitializer.js +49 -0
  633. package/es/modules/fields/initializer/TableCollectionFieldInitializer.js +49 -0
  634. package/es/modules/menu/GroupItem.js +112 -0
  635. package/es/modules/menu/LinkMenuItem.js +118 -0
  636. package/es/modules/menu/PageMenuItem.js +127 -0
  637. package/es/modules/menu/__e2e__/dragAndDrop.test.js +34 -0
  638. package/es/modules/menu/__e2e__/schemaInitializer.test.js +108 -0
  639. package/es/modules/menu/__e2e__/schemaSettings.test.js +354 -0
  640. package/es/modules/menu/__e2e__/templatesOfBug.js +6 -0
  641. package/es/modules/menu/menuItemInitializer.js +83 -0
  642. package/es/modules/page/BlockInitializers.js +111 -0
  643. package/es/modules/page/__e2e__/blockInitializers.test.js +24 -0
  644. package/es/modules/page/__e2e__/dragAndDrop.test.js +23 -0
  645. package/es/modules/page/__e2e__/schemaInitailizer.test.js +22 -0
  646. package/es/modules/page/__e2e__/schemaSettings.test.js +141 -0
  647. package/es/modules/page/__e2e__/templatesOfBug.js +6 -0
  648. package/es/modules/plugin-manager/__e2e__/pluginManager.test.js +120 -0
  649. package/es/modules/plugin-manager/__e2e__/templatesOfBug.js +6 -0
  650. package/es/modules/user-center/__e2e__/settings.test.js +19 -0
  651. package/es/modules/variable/DeclareVariable.js +51 -0
  652. package/es/modules/variable/useVariable.js +46 -0
  653. package/es/powered-by/index.js +77 -0
  654. package/es/record-provider/index.js +92 -0
  655. package/es/route-switch/RouteSchemaComponent.js +46 -0
  656. package/es/route-switch/index.js +65 -0
  657. package/es/schema-component/antd/AntdSchemaComponentProvider.js +73 -0
  658. package/es/schema-component/antd/__builtins__/hooks/index.js +83 -0
  659. package/es/schema-component/antd/__builtins__/hooks/useConfig.js +39 -0
  660. package/es/schema-component/antd/__builtins__/hooks/usePrefixCls.js +46 -0
  661. package/es/schema-component/antd/__builtins__/hooks/useToken.js +40 -0
  662. package/es/schema-component/antd/__builtins__/index.js +92 -0
  663. package/es/schema-component/antd/__builtins__/loading.js +49 -0
  664. package/es/schema-component/antd/__builtins__/portal.js +86 -0
  665. package/es/schema-component/antd/__builtins__/render.js +82 -0
  666. package/es/schema-component/antd/__builtins__/style.js +100 -0
  667. package/es/schema-component/antd/action/Action.Area.js +155 -0
  668. package/es/schema-component/antd/action/Action.Area.style.js +74 -0
  669. package/es/schema-component/antd/action/Action.Container.js +77 -0
  670. package/es/schema-component/antd/action/Action.Designer.js +957 -0
  671. package/es/schema-component/antd/action/Action.Drawer.js +186 -0
  672. package/es/schema-component/antd/action/Action.Drawer.style.js +80 -0
  673. package/es/schema-component/antd/action/Action.Link.js +63 -0
  674. package/es/schema-component/antd/action/Action.Modal.js +222 -0
  675. package/es/schema-component/antd/action/Action.Page.js +118 -0
  676. package/es/schema-component/antd/action/Action.Popover.js +6 -0
  677. package/es/schema-component/antd/action/Action.Sheet.js +130 -0
  678. package/es/schema-component/antd/action/Action.js +280 -0
  679. package/es/schema-component/antd/action/Action.style.js +81 -0
  680. package/es/schema-component/antd/action/ActionBar.js +179 -0
  681. package/es/schema-component/antd/action/__tests__/action.test.js +154 -0
  682. package/es/schema-component/antd/action/context.js +52 -0
  683. package/es/schema-component/antd/action/demos/demo1.js +104 -0
  684. package/es/schema-component/antd/action/demos/demo2.js +109 -0
  685. package/es/schema-component/antd/action/demos/demo3.js +175 -0
  686. package/es/schema-component/antd/action/demos/demo4.js +92 -0
  687. package/es/schema-component/antd/action/demos/demo5.js +245 -0
  688. package/es/schema-component/antd/action/demos/demo6.js +129 -0
  689. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfAction.js +71 -0
  690. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.js +59 -0
  691. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfModal.js +59 -0
  692. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.js +59 -0
  693. package/es/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.js +64 -0
  694. package/es/schema-component/antd/action/hooks/useSetAriaLabelForModal.js +64 -0
  695. package/es/schema-component/antd/action/hooks/useSetAriaLabelForPopover.js +56 -0
  696. package/es/schema-component/antd/action/hooks.js +97 -0
  697. package/es/schema-component/antd/action/index.js +146 -0
  698. package/es/schema-component/antd/action/types.js +19 -0
  699. package/es/schema-component/antd/action/utils.js +249 -0
  700. package/es/schema-component/antd/appends-tree-select/AppendsTreeSelect.js +250 -0
  701. package/es/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.js +249 -0
  702. package/es/schema-component/antd/appends-tree-select/index.js +74 -0
  703. package/es/schema-component/antd/association-cascader/AssociationCascader.js +171 -0
  704. package/es/schema-component/antd/association-cascader/index.js +65 -0
  705. package/es/schema-component/antd/association-field/AssociationFieldProvider.js +159 -0
  706. package/es/schema-component/antd/association-field/AssociationSelect.js +222 -0
  707. package/es/schema-component/antd/association-field/Editable.js +151 -0
  708. package/es/schema-component/antd/association-field/FileManager.js +250 -0
  709. package/es/schema-component/antd/association-field/InternalCascadeSelect.js +444 -0
  710. package/es/schema-component/antd/association-field/InternalCascader.js +415 -0
  711. package/es/schema-component/antd/association-field/InternalDrawerSubTable.js +133 -0
  712. package/es/schema-component/antd/association-field/InternalNester.js +129 -0
  713. package/es/schema-component/antd/association-field/InternalPicker.js +277 -0
  714. package/es/schema-component/antd/association-field/InternalPopoverNester.js +165 -0
  715. package/es/schema-component/antd/association-field/InternalSubTable.js +140 -0
  716. package/es/schema-component/antd/association-field/InternalTag.js +170 -0
  717. package/es/schema-component/antd/association-field/InternalViewer.js +185 -0
  718. package/es/schema-component/antd/association-field/Nester.js +295 -0
  719. package/es/schema-component/antd/association-field/ReadPretty.js +81 -0
  720. package/es/schema-component/antd/association-field/SubTable.js +312 -0
  721. package/es/schema-component/antd/association-field/SubTabs/InternalCollapse.js +371 -0
  722. package/es/schema-component/antd/association-field/SubTabs/hook.js +101 -0
  723. package/es/schema-component/antd/association-field/SubTabs/index.js +65 -0
  724. package/es/schema-component/antd/association-field/SubTabs/styles.js +59 -0
  725. package/es/schema-component/antd/association-field/components/CreateRecordAction.js +103 -0
  726. package/es/schema-component/antd/association-field/context.js +38 -0
  727. package/es/schema-component/antd/association-field/hooks.js +204 -0
  728. package/es/schema-component/antd/association-field/index.js +109 -0
  729. package/es/schema-component/antd/association-field/schema.js +167 -0
  730. package/es/schema-component/antd/association-field/util.js +158 -0
  731. package/es/schema-component/antd/association-filter/ActionBarAssociationFilterAction.js +88 -0
  732. package/es/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.js +74 -0
  733. package/es/schema-component/antd/association-filter/AssociationFilter.Initializer.js +89 -0
  734. package/es/schema-component/antd/association-filter/AssociationFilter.Item.Designer.js +182 -0
  735. package/es/schema-component/antd/association-filter/AssociationFilter.Item.js +180 -0
  736. package/es/schema-component/antd/association-filter/AssociationFilter.Item.style.js +135 -0
  737. package/es/schema-component/antd/association-filter/AssociationFilter.js +125 -0
  738. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDelete.js +65 -0
  739. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.js +57 -0
  740. package/es/schema-component/antd/association-filter/utilts.js +38 -0
  741. package/es/schema-component/antd/association-select/AssociationSelect.js +915 -0
  742. package/es/schema-component/antd/association-select/ReadPretty.js +65 -0
  743. package/es/schema-component/antd/association-select/__tests__/association-select.test.js +51 -0
  744. package/es/schema-component/antd/association-select/demos/demo1.js +89 -0
  745. package/es/schema-component/antd/association-select/index.js +65 -0
  746. package/es/schema-component/antd/association-select/useServiceOptions.js +116 -0
  747. package/es/schema-component/antd/auto-complete/AutoComplete.js +92 -0
  748. package/es/schema-component/antd/auto-complete/index.js +65 -0
  749. package/es/schema-component/antd/block-item/BlockItem.js +97 -0
  750. package/es/schema-component/antd/block-item/BlockToolbar.js +125 -0
  751. package/es/schema-component/antd/block-item/__tests__/block-item.test.js +49 -0
  752. package/es/schema-component/antd/block-item/demos/demo1.js +94 -0
  753. package/es/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.js +87 -0
  754. package/es/schema-component/antd/block-item/index.js +65 -0
  755. package/es/schema-component/antd/block-item/useBlockToolbar.js +132 -0
  756. package/es/schema-component/antd/card-item/CardItem.js +73 -0
  757. package/es/schema-component/antd/card-item/__tests__/card-item.test.js +46 -0
  758. package/es/schema-component/antd/card-item/demos/demo1.js +65 -0
  759. package/es/schema-component/antd/card-item/index.js +65 -0
  760. package/es/schema-component/antd/card-item/style.js +59 -0
  761. package/es/schema-component/antd/cascader/Cascader.js +108 -0
  762. package/es/schema-component/antd/cascader/ReadPretty.js +64 -0
  763. package/es/schema-component/antd/cascader/__tests__/cascader.test.js +65 -0
  764. package/es/schema-component/antd/cascader/defaultFieldNames.js +42 -0
  765. package/es/schema-component/antd/cascader/demos/demo1.js +116 -0
  766. package/es/schema-component/antd/cascader/demos/demo2.js +163 -0
  767. package/es/schema-component/antd/cascader/index.js +65 -0
  768. package/es/schema-component/antd/checkbox/Checkbox.js +134 -0
  769. package/es/schema-component/antd/checkbox/__tests__/checkbox.test.js +76 -0
  770. package/es/schema-component/antd/checkbox/demos/checkbox.group.js +88 -0
  771. package/es/schema-component/antd/checkbox/demos/checkbox.js +74 -0
  772. package/es/schema-component/antd/checkbox/index.js +65 -0
  773. package/es/schema-component/antd/collection-select/CollectionSelect.js +182 -0
  774. package/es/schema-component/antd/collection-select/__tests__/collection-select.test.js +51 -0
  775. package/es/schema-component/antd/collection-select/demos/demo1.js +70 -0
  776. package/es/schema-component/antd/collection-select/index.js +65 -0
  777. package/es/schema-component/antd/color-picker/ColorPicker.js +135 -0
  778. package/es/schema-component/antd/color-picker/ReadPretty.js +67 -0
  779. package/es/schema-component/antd/color-picker/demos/demo1.js +83 -0
  780. package/es/schema-component/antd/color-picker/index.js +65 -0
  781. package/es/schema-component/antd/color-picker/util.js +195 -0
  782. package/es/schema-component/antd/color-select/ColorSelect.js +83 -0
  783. package/es/schema-component/antd/color-select/__tests__/color-select.test.js +51 -0
  784. package/es/schema-component/antd/color-select/demos/demo1.js +74 -0
  785. package/es/schema-component/antd/color-select/index.js +65 -0
  786. package/es/schema-component/antd/cron/Cron.js +117 -0
  787. package/es/schema-component/antd/cron/CronSet.js +154 -0
  788. package/es/schema-component/antd/cron/__tests__/cron-set.test.js +66 -0
  789. package/es/schema-component/antd/cron/demos/demo1.js +66 -0
  790. package/es/schema-component/antd/cron/demos/demo2.js +85 -0
  791. package/es/schema-component/antd/cron/index.js +74 -0
  792. package/es/schema-component/antd/custom-cascader/CustomCascader.js +69 -0
  793. package/es/schema-component/antd/custom-cascader/ReadPretty.js +64 -0
  794. package/es/schema-component/antd/custom-cascader/defaultFieldNames.js +42 -0
  795. package/es/schema-component/antd/custom-cascader/index.js +65 -0
  796. package/es/schema-component/antd/date-picker/DatePicker.js +196 -0
  797. package/es/schema-component/antd/date-picker/ReadPretty.js +87 -0
  798. package/es/schema-component/antd/date-picker/__tests__/date-picker.test.js +222 -0
  799. package/es/schema-component/antd/date-picker/__tests__/getDateRanges.test.js +145 -0
  800. package/es/schema-component/antd/date-picker/__tests__/mapDatePicker.test.js +235 -0
  801. package/es/schema-component/antd/date-picker/__tests__/mapRangePicker.test.js +94 -0
  802. package/es/schema-component/antd/date-picker/__tests__/util.test.js +201 -0
  803. package/es/schema-component/antd/date-picker/demos/demo1.js +91 -0
  804. package/es/schema-component/antd/date-picker/demos/demo10.js +95 -0
  805. package/es/schema-component/antd/date-picker/demos/demo11.js +99 -0
  806. package/es/schema-component/antd/date-picker/demos/demo2.js +94 -0
  807. package/es/schema-component/antd/date-picker/demos/demo3.js +92 -0
  808. package/es/schema-component/antd/date-picker/demos/demo4.js +120 -0
  809. package/es/schema-component/antd/date-picker/demos/demo5.js +119 -0
  810. package/es/schema-component/antd/date-picker/demos/demo6.js +119 -0
  811. package/es/schema-component/antd/date-picker/demos/demo7.js +95 -0
  812. package/es/schema-component/antd/date-picker/demos/demo8.js +95 -0
  813. package/es/schema-component/antd/date-picker/demos/demo9.js +95 -0
  814. package/es/schema-component/antd/date-picker/index.js +65 -0
  815. package/es/schema-component/antd/date-picker/util.js +216 -0
  816. package/es/schema-component/antd/details/Details.js +66 -0
  817. package/es/schema-component/antd/details/__tests__/details.test.js +45 -0
  818. package/es/schema-component/antd/details/demos/demo1.js +76 -0
  819. package/es/schema-component/antd/details/index.js +65 -0
  820. package/es/schema-component/antd/error-fallback/ErrorFallback.js +93 -0
  821. package/es/schema-component/antd/error-fallback/__tests__/error-fallback.test.js +52 -0
  822. package/es/schema-component/antd/error-fallback/demos/demo1.js +47 -0
  823. package/es/schema-component/antd/error-fallback/index.js +65 -0
  824. package/es/schema-component/antd/expand-action/Expand.Action.Design.js +141 -0
  825. package/es/schema-component/antd/expand-action/Expand.Action.js +104 -0
  826. package/es/schema-component/antd/expand-action/index.js +40 -0
  827. package/es/schema-component/antd/filter/DynamicComponent.js +106 -0
  828. package/es/schema-component/antd/filter/Filter.Action.Designer.js +157 -0
  829. package/es/schema-component/antd/filter/Filter.js +90 -0
  830. package/es/schema-component/antd/filter/FilterAction.js +199 -0
  831. package/es/schema-component/antd/filter/FilterGroup.js +168 -0
  832. package/es/schema-component/antd/filter/FilterItem.js +119 -0
  833. package/es/schema-component/antd/filter/FilterItems.js +58 -0
  834. package/es/schema-component/antd/filter/SaveDefaultValue.js +70 -0
  835. package/es/schema-component/antd/filter/__tests__/filter.test.js +152 -0
  836. package/es/schema-component/antd/filter/context.js +44 -0
  837. package/es/schema-component/antd/filter/demos/demo2.js +163 -0
  838. package/es/schema-component/antd/filter/demos/demo3.js +230 -0
  839. package/es/schema-component/antd/filter/demos/demo4.js +218 -0
  840. package/es/schema-component/antd/filter/demos/demo5.js +165 -0
  841. package/es/schema-component/antd/filter/demos/demo6.js +152 -0
  842. package/es/schema-component/antd/filter/index.js +83 -0
  843. package/es/schema-component/antd/filter/useFilterActionProps.js +269 -0
  844. package/es/schema-component/antd/filter/useOperators.js +57 -0
  845. package/es/schema-component/antd/filter/useValues.js +172 -0
  846. package/es/schema-component/antd/filter/utils.js +49 -0
  847. package/es/schema-component/antd/form/Form.Designer.js +46 -0
  848. package/es/schema-component/antd/form/Form.Settings.js +68 -0
  849. package/es/schema-component/antd/form/Form.js +182 -0
  850. package/es/schema-component/antd/form/__tests__/form.test.js +155 -0
  851. package/es/schema-component/antd/form/demos/apiClient.js +65 -0
  852. package/es/schema-component/antd/form/demos/demo1.js +107 -0
  853. package/es/schema-component/antd/form/demos/demo2.js +107 -0
  854. package/es/schema-component/antd/form/demos/demo3.js +106 -0
  855. package/es/schema-component/antd/form/demos/demo4.js +114 -0
  856. package/es/schema-component/antd/form/demos/demo5.js +148 -0
  857. package/es/schema-component/antd/form/demos/demo6.js +105 -0
  858. package/es/schema-component/antd/form/demos/demo7.js +109 -0
  859. package/es/schema-component/antd/form/demos/demo8.js +120 -0
  860. package/es/schema-component/antd/form/index.js +74 -0
  861. package/es/schema-component/antd/form-dialog/index.js +203 -0
  862. package/es/schema-component/antd/form-item/FormItem.FilterFormDesigner.js +41 -0
  863. package/es/schema-component/antd/form-item/FormItem.FilterFormSettings.js +176 -0
  864. package/es/schema-component/antd/form-item/FormItem.Settings.js +1261 -0
  865. package/es/schema-component/antd/form-item/FormItem.js +185 -0
  866. package/es/schema-component/antd/form-item/SchemaSettingOptions.js +621 -0
  867. package/es/schema-component/antd/form-item/__tests__/form-item.test.js +47 -0
  868. package/es/schema-component/antd/form-item/__tests__/hooks/useSpecialCase.test.js +34 -0
  869. package/es/schema-component/antd/form-item/__tests__/utils.test.js +72 -0
  870. package/es/schema-component/antd/form-item/demos/demo1.js +71 -0
  871. package/es/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.js +117 -0
  872. package/es/schema-component/antd/form-item/hooks/useParseDefaultValue.js +132 -0
  873. package/es/schema-component/antd/form-item/hooks/useSpecialCase.js +159 -0
  874. package/es/schema-component/antd/form-item/index.js +92 -0
  875. package/es/schema-component/antd/form-item/utils.js +56 -0
  876. package/es/schema-component/antd/form-tab/index.js +189 -0
  877. package/es/schema-component/antd/form-v2/Form.Designer.js +69 -0
  878. package/es/schema-component/antd/form-v2/Form.FilterDesigner.js +49 -0
  879. package/es/schema-component/antd/form-v2/Form.Settings.js +351 -0
  880. package/es/schema-component/antd/form-v2/Form.js +364 -0
  881. package/es/schema-component/antd/form-v2/FormField.js +64 -0
  882. package/es/schema-component/antd/form-v2/Templates.js +240 -0
  883. package/es/schema-component/antd/form-v2/__tests__/form-v2.test.js +84 -0
  884. package/es/schema-component/antd/form-v2/demos/collections.js +1601 -0
  885. package/es/schema-component/antd/form-v2/demos/demo1.js +156 -0
  886. package/es/schema-component/antd/form-v2/demos/demo2.js +179 -0
  887. package/es/schema-component/antd/form-v2/demos/demo3.js +165 -0
  888. package/es/schema-component/antd/form-v2/index.js +115 -0
  889. package/es/schema-component/antd/form-v2/utils.js +192 -0
  890. package/es/schema-component/antd/grid/Block.js +58 -0
  891. package/es/schema-component/antd/grid/Grid.js +533 -0
  892. package/es/schema-component/antd/grid/Grid.style.js +79 -0
  893. package/es/schema-component/antd/grid/__tests__/grid.test.js +63 -0
  894. package/es/schema-component/antd/grid/demos/demo1.js +228 -0
  895. package/es/schema-component/antd/grid/demos/demo2.js +131 -0
  896. package/es/schema-component/antd/grid/demos/demo3.js +118 -0
  897. package/es/schema-component/antd/grid/index.js +74 -0
  898. package/es/schema-component/antd/grid-card/GridCard.Decorator.js +118 -0
  899. package/es/schema-component/antd/grid-card/GridCard.Decorator.style.js +58 -0
  900. package/es/schema-component/antd/grid-card/GridCard.Designer.js +300 -0
  901. package/es/schema-component/antd/grid-card/GridCard.Item.js +111 -0
  902. package/es/schema-component/antd/grid-card/GridCard.js +204 -0
  903. package/es/schema-component/antd/grid-card/__tests__/grid-card.test.js +44 -0
  904. package/es/schema-component/antd/grid-card/demos/demo1.js +40 -0
  905. package/es/schema-component/antd/grid-card/hooks.js +74 -0
  906. package/es/schema-component/antd/grid-card/index.js +65 -0
  907. package/es/schema-component/antd/grid-card/options.js +83 -0
  908. package/es/schema-component/antd/icon-picker/IconFilterInput.js +65 -0
  909. package/es/schema-component/antd/icon-picker/IconList.js +84 -0
  910. package/es/schema-component/antd/icon-picker/IconPicker.js +109 -0
  911. package/es/schema-component/antd/icon-picker/__tests__/icon-picker.test.js +60 -0
  912. package/es/schema-component/antd/icon-picker/demos/icon-picker.js +74 -0
  913. package/es/schema-component/antd/icon-picker/index.js +65 -0
  914. package/es/schema-component/antd/index.js +881 -0
  915. package/es/schema-component/antd/input/EllipsisWithTooltip.js +98 -0
  916. package/es/schema-component/antd/input/Input.js +62 -0
  917. package/es/schema-component/antd/input/Json.js +108 -0
  918. package/es/schema-component/antd/input/ReadPretty.js +201 -0
  919. package/es/schema-component/antd/input/__tests__/Input.test.js +153 -0
  920. package/es/schema-component/antd/input/demos/input.js +74 -0
  921. package/es/schema-component/antd/input/demos/json.js +80 -0
  922. package/es/schema-component/antd/input/demos/textarea.js +102 -0
  923. package/es/schema-component/antd/input/demos/url.js +76 -0
  924. package/es/schema-component/antd/input/index.js +101 -0
  925. package/es/schema-component/antd/input/shared.js +44 -0
  926. package/es/schema-component/antd/input-number/InputNumber.js +54 -0
  927. package/es/schema-component/antd/input-number/ReadPretty.js +153 -0
  928. package/es/schema-component/antd/input-number/__tests__/input-number.test.js +153 -0
  929. package/es/schema-component/antd/input-number/demos/addonBefore&addonAfter.js +82 -0
  930. package/es/schema-component/antd/input-number/demos/highPrecisionDecimals.js +84 -0
  931. package/es/schema-component/antd/input-number/demos/inputNumber.js +74 -0
  932. package/es/schema-component/antd/input-number/index.js +65 -0
  933. package/es/schema-component/antd/list/List.Decorator.js +145 -0
  934. package/es/schema-component/antd/list/List.Designer.js +254 -0
  935. package/es/schema-component/antd/list/List.Item.js +101 -0
  936. package/es/schema-component/antd/list/List.js +129 -0
  937. package/es/schema-component/antd/list/List.style.js +89 -0
  938. package/es/schema-component/antd/list/__tests__/list.test.js +44 -0
  939. package/es/schema-component/antd/list/demos/demo1.js +40 -0
  940. package/es/schema-component/antd/list/hooks.js +47 -0
  941. package/es/schema-component/antd/list/index.js +65 -0
  942. package/es/schema-component/antd/markdown/Markdown.Void.Designer.js +61 -0
  943. package/es/schema-component/antd/markdown/Markdown.Void.js +158 -0
  944. package/es/schema-component/antd/markdown/Markdown.js +82 -0
  945. package/es/schema-component/antd/markdown/__tests__/markdown.test.js +63 -0
  946. package/es/schema-component/antd/markdown/demos/demo1.js +74 -0
  947. package/es/schema-component/antd/markdown/demos/demo2.js +85 -0
  948. package/es/schema-component/antd/markdown/index.js +65 -0
  949. package/es/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.js +99 -0
  950. package/es/schema-component/antd/markdown/md.js +63 -0
  951. package/es/schema-component/antd/markdown/style.js +254 -0
  952. package/es/schema-component/antd/markdown/util.js +88 -0
  953. package/es/schema-component/antd/menu/Menu.Designer.js +469 -0
  954. package/es/schema-component/antd/menu/Menu.js +625 -0
  955. package/es/schema-component/antd/menu/Menu.styles.js +111 -0
  956. package/es/schema-component/antd/menu/MenuItemInitializers/index.js +45 -0
  957. package/es/schema-component/antd/menu/__tests__/menu.test.js +75 -0
  958. package/es/schema-component/antd/menu/demos/demo1.js +127 -0
  959. package/es/schema-component/antd/menu/demos/demo2.js +130 -0
  960. package/es/schema-component/antd/menu/demos/demo3.js +169 -0
  961. package/es/schema-component/antd/menu/index.js +83 -0
  962. package/es/schema-component/antd/menu/locale.js +37 -0
  963. package/es/schema-component/antd/menu/util.js +70 -0
  964. package/es/schema-component/antd/nanoIDInput/NanoIDInput.js +67 -0
  965. package/es/schema-component/antd/nanoIDInput/index.js +65 -0
  966. package/es/schema-component/antd/page/FixedBlock.js +147 -0
  967. package/es/schema-component/antd/page/FixedBlockDesignerItem.js +74 -0
  968. package/es/schema-component/antd/page/Page.Settings.js +181 -0
  969. package/es/schema-component/antd/page/Page.js +269 -0
  970. package/es/schema-component/antd/page/PageTab.Settings.js +122 -0
  971. package/es/schema-component/antd/page/PageTabDesigner.js +99 -0
  972. package/es/schema-component/antd/page/__tests__/page.test.js +53 -0
  973. package/es/schema-component/antd/page/demos/demo1.js +72 -0
  974. package/es/schema-component/antd/page/hooks/useIsBlockInPage.js +46 -0
  975. package/es/schema-component/antd/page/index.js +101 -0
  976. package/es/schema-component/antd/page/style.js +177 -0
  977. package/es/schema-component/antd/pagination/index.js +56 -0
  978. package/es/schema-component/antd/password/Password.js +115 -0
  979. package/es/schema-component/antd/password/PasswordStrength.js +45 -0
  980. package/es/schema-component/antd/password/__tests__/password.test.js +64 -0
  981. package/es/schema-component/antd/password/__tests__/utils.test.js +28 -0
  982. package/es/schema-component/antd/password/demos/demo1.js +74 -0
  983. package/es/schema-component/antd/password/demos/demo2.js +77 -0
  984. package/es/schema-component/antd/password/index.js +65 -0
  985. package/es/schema-component/antd/password/utils.js +140 -0
  986. package/es/schema-component/antd/percent/Percent.js +68 -0
  987. package/es/schema-component/antd/percent/__tests__/percent.test.js +51 -0
  988. package/es/schema-component/antd/percent/demos/percent.js +74 -0
  989. package/es/schema-component/antd/percent/index.js +65 -0
  990. package/es/schema-component/antd/popover/Popover.js +73 -0
  991. package/es/schema-component/antd/popover/index.js +65 -0
  992. package/es/schema-component/antd/preview/Preview.js +323 -0
  993. package/es/schema-component/antd/preview/__tests__/preview.test.js +46 -0
  994. package/es/schema-component/antd/preview/demos/demo1.js +129 -0
  995. package/es/schema-component/antd/preview/index.js +65 -0
  996. package/es/schema-component/antd/quick-edit/QuickEdit.js +164 -0
  997. package/es/schema-component/antd/quick-edit/index.js +65 -0
  998. package/es/schema-component/antd/radio/Radio.js +75 -0
  999. package/es/schema-component/antd/radio/__tests__/radio.test.js +80 -0
  1000. package/es/schema-component/antd/radio/demos/demo1.js +74 -0
  1001. package/es/schema-component/antd/radio/demos/demo2.js +86 -0
  1002. package/es/schema-component/antd/radio/demos/demo3.js +88 -0
  1003. package/es/schema-component/antd/radio/index.js +65 -0
  1004. package/es/schema-component/antd/record-picker/InputRecordPicker.js +289 -0
  1005. package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +154 -0
  1006. package/es/schema-component/antd/record-picker/RecordPicker.js +39 -0
  1007. package/es/schema-component/antd/record-picker/__tests__/record-picker.test.js +62 -0
  1008. package/es/schema-component/antd/record-picker/demos/demo1.js +223 -0
  1009. package/es/schema-component/antd/record-picker/demos/mockData.js +247 -0
  1010. package/es/schema-component/antd/record-picker/index.js +120 -0
  1011. package/es/schema-component/antd/record-picker/useFieldNames.js +46 -0
  1012. package/es/schema-component/antd/record-picker/util.js +87 -0
  1013. package/es/schema-component/antd/remote-select/ReadPretty.js +78 -0
  1014. package/es/schema-component/antd/remote-select/RemoteSelect.js +273 -0
  1015. package/es/schema-component/antd/remote-select/__tests__/remote-select.test.js +51 -0
  1016. package/es/schema-component/antd/remote-select/demos/demo1.js +89 -0
  1017. package/es/schema-component/antd/remote-select/index.js +65 -0
  1018. package/es/schema-component/antd/remote-select/shared.js +37 -0
  1019. package/es/schema-component/antd/rich-text/RichText.js +107 -0
  1020. package/es/schema-component/antd/rich-text/__tests__/rich-text.test.js +48 -0
  1021. package/es/schema-component/antd/rich-text/demos/demo1.js +75 -0
  1022. package/es/schema-component/antd/rich-text/index.js +65 -0
  1023. package/es/schema-component/antd/rich-text/style.js +847 -0
  1024. package/es/schema-component/antd/rich-text/style.js.LICENSE.txt +6 -0
  1025. package/es/schema-component/antd/scroll-area/ScrollArea.js +78 -0
  1026. package/es/schema-component/antd/scroll-area/index.js +65 -0
  1027. package/es/schema-component/antd/select/FormulaSelect.js +230 -0
  1028. package/es/schema-component/antd/select/ReadPretty.js +67 -0
  1029. package/es/schema-component/antd/select/Select.js +204 -0
  1030. package/es/schema-component/antd/select/__tests__/select.test.js +78 -0
  1031. package/es/schema-component/antd/select/__tests__/utils.test.js +136 -0
  1032. package/es/schema-component/antd/select/demos/demo1.js +106 -0
  1033. package/es/schema-component/antd/select/demos/demo2.js +110 -0
  1034. package/es/schema-component/antd/select/demos/demo3.js +118 -0
  1035. package/es/schema-component/antd/select/index.js +74 -0
  1036. package/es/schema-component/antd/select/utils.js +73 -0
  1037. package/es/schema-component/antd/space/index.js +68 -0
  1038. package/es/schema-component/antd/table/Table.Array.Designer.js +46 -0
  1039. package/es/schema-component/antd/table/Table.Array.js +342 -0
  1040. package/es/schema-component/antd/table/Table.Column.ActionBar.js +77 -0
  1041. package/es/schema-component/antd/table/Table.Column.Decorator.js +84 -0
  1042. package/es/schema-component/antd/table/Table.Column.Designer.js +192 -0
  1043. package/es/schema-component/antd/table/Table.Column.js +44 -0
  1044. package/es/schema-component/antd/table/Table.Designer.js +51 -0
  1045. package/es/schema-component/antd/table/Table.RowActionDesigner.js +67 -0
  1046. package/es/schema-component/antd/table/Table.RowSelection.js +63 -0
  1047. package/es/schema-component/antd/table/Table.Void.Designer.js +275 -0
  1048. package/es/schema-component/antd/table/Table.Void.js +153 -0
  1049. package/es/schema-component/antd/table/__tests__/table.test.js +59 -0
  1050. package/es/schema-component/antd/table/demos/demo1.js +97 -0
  1051. package/es/schema-component/antd/table/demos/demo2.js +97 -0
  1052. package/es/schema-component/antd/table/demos/demo3.js +97 -0
  1053. package/es/schema-component/antd/table/demos/demo4.js +251 -0
  1054. package/es/schema-component/antd/table/index.js +58 -0
  1055. package/es/schema-component/antd/table-v2/Table.ActionColumnDesigner.js +67 -0
  1056. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.js +84 -0
  1057. package/es/schema-component/antd/table-v2/Table.Column.Decorator.js +95 -0
  1058. package/es/schema-component/antd/table-v2/Table.Column.Designer.js +495 -0
  1059. package/es/schema-component/antd/table-v2/Table.Column.js +45 -0
  1060. package/es/schema-component/antd/table-v2/Table.Designer.js +51 -0
  1061. package/es/schema-component/antd/table-v2/Table.Index.js +44 -0
  1062. package/es/schema-component/antd/table-v2/Table.js +495 -0
  1063. package/es/schema-component/antd/table-v2/Table.styles.js +169 -0
  1064. package/es/schema-component/antd/table-v2/TableBlockDesigner.js +363 -0
  1065. package/es/schema-component/antd/table-v2/TableField.js +85 -0
  1066. package/es/schema-component/antd/table-v2/TableSelector.js +37 -0
  1067. package/es/schema-component/antd/table-v2/TableSelectorDesigner.js +320 -0
  1068. package/es/schema-component/antd/table-v2/__tests__/table-v2.test.js +49 -0
  1069. package/es/schema-component/antd/table-v2/components/ColumnFieldProvider.js +73 -0
  1070. package/es/schema-component/antd/table-v2/demos/collections.js +1596 -0
  1071. package/es/schema-component/antd/table-v2/demos/demo1.js +268 -0
  1072. package/es/schema-component/antd/table-v2/demos/demo2.js +151 -0
  1073. package/es/schema-component/antd/table-v2/index.js +143 -0
  1074. package/es/schema-component/antd/table-v2/utils.js +55 -0
  1075. package/es/schema-component/antd/tabs/Tabs.Designer.js +166 -0
  1076. package/es/schema-component/antd/tabs/Tabs.js +147 -0
  1077. package/es/schema-component/antd/tabs/__tests__/tabs.test.js +49 -0
  1078. package/es/schema-component/antd/tabs/context.js +61 -0
  1079. package/es/schema-component/antd/tabs/demos/demo1.js +101 -0
  1080. package/es/schema-component/antd/tabs/index.js +74 -0
  1081. package/es/schema-component/antd/time-picker/ReadPretty.js +70 -0
  1082. package/es/schema-component/antd/time-picker/TimePicker.js +57 -0
  1083. package/es/schema-component/antd/time-picker/__tests__/time-picker.test.js +81 -0
  1084. package/es/schema-component/antd/time-picker/demos/demo1.js +74 -0
  1085. package/es/schema-component/antd/time-picker/demos/demo2.js +74 -0
  1086. package/es/schema-component/antd/time-picker/index.js +65 -0
  1087. package/es/schema-component/antd/tree/Tree.js +116 -0
  1088. package/es/schema-component/antd/tree/index.js +36 -0
  1089. package/es/schema-component/antd/tree-select/ReadPretty.js +110 -0
  1090. package/es/schema-component/antd/tree-select/TreeSelect.js +49 -0
  1091. package/es/schema-component/antd/tree-select/__tests__/tree-select.test.js +49 -0
  1092. package/es/schema-component/antd/tree-select/demos/demo1.js +118 -0
  1093. package/es/schema-component/antd/tree-select/index.js +65 -0
  1094. package/es/schema-component/antd/unixTimestamp/UnixTimestamp.js +90 -0
  1095. package/es/schema-component/antd/unixTimestamp/index.js +65 -0
  1096. package/es/schema-component/antd/upload/ReadPretty.js +249 -0
  1097. package/es/schema-component/antd/upload/Upload.js +380 -0
  1098. package/es/schema-component/antd/upload/__tests__/upload.test.js +49 -0
  1099. package/es/schema-component/antd/upload/demos/apiClient.js +77 -0
  1100. package/es/schema-component/antd/upload/demos/demo1.js +96 -0
  1101. package/es/schema-component/antd/upload/demos/demo2.js +163 -0
  1102. package/es/schema-component/antd/upload/index.js +65 -0
  1103. package/es/schema-component/antd/upload/placeholder.js +99 -0
  1104. package/es/schema-component/antd/upload/shared.js +236 -0
  1105. package/es/schema-component/antd/upload/style.js +109 -0
  1106. package/es/schema-component/antd/upload/type.d.js +8 -0
  1107. package/es/schema-component/antd/variable/CodeMirror.js +132 -0
  1108. package/es/schema-component/antd/variable/Input.js +360 -0
  1109. package/es/schema-component/antd/variable/JSONInput.js +71 -0
  1110. package/es/schema-component/antd/variable/RawTextArea.js +133 -0
  1111. package/es/schema-component/antd/variable/TextArea.js +436 -0
  1112. package/es/schema-component/antd/variable/Variable.js +67 -0
  1113. package/es/schema-component/antd/variable/VariableSelect.js +115 -0
  1114. package/es/schema-component/antd/variable/VariableSelect.style.js +64 -0
  1115. package/es/schema-component/antd/variable/XButton.js +55 -0
  1116. package/es/schema-component/antd/variable/__tests__/variable.test.js +82 -0
  1117. package/es/schema-component/antd/variable/demos/demo1.js +78 -0
  1118. package/es/schema-component/antd/variable/demos/demo2.js +78 -0
  1119. package/es/schema-component/antd/variable/demos/demo3.js +78 -0
  1120. package/es/schema-component/antd/variable/index.js +65 -0
  1121. package/es/schema-component/antd/variable/style.js +209 -0
  1122. package/es/schema-component/common/dnd-context/index.js +134 -0
  1123. package/es/schema-component/common/index.js +74 -0
  1124. package/es/schema-component/common/infinite-scroll/infinite-scroll.js +171 -0
  1125. package/es/schema-component/common/infinite-scroll/style.js +62 -0
  1126. package/es/schema-component/common/sortable-item/SortableItem.js +185 -0
  1127. package/es/schema-component/common/sortable-item/index.js +65 -0
  1128. package/es/schema-component/common/utils/logic.js +434 -0
  1129. package/es/schema-component/common/utils/uitls.js +163 -0
  1130. package/es/schema-component/context.js +38 -0
  1131. package/es/schema-component/core/DesignableSwitch.js +71 -0
  1132. package/es/schema-component/core/FormProvider.js +87 -0
  1133. package/es/schema-component/core/RemoteSchemaComponent.js +78 -0
  1134. package/es/schema-component/core/SchemaComponent.js +94 -0
  1135. package/es/schema-component/core/SchemaComponentOptions.js +79 -0
  1136. package/es/schema-component/core/SchemaComponentPlugin.js +47 -0
  1137. package/es/schema-component/core/SchemaComponentProvider.js +118 -0
  1138. package/es/schema-component/core/index.js +119 -0
  1139. package/es/schema-component/demos/demo1.js +123 -0
  1140. package/es/schema-component/demos/demo2.js +57 -0
  1141. package/es/schema-component/demos/demo3.js +58 -0
  1142. package/es/schema-component/demos/demo4.js +58 -0
  1143. package/es/schema-component/hooks/__tests__/designable.test.js +555 -0
  1144. package/es/schema-component/hooks/__tests__/splitWrapSchema.test.js +96 -0
  1145. package/es/schema-component/hooks/index.js +164 -0
  1146. package/es/schema-component/hooks/useAttach.js +50 -0
  1147. package/es/schema-component/hooks/useCompile.js +74 -0
  1148. package/es/schema-component/hooks/useComponent.js +44 -0
  1149. package/es/schema-component/hooks/useDesignable.js +713 -0
  1150. package/es/schema-component/hooks/useDesigner.js +53 -0
  1151. package/es/schema-component/hooks/useFieldComponentOptions.js +121 -0
  1152. package/es/schema-component/hooks/useFieldModeOptions.js +317 -0
  1153. package/es/schema-component/hooks/useFieldProps.js +52 -0
  1154. package/es/schema-component/hooks/useFieldTitle.js +56 -0
  1155. package/es/schema-component/hooks/useProps.js +49 -0
  1156. package/es/schema-component/hooks/useSchemaComponentContext.js +40 -0
  1157. package/es/schema-component/hooks/useTableSize.js +65 -0
  1158. package/es/schema-component/index.js +110 -0
  1159. package/es/schema-component/types.js +8 -0
  1160. package/es/schema-initializer/SchemaInitializerPlugin.js +160 -0
  1161. package/es/schema-initializer/buttons/CustomFormItemInitializers.js +80 -0
  1162. package/es/schema-initializer/buttons/FormItemInitializers.js +190 -0
  1163. package/es/schema-initializer/buttons/RecordBlockInitializers.js +410 -0
  1164. package/es/schema-initializer/buttons/SubTableActionInitializers.js +69 -0
  1165. package/es/schema-initializer/buttons/TabPaneInitializers.js +201 -0
  1166. package/es/schema-initializer/buttons/index.js +110 -0
  1167. package/es/schema-initializer/components/CreateRecordAction.js +390 -0
  1168. package/es/schema-initializer/components/DeletedField.js +47 -0
  1169. package/es/schema-initializer/components/assigned-field/AssignedField.js +169 -0
  1170. package/es/schema-initializer/components/assigned-field/index.js +65 -0
  1171. package/es/schema-initializer/components/index.js +74 -0
  1172. package/es/schema-initializer/demos/basic.js +96 -0
  1173. package/es/schema-initializer/demos/build-type.js +117 -0
  1174. package/es/schema-initializer/demos/custom-button.js +128 -0
  1175. package/es/schema-initializer/demos/custom-items-component.js +134 -0
  1176. package/es/schema-initializer/demos/dynamic-visible-children.js +115 -0
  1177. package/es/schema-initializer/demos/insert-schema-action.js +126 -0
  1178. package/es/schema-initializer/demos/insert-schema-basic.js +146 -0
  1179. package/es/schema-initializer/demos/insert-schema-form-item.js +170 -0
  1180. package/es/schema-initializer/demos/nested-items.js +182 -0
  1181. package/es/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.js +55 -0
  1182. package/es/schema-initializer/index.js +185 -0
  1183. package/es/schema-initializer/items/ActionInitializer.js +48 -0
  1184. package/es/schema-initializer/items/BlockInitializer.js +62 -0
  1185. package/es/schema-initializer/items/CreateFilterActionInitializer.js +55 -0
  1186. package/es/schema-initializer/items/CreateResetActionInitializer.js +50 -0
  1187. package/es/schema-initializer/items/CustomFilterFormItemInitializer.js +514 -0
  1188. package/es/schema-initializer/items/CustomizeActionInitializer.js +46 -0
  1189. package/es/schema-initializer/items/DataBlockInitializer.js +360 -0
  1190. package/es/schema-initializer/items/DeleteEventActionInitializer.js +58 -0
  1191. package/es/schema-initializer/items/FilterBlockInitializer.js +37 -0
  1192. package/es/schema-initializer/items/G2PlotInitializer.js +50 -0
  1193. package/es/schema-initializer/items/InitializerWithSwitch.js +59 -0
  1194. package/es/schema-initializer/items/RecordAssociationBlockInitializer.js +90 -0
  1195. package/es/schema-initializer/items/RecordAssociationDetailsBlockInitializer.js +90 -0
  1196. package/es/schema-initializer/items/RecordAssociationFormBlockInitializer.js +116 -0
  1197. package/es/schema-initializer/items/RecordAssociationGridCardBlockInitializer.js +90 -0
  1198. package/es/schema-initializer/items/RecordAssociationListBlockInitializer.js +90 -0
  1199. package/es/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.js +115 -0
  1200. package/es/schema-initializer/items/SelectActionInitializer.js +97 -0
  1201. package/es/schema-initializer/items/SubmitActionInitializer.js +55 -0
  1202. package/es/schema-initializer/items/TableActionColumnInitializer.js +73 -0
  1203. package/es/schema-initializer/items/index.js +263 -0
  1204. package/es/schema-initializer/style.js +51 -0
  1205. package/es/schema-initializer/utils.js +1438 -0
  1206. package/es/schema-items/GeneralSchemaItems.js +198 -0
  1207. package/es/schema-items/GeneralSettings.js +241 -0
  1208. package/es/schema-items/OpenModeSchemaItems.js +221 -0
  1209. package/es/schema-items/index.js +74 -0
  1210. package/es/schema-settings/DataTemplates/FormDataTemplates.js +324 -0
  1211. package/es/schema-settings/DataTemplates/TreeLabel.js +64 -0
  1212. package/es/schema-settings/DataTemplates/components/AsDefaultTemplate.js +94 -0
  1213. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.js +306 -0
  1214. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.style.js +41 -0
  1215. package/es/schema-settings/DataTemplates/components/Designer.js +208 -0
  1216. package/es/schema-settings/DataTemplates/hooks/useCollectionState.js +319 -0
  1217. package/es/schema-settings/DataTemplates/index.js +65 -0
  1218. package/es/schema-settings/DataTemplates/utils.js +282 -0
  1219. package/es/schema-settings/DateFormat/ExpiresRadio.js +171 -0
  1220. package/es/schema-settings/EditCustomDefaultValue.js +143 -0
  1221. package/es/schema-settings/EditFormulaTitleField.js +133 -0
  1222. package/es/schema-settings/EnableChildCollections/DynamicComponent.js +98 -0
  1223. package/es/schema-settings/EnableChildCollections/index.js +135 -0
  1224. package/es/schema-settings/GeneralSchemaDesigner.js +313 -0
  1225. package/es/schema-settings/LinkageRules/DynamicComponent.js +104 -0
  1226. package/es/schema-settings/LinkageRules/LinkageRuleAction.js +272 -0
  1227. package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.js +118 -0
  1228. package/es/schema-settings/LinkageRules/ValueDynamicComponent.js +204 -0
  1229. package/es/schema-settings/LinkageRules/Variables.js +132 -0
  1230. package/es/schema-settings/LinkageRules/action-hooks.js +137 -0
  1231. package/es/schema-settings/LinkageRules/components/EnableLinkage.js +86 -0
  1232. package/es/schema-settings/LinkageRules/components/LinkageHeader.js +304 -0
  1233. package/es/schema-settings/LinkageRules/components/LinkageHeader.style.js +41 -0
  1234. package/es/schema-settings/LinkageRules/context.js +44 -0
  1235. package/es/schema-settings/LinkageRules/index.js +228 -0
  1236. package/es/schema-settings/LinkageRules/type.js +51 -0
  1237. package/es/schema-settings/LinkageRules/useValues.js +102 -0
  1238. package/es/schema-settings/SchemaSettingCollection.js +84 -0
  1239. package/es/schema-settings/SchemaSettingComponent.js +72 -0
  1240. package/es/schema-settings/SchemaSettings.js +1409 -0
  1241. package/es/schema-settings/SchemaSettingsDataScope.js +134 -0
  1242. package/es/schema-settings/SchemaSettingsDateFormat.js +233 -0
  1243. package/es/schema-settings/SchemaSettingsDefaultValue.js +252 -0
  1244. package/es/schema-settings/SchemaSettingsNumberFormat.js +212 -0
  1245. package/es/schema-settings/SchemaSettingsPlugin.js +142 -0
  1246. package/es/schema-settings/SchemaSettingsSortingRule.js +171 -0
  1247. package/es/schema-settings/VariableInput/VariableInput.js +214 -0
  1248. package/es/schema-settings/VariableInput/hooks/index.js +83 -0
  1249. package/es/schema-settings/VariableInput/hooks/useBaseVariable.js +209 -0
  1250. package/es/schema-settings/VariableInput/hooks/useBlockCollection.js +44 -0
  1251. package/es/schema-settings/VariableInput/hooks/useContextAssociationFields.js +132 -0
  1252. package/es/schema-settings/VariableInput/hooks/useDateVariable.js +197 -0
  1253. package/es/schema-settings/VariableInput/hooks/useFilterVariable.js +86 -0
  1254. package/es/schema-settings/VariableInput/hooks/useFormVariable.js +77 -0
  1255. package/es/schema-settings/VariableInput/hooks/useIterationVariable.js +80 -0
  1256. package/es/schema-settings/VariableInput/hooks/useParentRecordVariable.js +78 -0
  1257. package/es/schema-settings/VariableInput/hooks/usePopupVariable.js +58 -0
  1258. package/es/schema-settings/VariableInput/hooks/useRecordVariable.js +87 -0
  1259. package/es/schema-settings/VariableInput/hooks/useRoleVariable.js +76 -0
  1260. package/es/schema-settings/VariableInput/hooks/useUserVariable.js +76 -0
  1261. package/es/schema-settings/VariableInput/hooks/useVariableOptions.js +136 -0
  1262. package/es/schema-settings/VariableInput/index.js +74 -0
  1263. package/es/schema-settings/VariableInput/type.js +19 -0
  1264. package/es/schema-settings/VariableInput/utils/formatVariableScop.js +47 -0
  1265. package/es/schema-settings/demos/basic.js +94 -0
  1266. package/es/schema-settings/demos/built-type.js +176 -0
  1267. package/es/schema-settings/demos/custom-component.js +76 -0
  1268. package/es/schema-settings/demos/demo3.js +134 -0
  1269. package/es/schema-settings/demos/schema-basic.js +98 -0
  1270. package/es/schema-settings/filter-form/FormFilterScope.js +143 -0
  1271. package/es/schema-settings/filter-form/context.js +43 -0
  1272. package/es/schema-settings/hooks/useFilterFormCustomProps.js +50 -0
  1273. package/es/schema-settings/hooks/useGetAriaLabelOfDesigner.js +58 -0
  1274. package/es/schema-settings/hooks/useIsAllowToSetDefaultValue.js +117 -0
  1275. package/es/schema-settings/hooks/useIsShowMultipleSwitch.js +50 -0
  1276. package/es/schema-settings/hooks/useParseDataScopeFilter.js +88 -0
  1277. package/es/schema-settings/index.js +218 -0
  1278. package/es/schema-settings/isPatternDisabled.js +41 -0
  1279. package/es/schema-settings/styles.js +118 -0
  1280. package/es/schema-settings/types.js +19 -0
  1281. package/es/schema-templates/BlockTemplate.js +76 -0
  1282. package/es/schema-templates/BlockTemplateDetails.js +134 -0
  1283. package/es/schema-templates/BlockTemplatePage.js +67 -0
  1284. package/es/schema-templates/SchemaTemplateManagerProvider.js +113 -0
  1285. package/es/schema-templates/collections/uiSchemaTemplates.js +55 -0
  1286. package/es/schema-templates/index.js +92 -0
  1287. package/es/schema-templates/schemas/CollectionTitle.js +71 -0
  1288. package/es/schema-templates/schemas/uiSchemaTemplates.js +265 -0
  1289. package/es/schema-templates/useSchemaTemplateManager.js +122 -0
  1290. package/es/style/css-variable/CSSVariableProvider.js +109 -0
  1291. package/es/style/css-variable/index.js +50 -0
  1292. package/es/style/index.js +44 -0
  1293. package/es/style/theme/AntdAppProvider.js +69 -0
  1294. package/es/style/theme/defaultTheme.js +55 -0
  1295. package/es/style/theme/index.js +165 -0
  1296. package/es/style/theme/type.js +19 -0
  1297. package/es/style/useToken.js +40 -0
  1298. package/es/testUtils/index.js +65 -0
  1299. package/es/testUtils/mockAPIClient.js +64 -0
  1300. package/es/user/ChangePassword.js +191 -0
  1301. package/es/user/CurrentUser.js +258 -0
  1302. package/es/user/CurrentUserProvider.js +97 -0
  1303. package/es/user/CurrentUserSettingsMenuProvider.js +104 -0
  1304. package/es/user/EditProfile.js +183 -0
  1305. package/es/user/LanguageSettings.js +94 -0
  1306. package/es/user/SwitchRole.js +75 -0
  1307. package/es/user/VerificationCode.js +117 -0
  1308. package/es/user/__tests__/current-user-settings-menu-provider.test.js +43 -0
  1309. package/es/user/index.js +83 -0
  1310. package/es/variables/VariablesProvider.js +264 -0
  1311. package/es/variables/__tests__/useVariables.test.js +442 -0
  1312. package/es/variables/__tests__/utils/filterEmptyValues.test.js +53 -0
  1313. package/es/variables/__tests__/utils/getPath.test.js +11 -0
  1314. package/es/variables/__tests__/utils/getVariableName.test.js +11 -0
  1315. package/es/variables/__tests__/utils/isVariable.test.js +29 -0
  1316. package/es/variables/__tests__/utils/transformVariableValue.test.js +143 -0
  1317. package/es/variables/__tests__/utils/uniq.test.js +84 -0
  1318. package/es/variables/constants.js +38 -0
  1319. package/es/variables/hooks/useBuiltinVariables.js +85 -0
  1320. package/es/variables/hooks/useContextVariable.js +61 -0
  1321. package/es/variables/hooks/useLocalVariables.js +102 -0
  1322. package/es/variables/hooks/useVariables.js +39 -0
  1323. package/es/variables/index.js +152 -0
  1324. package/es/variables/types.js +19 -0
  1325. package/es/variables/utils/filterEmptyValues.js +41 -0
  1326. package/es/variables/utils/getAction.js +44 -0
  1327. package/es/variables/utils/getPath.js +41 -0
  1328. package/es/variables/utils/getVariableName.js +58 -0
  1329. package/es/variables/utils/hasRequested.js +58 -0
  1330. package/es/variables/utils/isVariable.js +47 -0
  1331. package/es/variables/utils/transformVariableValue.js +78 -0
  1332. package/es/variables/utils/uniq.js +58 -0
  1333. package/package.json +3 -2
@@ -0,0 +1,881 @@
1
+ "use strict";
2
+ var __webpack_modules__ = {
3
+ "./AntdSchemaComponentProvider": function(module) {
4
+ module.exports = require("./AntdSchemaComponentProvider.js");
5
+ },
6
+ "./__builtins__": function(module) {
7
+ module.exports = require("./__builtins__/index.js");
8
+ },
9
+ "./action": function(module) {
10
+ module.exports = require("./action/index.js");
11
+ },
12
+ "./appends-tree-select": function(module) {
13
+ module.exports = require("./appends-tree-select/index.js");
14
+ },
15
+ "./association-cascader": function(module) {
16
+ module.exports = require("./association-cascader/index.js");
17
+ },
18
+ "./association-field": function(module) {
19
+ module.exports = require("./association-field/index.js");
20
+ },
21
+ "./association-select": function(module) {
22
+ module.exports = require("./association-select/index.js");
23
+ },
24
+ "./auto-complete": function(module) {
25
+ module.exports = require("./auto-complete/index.js");
26
+ },
27
+ "./block-item": function(module) {
28
+ module.exports = require("./block-item/index.js");
29
+ },
30
+ "./card-item": function(module) {
31
+ module.exports = require("./card-item/index.js");
32
+ },
33
+ "./cascader": function(module) {
34
+ module.exports = require("./cascader/index.js");
35
+ },
36
+ "./checkbox?15ca": function(module) {
37
+ module.exports = require("./checkbox/index.js");
38
+ },
39
+ "./collection-select": function(module) {
40
+ module.exports = require("./collection-select/index.js");
41
+ },
42
+ "./color-picker": function(module) {
43
+ module.exports = require("./color-picker/index.js");
44
+ },
45
+ "./color-select": function(module) {
46
+ module.exports = require("./color-select/index.js");
47
+ },
48
+ "./cron": function(module) {
49
+ module.exports = require("./cron/index.js");
50
+ },
51
+ "./custom-cascader": function(module) {
52
+ module.exports = require("./custom-cascader/index.js");
53
+ },
54
+ "./date-picker": function(module) {
55
+ module.exports = require("./date-picker/index.js");
56
+ },
57
+ "./details": function(module) {
58
+ module.exports = require("./details/index.js");
59
+ },
60
+ "./expand-action": function(module) {
61
+ module.exports = require("./expand-action/index.js");
62
+ },
63
+ "./filter": function(module) {
64
+ module.exports = require("./filter/index.js");
65
+ },
66
+ "./form-dialog": function(module) {
67
+ module.exports = require("./form-dialog/index.js");
68
+ },
69
+ "./form-item": function(module) {
70
+ module.exports = require("./form-item/index.js");
71
+ },
72
+ "./form-tab": function(module) {
73
+ module.exports = require("./form-tab/index.js");
74
+ },
75
+ "./form-v2": function(module) {
76
+ module.exports = require("./form-v2/index.js");
77
+ },
78
+ "./form": function(module) {
79
+ module.exports = require("./form/index.js");
80
+ },
81
+ "./grid-card": function(module) {
82
+ module.exports = require("./grid-card/index.js");
83
+ },
84
+ "./grid": function(module) {
85
+ module.exports = require("./grid/index.js");
86
+ },
87
+ "./icon-picker": function(module) {
88
+ module.exports = require("./icon-picker/index.js");
89
+ },
90
+ "./index.less": function(module) {
91
+ module.exports = require("./index.css");
92
+ },
93
+ "./input-number": function(module) {
94
+ module.exports = require("./input-number/index.js");
95
+ },
96
+ "./input?b1cc": function(module) {
97
+ module.exports = require("./input/index.js");
98
+ },
99
+ "./list": function(module) {
100
+ module.exports = require("./list/index.js");
101
+ },
102
+ "./markdown?ce72": function(module) {
103
+ module.exports = require("./markdown/index.js");
104
+ },
105
+ "./menu": function(module) {
106
+ module.exports = require("./menu/index.js");
107
+ },
108
+ "./nanoIDInput": function(module) {
109
+ module.exports = require("./nanoIDInput/index.js");
110
+ },
111
+ "./page": function(module) {
112
+ module.exports = require("./page/index.js");
113
+ },
114
+ "./pagination": function(module) {
115
+ module.exports = require("./pagination/index.js");
116
+ },
117
+ "./password?65b8": function(module) {
118
+ module.exports = require("./password/index.js");
119
+ },
120
+ "./percent?afe4": function(module) {
121
+ module.exports = require("./percent/index.js");
122
+ },
123
+ "./popover": function(module) {
124
+ module.exports = require("./popover/index.js");
125
+ },
126
+ "./preview": function(module) {
127
+ module.exports = require("./preview/index.js");
128
+ },
129
+ "./quick-edit": function(module) {
130
+ module.exports = require("./quick-edit/index.js");
131
+ },
132
+ "./radio": function(module) {
133
+ module.exports = require("./radio/index.js");
134
+ },
135
+ "./record-picker": function(module) {
136
+ module.exports = require("./record-picker/index.js");
137
+ },
138
+ "./remote-select": function(module) {
139
+ module.exports = require("./remote-select/index.js");
140
+ },
141
+ "./rich-text": function(module) {
142
+ module.exports = require("./rich-text/index.js");
143
+ },
144
+ "./scroll-area": function(module) {
145
+ module.exports = require("./scroll-area/index.js");
146
+ },
147
+ "./select?8344": function(module) {
148
+ module.exports = require("./select/index.js");
149
+ },
150
+ "./space": function(module) {
151
+ module.exports = require("./space/index.js");
152
+ },
153
+ "./table-v2": function(module) {
154
+ module.exports = require("./table-v2/index.js");
155
+ },
156
+ "./table": function(module) {
157
+ module.exports = require("./table/index.js");
158
+ },
159
+ "./tabs": function(module) {
160
+ module.exports = require("./tabs/index.js");
161
+ },
162
+ "./time-picker": function(module) {
163
+ module.exports = require("./time-picker/index.js");
164
+ },
165
+ "./tree-select": function(module) {
166
+ module.exports = require("./tree-select/index.js");
167
+ },
168
+ "./tree?6051": function(module) {
169
+ module.exports = require("./tree/index.js");
170
+ },
171
+ "./unixTimestamp?5844": function(module) {
172
+ module.exports = require("./unixTimestamp/index.js");
173
+ },
174
+ "./upload": function(module) {
175
+ module.exports = require("./upload/index.js");
176
+ },
177
+ "./variable": function(module) {
178
+ module.exports = require("./variable/index.js");
179
+ },
180
+ "@ant-design/pro-layout": function(module) {
181
+ module.exports = require("@ant-design/pro-layout");
182
+ },
183
+ "@tachybase/components": function(module) {
184
+ module.exports = require("@tachybase/components");
185
+ }
186
+ };
187
+ var __webpack_module_cache__ = {};
188
+ function __webpack_require__(moduleId) {
189
+ var cachedModule = __webpack_module_cache__[moduleId];
190
+ if (void 0 !== cachedModule) return cachedModule.exports;
191
+ var module = __webpack_module_cache__[moduleId] = {
192
+ exports: {}
193
+ };
194
+ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
195
+ return module.exports;
196
+ }
197
+ (()=>{
198
+ __webpack_require__.n = function(module) {
199
+ var getter = module && module.__esModule ? function() {
200
+ return module['default'];
201
+ } : function() {
202
+ return module;
203
+ };
204
+ __webpack_require__.d(getter, {
205
+ a: getter
206
+ });
207
+ return getter;
208
+ };
209
+ })();
210
+ (()=>{
211
+ __webpack_require__.d = function(exports1, definition) {
212
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
213
+ enumerable: true,
214
+ get: definition[key]
215
+ });
216
+ };
217
+ })();
218
+ (()=>{
219
+ __webpack_require__.o = function(obj, prop) {
220
+ return Object.prototype.hasOwnProperty.call(obj, prop);
221
+ };
222
+ })();
223
+ (()=>{
224
+ __webpack_require__.r = function(exports1) {
225
+ if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
226
+ value: 'Module'
227
+ });
228
+ Object.defineProperty(exports1, '__esModule', {
229
+ value: true
230
+ });
231
+ };
232
+ })();
233
+ var __webpack_exports__ = {};
234
+ __webpack_require__.r(__webpack_exports__);
235
+ __webpack_require__.d(__webpack_exports__, {
236
+ CodeMirror: function() {
237
+ return _tachybase_components__WEBPACK_IMPORTED_MODULE_60__.CodeMirror;
238
+ },
239
+ PageHeader: function() {
240
+ return _ant_design_pro_layout__WEBPACK_IMPORTED_MODULE_59__.PageHeader;
241
+ },
242
+ genStyleHook: function() {
243
+ return _builtins___WEBPACK_IMPORTED_MODULE_2__.genStyleHook;
244
+ }
245
+ });
246
+ __webpack_require__("./index.less");
247
+ var _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("./AntdSchemaComponentProvider");
248
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
249
+ for(var __WEBPACK_IMPORT_KEY__ in _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__)if ([
250
+ "default",
251
+ "CodeMirror",
252
+ "genStyleHook",
253
+ "PageHeader"
254
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
255
+ return _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__[key];
256
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
257
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
258
+ var _builtins___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("./__builtins__");
259
+ var _action__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("./action");
260
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
261
+ for(var __WEBPACK_IMPORT_KEY__ in _action__WEBPACK_IMPORTED_MODULE_3__)if ([
262
+ "PageHeader",
263
+ "CodeMirror",
264
+ "genStyleHook",
265
+ "default"
266
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
267
+ return _action__WEBPACK_IMPORTED_MODULE_3__[key];
268
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
269
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
270
+ var _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("./appends-tree-select");
271
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
272
+ for(var __WEBPACK_IMPORT_KEY__ in _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__)if ([
273
+ "PageHeader",
274
+ "CodeMirror",
275
+ "genStyleHook",
276
+ "default"
277
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
278
+ return _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__[key];
279
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
280
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
281
+ var _association_cascader__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("./association-cascader");
282
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
283
+ for(var __WEBPACK_IMPORT_KEY__ in _association_cascader__WEBPACK_IMPORTED_MODULE_5__)if ([
284
+ "PageHeader",
285
+ "CodeMirror",
286
+ "genStyleHook",
287
+ "default"
288
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
289
+ return _association_cascader__WEBPACK_IMPORTED_MODULE_5__[key];
290
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
291
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
292
+ var _association_field__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__("./association-field");
293
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
294
+ for(var __WEBPACK_IMPORT_KEY__ in _association_field__WEBPACK_IMPORTED_MODULE_6__)if ([
295
+ "PageHeader",
296
+ "CodeMirror",
297
+ "genStyleHook",
298
+ "default"
299
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
300
+ return _association_field__WEBPACK_IMPORTED_MODULE_6__[key];
301
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
302
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
303
+ var _association_select__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__("./association-select");
304
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
305
+ for(var __WEBPACK_IMPORT_KEY__ in _association_select__WEBPACK_IMPORTED_MODULE_7__)if ([
306
+ "PageHeader",
307
+ "CodeMirror",
308
+ "genStyleHook",
309
+ "default"
310
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
311
+ return _association_select__WEBPACK_IMPORTED_MODULE_7__[key];
312
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
313
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
314
+ var _auto_complete__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__("./auto-complete");
315
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
316
+ for(var __WEBPACK_IMPORT_KEY__ in _auto_complete__WEBPACK_IMPORTED_MODULE_8__)if ([
317
+ "PageHeader",
318
+ "CodeMirror",
319
+ "genStyleHook",
320
+ "default"
321
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
322
+ return _auto_complete__WEBPACK_IMPORTED_MODULE_8__[key];
323
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
324
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
325
+ var _block_item__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__("./block-item");
326
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
327
+ for(var __WEBPACK_IMPORT_KEY__ in _block_item__WEBPACK_IMPORTED_MODULE_9__)if ([
328
+ "PageHeader",
329
+ "CodeMirror",
330
+ "genStyleHook",
331
+ "default"
332
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
333
+ return _block_item__WEBPACK_IMPORTED_MODULE_9__[key];
334
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
335
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
336
+ var _card_item__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__("./card-item");
337
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
338
+ for(var __WEBPACK_IMPORT_KEY__ in _card_item__WEBPACK_IMPORTED_MODULE_10__)if ([
339
+ "PageHeader",
340
+ "CodeMirror",
341
+ "genStyleHook",
342
+ "default"
343
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
344
+ return _card_item__WEBPACK_IMPORTED_MODULE_10__[key];
345
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
346
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
347
+ var _cascader__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__("./cascader");
348
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
349
+ for(var __WEBPACK_IMPORT_KEY__ in _cascader__WEBPACK_IMPORTED_MODULE_11__)if ([
350
+ "PageHeader",
351
+ "CodeMirror",
352
+ "genStyleHook",
353
+ "default"
354
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
355
+ return _cascader__WEBPACK_IMPORTED_MODULE_11__[key];
356
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
357
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
358
+ var _checkbox__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__("./checkbox?15ca");
359
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
360
+ for(var __WEBPACK_IMPORT_KEY__ in _checkbox__WEBPACK_IMPORTED_MODULE_12__)if ([
361
+ "PageHeader",
362
+ "CodeMirror",
363
+ "genStyleHook",
364
+ "default"
365
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
366
+ return _checkbox__WEBPACK_IMPORTED_MODULE_12__[key];
367
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
368
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
369
+ var _collection_select__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__("./collection-select");
370
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
371
+ for(var __WEBPACK_IMPORT_KEY__ in _collection_select__WEBPACK_IMPORTED_MODULE_13__)if ([
372
+ "PageHeader",
373
+ "CodeMirror",
374
+ "genStyleHook",
375
+ "default"
376
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
377
+ return _collection_select__WEBPACK_IMPORTED_MODULE_13__[key];
378
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
379
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
380
+ var _color_picker__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__("./color-picker");
381
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
382
+ for(var __WEBPACK_IMPORT_KEY__ in _color_picker__WEBPACK_IMPORTED_MODULE_14__)if ([
383
+ "PageHeader",
384
+ "CodeMirror",
385
+ "genStyleHook",
386
+ "default"
387
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
388
+ return _color_picker__WEBPACK_IMPORTED_MODULE_14__[key];
389
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
390
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
391
+ var _color_select__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__("./color-select");
392
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
393
+ for(var __WEBPACK_IMPORT_KEY__ in _color_select__WEBPACK_IMPORTED_MODULE_15__)if ([
394
+ "PageHeader",
395
+ "CodeMirror",
396
+ "genStyleHook",
397
+ "default"
398
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
399
+ return _color_select__WEBPACK_IMPORTED_MODULE_15__[key];
400
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
401
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
402
+ var _cron__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__("./cron");
403
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
404
+ for(var __WEBPACK_IMPORT_KEY__ in _cron__WEBPACK_IMPORTED_MODULE_16__)if ([
405
+ "PageHeader",
406
+ "CodeMirror",
407
+ "genStyleHook",
408
+ "default"
409
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
410
+ return _cron__WEBPACK_IMPORTED_MODULE_16__[key];
411
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
412
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
413
+ var _custom_cascader__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__("./custom-cascader");
414
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
415
+ for(var __WEBPACK_IMPORT_KEY__ in _custom_cascader__WEBPACK_IMPORTED_MODULE_17__)if ([
416
+ "PageHeader",
417
+ "CodeMirror",
418
+ "genStyleHook",
419
+ "default"
420
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
421
+ return _custom_cascader__WEBPACK_IMPORTED_MODULE_17__[key];
422
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
423
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
424
+ var _date_picker__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__("./date-picker");
425
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
426
+ for(var __WEBPACK_IMPORT_KEY__ in _date_picker__WEBPACK_IMPORTED_MODULE_18__)if ([
427
+ "PageHeader",
428
+ "CodeMirror",
429
+ "genStyleHook",
430
+ "default"
431
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
432
+ return _date_picker__WEBPACK_IMPORTED_MODULE_18__[key];
433
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
434
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
435
+ var _details__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__("./details");
436
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
437
+ for(var __WEBPACK_IMPORT_KEY__ in _details__WEBPACK_IMPORTED_MODULE_19__)if ([
438
+ "PageHeader",
439
+ "CodeMirror",
440
+ "genStyleHook",
441
+ "default"
442
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
443
+ return _details__WEBPACK_IMPORTED_MODULE_19__[key];
444
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
445
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
446
+ var _expand_action__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__("./expand-action");
447
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
448
+ for(var __WEBPACK_IMPORT_KEY__ in _expand_action__WEBPACK_IMPORTED_MODULE_20__)if ([
449
+ "PageHeader",
450
+ "CodeMirror",
451
+ "genStyleHook",
452
+ "default"
453
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
454
+ return _expand_action__WEBPACK_IMPORTED_MODULE_20__[key];
455
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
456
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
457
+ var _filter__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__("./filter");
458
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
459
+ for(var __WEBPACK_IMPORT_KEY__ in _filter__WEBPACK_IMPORTED_MODULE_21__)if ([
460
+ "PageHeader",
461
+ "CodeMirror",
462
+ "genStyleHook",
463
+ "default"
464
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
465
+ return _filter__WEBPACK_IMPORTED_MODULE_21__[key];
466
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
467
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
468
+ var _form__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__("./form");
469
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
470
+ for(var __WEBPACK_IMPORT_KEY__ in _form__WEBPACK_IMPORTED_MODULE_22__)if ([
471
+ "PageHeader",
472
+ "CodeMirror",
473
+ "genStyleHook",
474
+ "default"
475
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
476
+ return _form__WEBPACK_IMPORTED_MODULE_22__[key];
477
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
478
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
479
+ var _form_dialog__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__("./form-dialog");
480
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
481
+ for(var __WEBPACK_IMPORT_KEY__ in _form_dialog__WEBPACK_IMPORTED_MODULE_23__)if ([
482
+ "PageHeader",
483
+ "CodeMirror",
484
+ "genStyleHook",
485
+ "default"
486
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
487
+ return _form_dialog__WEBPACK_IMPORTED_MODULE_23__[key];
488
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
489
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
490
+ var _form_item__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__("./form-item");
491
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
492
+ for(var __WEBPACK_IMPORT_KEY__ in _form_item__WEBPACK_IMPORTED_MODULE_24__)if ([
493
+ "PageHeader",
494
+ "CodeMirror",
495
+ "genStyleHook",
496
+ "default"
497
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
498
+ return _form_item__WEBPACK_IMPORTED_MODULE_24__[key];
499
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
500
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
501
+ var _form_tab__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__("./form-tab");
502
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
503
+ for(var __WEBPACK_IMPORT_KEY__ in _form_tab__WEBPACK_IMPORTED_MODULE_25__)if ([
504
+ "PageHeader",
505
+ "CodeMirror",
506
+ "genStyleHook",
507
+ "default"
508
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
509
+ return _form_tab__WEBPACK_IMPORTED_MODULE_25__[key];
510
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
511
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
512
+ var _form_v2__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__("./form-v2");
513
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
514
+ for(var __WEBPACK_IMPORT_KEY__ in _form_v2__WEBPACK_IMPORTED_MODULE_26__)if ([
515
+ "PageHeader",
516
+ "CodeMirror",
517
+ "genStyleHook",
518
+ "default"
519
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
520
+ return _form_v2__WEBPACK_IMPORTED_MODULE_26__[key];
521
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
522
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
523
+ var _grid__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__("./grid");
524
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
525
+ for(var __WEBPACK_IMPORT_KEY__ in _grid__WEBPACK_IMPORTED_MODULE_27__)if ([
526
+ "PageHeader",
527
+ "CodeMirror",
528
+ "genStyleHook",
529
+ "default"
530
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
531
+ return _grid__WEBPACK_IMPORTED_MODULE_27__[key];
532
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
533
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
534
+ var _grid_card__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__("./grid-card");
535
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
536
+ for(var __WEBPACK_IMPORT_KEY__ in _grid_card__WEBPACK_IMPORTED_MODULE_28__)if ([
537
+ "PageHeader",
538
+ "CodeMirror",
539
+ "genStyleHook",
540
+ "default"
541
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
542
+ return _grid_card__WEBPACK_IMPORTED_MODULE_28__[key];
543
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
544
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
545
+ var _icon_picker__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__("./icon-picker");
546
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
547
+ for(var __WEBPACK_IMPORT_KEY__ in _icon_picker__WEBPACK_IMPORTED_MODULE_29__)if ([
548
+ "PageHeader",
549
+ "CodeMirror",
550
+ "genStyleHook",
551
+ "default"
552
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
553
+ return _icon_picker__WEBPACK_IMPORTED_MODULE_29__[key];
554
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
555
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
556
+ var _input__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__("./input?b1cc");
557
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
558
+ for(var __WEBPACK_IMPORT_KEY__ in _input__WEBPACK_IMPORTED_MODULE_30__)if ([
559
+ "PageHeader",
560
+ "CodeMirror",
561
+ "genStyleHook",
562
+ "default"
563
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
564
+ return _input__WEBPACK_IMPORTED_MODULE_30__[key];
565
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
566
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
567
+ var _input_number__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__("./input-number");
568
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
569
+ for(var __WEBPACK_IMPORT_KEY__ in _input_number__WEBPACK_IMPORTED_MODULE_31__)if ([
570
+ "PageHeader",
571
+ "CodeMirror",
572
+ "genStyleHook",
573
+ "default"
574
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
575
+ return _input_number__WEBPACK_IMPORTED_MODULE_31__[key];
576
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
577
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
578
+ var _list__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__("./list");
579
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
580
+ for(var __WEBPACK_IMPORT_KEY__ in _list__WEBPACK_IMPORTED_MODULE_32__)if ([
581
+ "PageHeader",
582
+ "CodeMirror",
583
+ "genStyleHook",
584
+ "default"
585
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
586
+ return _list__WEBPACK_IMPORTED_MODULE_32__[key];
587
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
588
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
589
+ var _markdown__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__("./markdown?ce72");
590
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
591
+ for(var __WEBPACK_IMPORT_KEY__ in _markdown__WEBPACK_IMPORTED_MODULE_33__)if ([
592
+ "PageHeader",
593
+ "CodeMirror",
594
+ "genStyleHook",
595
+ "default"
596
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
597
+ return _markdown__WEBPACK_IMPORTED_MODULE_33__[key];
598
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
599
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
600
+ var _menu__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__("./menu");
601
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
602
+ for(var __WEBPACK_IMPORT_KEY__ in _menu__WEBPACK_IMPORTED_MODULE_34__)if ([
603
+ "PageHeader",
604
+ "CodeMirror",
605
+ "genStyleHook",
606
+ "default"
607
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
608
+ return _menu__WEBPACK_IMPORTED_MODULE_34__[key];
609
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
610
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
611
+ var _nanoIDInput__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__("./nanoIDInput");
612
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
613
+ for(var __WEBPACK_IMPORT_KEY__ in _nanoIDInput__WEBPACK_IMPORTED_MODULE_35__)if ([
614
+ "PageHeader",
615
+ "CodeMirror",
616
+ "genStyleHook",
617
+ "default"
618
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
619
+ return _nanoIDInput__WEBPACK_IMPORTED_MODULE_35__[key];
620
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
621
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
622
+ var _page__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__("./page");
623
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
624
+ for(var __WEBPACK_IMPORT_KEY__ in _page__WEBPACK_IMPORTED_MODULE_36__)if ([
625
+ "PageHeader",
626
+ "CodeMirror",
627
+ "genStyleHook",
628
+ "default"
629
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
630
+ return _page__WEBPACK_IMPORTED_MODULE_36__[key];
631
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
632
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
633
+ var _pagination__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__("./pagination");
634
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
635
+ for(var __WEBPACK_IMPORT_KEY__ in _pagination__WEBPACK_IMPORTED_MODULE_37__)if ([
636
+ "PageHeader",
637
+ "CodeMirror",
638
+ "genStyleHook",
639
+ "default"
640
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
641
+ return _pagination__WEBPACK_IMPORTED_MODULE_37__[key];
642
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
643
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
644
+ var _password__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__("./password?65b8");
645
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
646
+ for(var __WEBPACK_IMPORT_KEY__ in _password__WEBPACK_IMPORTED_MODULE_38__)if ([
647
+ "PageHeader",
648
+ "CodeMirror",
649
+ "genStyleHook",
650
+ "default"
651
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
652
+ return _password__WEBPACK_IMPORTED_MODULE_38__[key];
653
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
654
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
655
+ var _percent__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__("./percent?afe4");
656
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
657
+ for(var __WEBPACK_IMPORT_KEY__ in _percent__WEBPACK_IMPORTED_MODULE_39__)if ([
658
+ "PageHeader",
659
+ "CodeMirror",
660
+ "genStyleHook",
661
+ "default"
662
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
663
+ return _percent__WEBPACK_IMPORTED_MODULE_39__[key];
664
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
665
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
666
+ var _popover__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__("./popover");
667
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
668
+ for(var __WEBPACK_IMPORT_KEY__ in _popover__WEBPACK_IMPORTED_MODULE_40__)if ([
669
+ "PageHeader",
670
+ "CodeMirror",
671
+ "genStyleHook",
672
+ "default"
673
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
674
+ return _popover__WEBPACK_IMPORTED_MODULE_40__[key];
675
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
676
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
677
+ var _preview__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__("./preview");
678
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
679
+ for(var __WEBPACK_IMPORT_KEY__ in _preview__WEBPACK_IMPORTED_MODULE_41__)if ([
680
+ "PageHeader",
681
+ "CodeMirror",
682
+ "genStyleHook",
683
+ "default"
684
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
685
+ return _preview__WEBPACK_IMPORTED_MODULE_41__[key];
686
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
687
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
688
+ var _quick_edit__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__("./quick-edit");
689
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
690
+ for(var __WEBPACK_IMPORT_KEY__ in _quick_edit__WEBPACK_IMPORTED_MODULE_42__)if ([
691
+ "PageHeader",
692
+ "CodeMirror",
693
+ "genStyleHook",
694
+ "default"
695
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
696
+ return _quick_edit__WEBPACK_IMPORTED_MODULE_42__[key];
697
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
698
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
699
+ var _radio__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__("./radio");
700
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
701
+ for(var __WEBPACK_IMPORT_KEY__ in _radio__WEBPACK_IMPORTED_MODULE_43__)if ([
702
+ "PageHeader",
703
+ "CodeMirror",
704
+ "genStyleHook",
705
+ "default"
706
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
707
+ return _radio__WEBPACK_IMPORTED_MODULE_43__[key];
708
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
709
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
710
+ var _record_picker__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__("./record-picker");
711
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
712
+ for(var __WEBPACK_IMPORT_KEY__ in _record_picker__WEBPACK_IMPORTED_MODULE_44__)if ([
713
+ "PageHeader",
714
+ "CodeMirror",
715
+ "genStyleHook",
716
+ "default"
717
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
718
+ return _record_picker__WEBPACK_IMPORTED_MODULE_44__[key];
719
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
720
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
721
+ var _remote_select__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__("./remote-select");
722
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
723
+ for(var __WEBPACK_IMPORT_KEY__ in _remote_select__WEBPACK_IMPORTED_MODULE_45__)if ([
724
+ "PageHeader",
725
+ "CodeMirror",
726
+ "genStyleHook",
727
+ "default"
728
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
729
+ return _remote_select__WEBPACK_IMPORTED_MODULE_45__[key];
730
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
731
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
732
+ var _rich_text__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__("./rich-text");
733
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
734
+ for(var __WEBPACK_IMPORT_KEY__ in _rich_text__WEBPACK_IMPORTED_MODULE_46__)if ([
735
+ "PageHeader",
736
+ "CodeMirror",
737
+ "genStyleHook",
738
+ "default"
739
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
740
+ return _rich_text__WEBPACK_IMPORTED_MODULE_46__[key];
741
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
742
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
743
+ var _scroll_area__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__("./scroll-area");
744
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
745
+ for(var __WEBPACK_IMPORT_KEY__ in _scroll_area__WEBPACK_IMPORTED_MODULE_47__)if ([
746
+ "PageHeader",
747
+ "CodeMirror",
748
+ "genStyleHook",
749
+ "default"
750
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
751
+ return _scroll_area__WEBPACK_IMPORTED_MODULE_47__[key];
752
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
753
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
754
+ var _select__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__("./select?8344");
755
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
756
+ for(var __WEBPACK_IMPORT_KEY__ in _select__WEBPACK_IMPORTED_MODULE_48__)if ([
757
+ "PageHeader",
758
+ "CodeMirror",
759
+ "genStyleHook",
760
+ "default"
761
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
762
+ return _select__WEBPACK_IMPORTED_MODULE_48__[key];
763
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
764
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
765
+ var _space__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__("./space");
766
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
767
+ for(var __WEBPACK_IMPORT_KEY__ in _space__WEBPACK_IMPORTED_MODULE_49__)if ([
768
+ "PageHeader",
769
+ "CodeMirror",
770
+ "genStyleHook",
771
+ "default"
772
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
773
+ return _space__WEBPACK_IMPORTED_MODULE_49__[key];
774
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
775
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
776
+ var _table__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__("./table");
777
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
778
+ for(var __WEBPACK_IMPORT_KEY__ in _table__WEBPACK_IMPORTED_MODULE_50__)if ([
779
+ "PageHeader",
780
+ "CodeMirror",
781
+ "genStyleHook",
782
+ "default"
783
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
784
+ return _table__WEBPACK_IMPORTED_MODULE_50__[key];
785
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
786
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
787
+ var _table_v2__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__("./table-v2");
788
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
789
+ for(var __WEBPACK_IMPORT_KEY__ in _table_v2__WEBPACK_IMPORTED_MODULE_51__)if ([
790
+ "PageHeader",
791
+ "CodeMirror",
792
+ "genStyleHook",
793
+ "default"
794
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
795
+ return _table_v2__WEBPACK_IMPORTED_MODULE_51__[key];
796
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
797
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
798
+ var _tabs__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__("./tabs");
799
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
800
+ for(var __WEBPACK_IMPORT_KEY__ in _tabs__WEBPACK_IMPORTED_MODULE_52__)if ([
801
+ "PageHeader",
802
+ "CodeMirror",
803
+ "genStyleHook",
804
+ "default"
805
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
806
+ return _tabs__WEBPACK_IMPORTED_MODULE_52__[key];
807
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
808
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
809
+ var _time_picker__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__("./time-picker");
810
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
811
+ for(var __WEBPACK_IMPORT_KEY__ in _time_picker__WEBPACK_IMPORTED_MODULE_53__)if ([
812
+ "PageHeader",
813
+ "CodeMirror",
814
+ "genStyleHook",
815
+ "default"
816
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
817
+ return _time_picker__WEBPACK_IMPORTED_MODULE_53__[key];
818
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
819
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
820
+ var _tree_select__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__("./tree-select");
821
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
822
+ for(var __WEBPACK_IMPORT_KEY__ in _tree_select__WEBPACK_IMPORTED_MODULE_54__)if ([
823
+ "PageHeader",
824
+ "CodeMirror",
825
+ "genStyleHook",
826
+ "default"
827
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
828
+ return _tree_select__WEBPACK_IMPORTED_MODULE_54__[key];
829
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
830
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
831
+ var _tree__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__("./tree?6051");
832
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
833
+ for(var __WEBPACK_IMPORT_KEY__ in _tree__WEBPACK_IMPORTED_MODULE_55__)if ([
834
+ "PageHeader",
835
+ "CodeMirror",
836
+ "genStyleHook",
837
+ "default"
838
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
839
+ return _tree__WEBPACK_IMPORTED_MODULE_55__[key];
840
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
841
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
842
+ var _unixTimestamp__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__("./unixTimestamp?5844");
843
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
844
+ for(var __WEBPACK_IMPORT_KEY__ in _unixTimestamp__WEBPACK_IMPORTED_MODULE_56__)if ([
845
+ "PageHeader",
846
+ "CodeMirror",
847
+ "genStyleHook",
848
+ "default"
849
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
850
+ return _unixTimestamp__WEBPACK_IMPORTED_MODULE_56__[key];
851
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
852
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
853
+ var _upload__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__("./upload");
854
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
855
+ for(var __WEBPACK_IMPORT_KEY__ in _upload__WEBPACK_IMPORTED_MODULE_57__)if ([
856
+ "PageHeader",
857
+ "CodeMirror",
858
+ "genStyleHook",
859
+ "default"
860
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
861
+ return _upload__WEBPACK_IMPORTED_MODULE_57__[key];
862
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
863
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
864
+ var _variable__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__("./variable");
865
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
866
+ for(var __WEBPACK_IMPORT_KEY__ in _variable__WEBPACK_IMPORTED_MODULE_58__)if ([
867
+ "PageHeader",
868
+ "CodeMirror",
869
+ "genStyleHook",
870
+ "default"
871
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
872
+ return _variable__WEBPACK_IMPORTED_MODULE_58__[key];
873
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
874
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
875
+ var _ant_design_pro_layout__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__("@ant-design/pro-layout");
876
+ var _tachybase_components__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__("@tachybase/components");
877
+ var __webpack_export_target__ = exports;
878
+ for(var __webpack_i__ in __webpack_exports__)__webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
879
+ if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, '__esModule', {
880
+ value: true
881
+ });