@tachybase/client 1.3.8 → 1.3.10

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 (2611) hide show
  1. package/es/api-client/APIClient.mjs +20 -20
  2. package/es/api-client/APIClientProvider.mjs +3 -3
  3. package/es/api-client/context.mjs +3 -3
  4. package/es/api-client/hooks/assign.mjs +8 -8
  5. package/es/api-client/hooks/useAPIClient.mjs +3 -3
  6. package/es/api-client/hooks/useRequest.mjs +14 -14
  7. package/es/api-client/hooks/useResource.mjs +2 -2
  8. package/es/application/AppSchemaComponentProvider.mjs +8 -8
  9. package/es/application/Application.mjs +95 -110
  10. package/es/application/CustomRouterContextProvider.mjs +72 -72
  11. package/es/application/NoticesManager.mjs +21 -21
  12. package/es/application/Plugin.mjs +1 -1
  13. package/es/application/PluginManager.mjs +5 -5
  14. package/es/application/RouterManager.mjs +26 -26
  15. package/es/application/SystemSettingsManager.mjs +9 -9
  16. package/es/application/UserSettingsManager.mjs +9 -9
  17. package/es/application/WebSocketClient.mjs +11 -11
  18. package/es/application/components/AppComponent.mjs +14 -14
  19. package/es/application/components/BlankComponent.mjs +2 -2
  20. package/es/application/components/MainComponent.mjs +8 -8
  21. package/es/application/components/RouterContextCleaner.mjs +5 -5
  22. package/es/application/components/SharePage.mjs +40 -40
  23. package/es/application/components/ShareSchemaComponent.mjs +5 -5
  24. package/es/application/components/defaultComponents.mjs +7 -7
  25. package/es/application/context.mjs +2 -2
  26. package/es/application/hoc/withDynamicSchemaProps.mjs +21 -21
  27. package/es/application/hooks/useApp.mjs +3 -3
  28. package/es/application/hooks/useGlobalVariable.mjs +6 -6
  29. package/es/application/hooks/usePlugin.mjs +2 -2
  30. package/es/application/hooks/useRouter.mjs +2 -2
  31. package/es/application/index.mjs +2 -3
  32. package/es/application/schema-initializer/components/SchemaInitializerActionModal.mjs +15 -15
  33. package/es/application/schema-initializer/components/SchemaInitializerButton.mjs +12 -12
  34. package/es/application/schema-initializer/components/SchemaInitializerChildren.mjs +12 -12
  35. package/es/application/schema-initializer/components/SchemaInitializerDivider.mjs +4 -4
  36. package/es/application/schema-initializer/components/SchemaInitializerItem.mjs +28 -28
  37. package/es/application/schema-initializer/components/SchemaInitializerItemGroup.mjs +16 -16
  38. package/es/application/schema-initializer/components/SchemaInitializerItems.mjs +3 -3
  39. package/es/application/schema-initializer/components/SchemaInitializerSelect.mjs +14 -14
  40. package/es/application/schema-initializer/components/SchemaInitializerSubMenu.mjs +29 -29
  41. package/es/application/schema-initializer/components/SchemaInitializerSwitch.mjs +11 -11
  42. package/es/application/schema-initializer/components/style.mjs +2 -2
  43. package/es/application/schema-initializer/context/index.mjs +5 -5
  44. package/es/application/schema-initializer/hoc/index.mjs +25 -25
  45. package/es/application/schema-initializer/hooks/index.mjs +20 -20
  46. package/es/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.mjs +4 -4
  47. package/es/application/schema-settings/SchemaSettingsDefaults.mjs +25 -25
  48. package/es/application/schema-settings/SchemaSettingsManager.mjs +3 -6
  49. package/es/application/schema-settings/components/SchemaSettingsChildren.mjs +31 -31
  50. package/es/application/schema-settings/components/SchemaSettingsIcon.mjs +8 -8
  51. package/es/application/schema-settings/components/SchemaSettingsWrapper.mjs +15 -15
  52. package/es/application/schema-settings/context/index.mjs +3 -3
  53. package/es/application/schema-settings/hooks/index.mjs +8 -8
  54. package/es/application/schema-toolbar/context/index.mjs +5 -5
  55. package/es/application/schema-toolbar/hooks/index.mjs +9 -9
  56. package/es/application/utils/globalDeps.mjs +52 -52
  57. package/es/application/utils/index.mjs +7 -7
  58. package/es/async-data-provider/index.mjs +8 -8
  59. package/es/block-provider/BlockProvider.mjs +79 -79
  60. package/es/block-provider/DetailsBlockProvider.mjs +33 -33
  61. package/es/block-provider/FilterFormBlockProvider.mjs +8 -8
  62. package/es/block-provider/FormBlockProvider.mjs +50 -50
  63. package/es/block-provider/FormFieldProvider.mjs +34 -34
  64. package/es/block-provider/MobileProvider.mjs +4 -4
  65. package/es/block-provider/PageLayout.mjs +2 -2
  66. package/es/block-provider/TableBlockProvider.mjs +37 -39
  67. package/es/block-provider/TableFieldProvider.mjs +32 -32
  68. package/es/block-provider/TableSelectorProvider.mjs +75 -77
  69. package/es/block-provider/TreeBlockProvider.mjs +30 -30
  70. package/es/block-provider/hooks/index.mjs +266 -280
  71. package/es/block-provider/hooks/useDataBlockSourceId.mjs +6 -6
  72. package/es/block-provider/hooks/useFormActiveFields.mjs +8 -8
  73. package/es/block-provider/hooks/useIsMobile.mjs +3 -3
  74. package/es/block-provider/hooks/useParsedFilter.mjs +20 -20
  75. package/es/built-in/acl/ACLPlugin.mjs +7 -7
  76. package/es/built-in/acl/ACLProvider.mjs +71 -71
  77. package/es/built-in/acl/ACLShortcut.mjs +9 -9
  78. package/es/built-in/acl/Configuration/ConfigureCenter.mjs +29 -29
  79. package/es/built-in/acl/Configuration/MenuConfigure.mjs +23 -23
  80. package/es/built-in/acl/Configuration/MenuItemsProvider.mjs +12 -12
  81. package/es/built-in/acl/Configuration/PermisionProvider.mjs +16 -16
  82. package/es/built-in/acl/Configuration/RoleConfigure.mjs +29 -29
  83. package/es/built-in/acl/Configuration/RoleTable.mjs +21 -21
  84. package/es/built-in/acl/Configuration/RolesResourcesActions.mjs +43 -43
  85. package/es/built-in/acl/Configuration/ScopeSelect.mjs +14 -14
  86. package/es/built-in/acl/Configuration/StrategyActions.mjs +18 -18
  87. package/es/built-in/acl/Configuration/index.mjs +7 -14
  88. package/es/built-in/acl/Configuration/schemas/roles.mjs +14 -14
  89. package/es/built-in/acl/Configuration/schemas/scopes.mjs +15 -15
  90. package/es/built-in/acl/Configuration/schemas/useRoleResourceValues.mjs +9 -12
  91. package/es/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.mjs +7 -7
  92. package/es/built-in/acl/style.mjs +2 -2
  93. package/es/built-in/admin-layout/AdminContent.mjs +5 -9
  94. package/es/built-in/admin-layout/AdminLayout.mjs +13 -13
  95. package/es/built-in/admin-layout/AdminLayoutPlugin.mjs +6 -6
  96. package/es/built-in/admin-layout/AdminProvider.mjs +13 -13
  97. package/es/built-in/admin-layout/AdminTabs.mjs +4 -4
  98. package/es/built-in/admin-layout/InternalAdminLayout.mjs +34 -34
  99. package/es/built-in/admin-layout/MenuEditor.mjs +39 -38
  100. package/es/built-in/admin-layout/NoticeArea.mjs +7 -7
  101. package/es/built-in/admin-layout/components/AddNewButton.mjs +22 -22
  102. package/es/built-in/admin-layout/components/WelcomeCard.mjs +24 -24
  103. package/es/built-in/admin-layout/style.mjs +2 -2
  104. package/es/built-in/attachment-preview/index.mjs +11 -11
  105. package/es/built-in/attachment-preview/previewers/file-default.mjs +11 -11
  106. package/es/built-in/attachment-preview/previewers/file-pdf.mjs +31 -31
  107. package/es/built-in/attachment-preview/previewers/file-pdf.style.mjs +2 -2
  108. package/es/built-in/attachment-preview/previewers/file-sheet.mjs +25 -25
  109. package/es/built-in/attachment-preview/previewers/file-sheet.style.mjs +2 -2
  110. package/es/built-in/attachment-preview/previewers/image-jpeg.mjs +3 -3
  111. package/es/built-in/attachment-preview/previewers/image-png.mjs +3 -3
  112. package/es/built-in/attachment-preview/previewers/image-svg.mjs +3 -3
  113. package/es/built-in/block-schema-component/index.mjs +73 -73
  114. package/es/built-in/built-in-collections/index.mjs +5 -5
  115. package/es/built-in/context-menu/ContextMenu.provider.mjs +21 -21
  116. package/es/built-in/context-menu/ContextMenuItemsProps.mjs +13 -13
  117. package/es/built-in/context-menu/index.mjs +14 -16
  118. package/es/built-in/context-menu/useContextMenu.mjs +3 -3
  119. package/es/built-in/document-title/index.mjs +20 -20
  120. package/es/built-in/dynamic-page/DynamicPage.mjs +14 -14
  121. package/es/built-in/dynamic-page/index.mjs +13 -13
  122. package/es/built-in/dynamic-page/style.mjs +3 -3
  123. package/es/built-in/dynamic-page/utils.mjs +1 -1
  124. package/es/built-in/index.mjs +112 -111
  125. package/es/built-in/locale/LocalePlugin.mjs +22 -22
  126. package/es/built-in/locale/loadConstrueLocale.mjs +2 -2
  127. package/es/built-in/page-style/CustomAdminHeader.mjs +5 -5
  128. package/es/built-in/page-style/PageStyle.provider.mjs +12 -12
  129. package/es/built-in/page-style/TabContent.mjs +18 -18
  130. package/es/built-in/page-style/TabHeader.mjs +23 -23
  131. package/es/built-in/page-style/TabHeader.style.mjs +2 -2
  132. package/es/built-in/page-style/index.mjs +8 -8
  133. package/es/built-in/page-style/usePageStyle.mjs +3 -3
  134. package/es/built-in/page-style/useTabSettings.mjs +17 -17
  135. package/es/built-in/pinned-list/PinnedPluginListProvider.mjs +17 -17
  136. package/es/built-in/pinned-list/PluginPinnedList.mjs +4 -4
  137. package/es/built-in/pinned-list/context.mjs +2 -2
  138. package/es/built-in/pm/PluginCard.mjs +54 -60
  139. package/es/built-in/pm/PluginDetail.mjs +83 -83
  140. package/es/built-in/pm/PluginDocument.mjs +20 -20
  141. package/es/built-in/pm/PluginForm/form/PluginNpmForm.mjs +17 -17
  142. package/es/built-in/pm/PluginForm/form/PluginUploadForm.mjs +15 -15
  143. package/es/built-in/pm/PluginForm/form/PluginUrlForm.mjs +15 -15
  144. package/es/built-in/pm/PluginForm/modal/PluginAddModal.mjs +20 -20
  145. package/es/built-in/pm/PluginForm/modal/PluginUpgradeModal.mjs +20 -20
  146. package/es/built-in/pm/PluginManager.mjs +66 -66
  147. package/es/built-in/pm/index.mjs +17 -21
  148. package/es/built-in/pm/style.mjs +2 -2
  149. package/es/built-in/quick-access/Action.mjs +25 -25
  150. package/es/built-in/quick-access/Block.mjs +40 -40
  151. package/es/built-in/quick-access/CustomRequestActionSchemaInitializerItem.mjs +12 -12
  152. package/es/built-in/quick-access/LinkActionSchemaInitializerItem.mjs +13 -13
  153. package/es/built-in/quick-access/ModalActionSchemaInitializerItem.mjs +19 -19
  154. package/es/built-in/quick-access/PopupActionSchemaInitializerItem.mjs +12 -12
  155. package/es/built-in/quick-access/SchemaSettingsBlockTitleItem.mjs +11 -11
  156. package/es/built-in/quick-access/blockInitializerItem.mjs +6 -6
  157. package/es/built-in/quick-access/blockSettings.mjs +15 -15
  158. package/es/built-in/quick-access/configureActions.mjs +4 -4
  159. package/es/built-in/quick-access/index.mjs +21 -21
  160. package/es/built-in/scroll-assistant/ScrollAssistant.provider.mjs +11 -11
  161. package/es/built-in/scroll-assistant/ScrollAssistantStatus.provider.mjs +6 -6
  162. package/es/built-in/scroll-assistant/index.mjs +8 -8
  163. package/es/built-in/scroll-assistant/useJoystick.mjs +5 -7
  164. package/es/built-in/setting-layout/AdminSettings.mjs +27 -27
  165. package/es/built-in/setting-layout/SettingLayout.mjs +38 -38
  166. package/es/built-in/setting-layout/SettingsCenterDropdown.mjs +18 -18
  167. package/es/built-in/setting-layout/style.mjs +2 -2
  168. package/es/built-in/system-settings/SystemSettingsProvider.mjs +7 -7
  169. package/es/built-in/system-settings/SystemSettingsShortcut.mjs +27 -27
  170. package/es/built-in/system-settings/index.mjs +5 -8
  171. package/es/built-in/system-version/SystemVersion.provider.mjs +12 -12
  172. package/es/built-in/system-version/index.mjs +4 -4
  173. package/es/built-in/user-settings/UserSettingsLayout.mjs +37 -37
  174. package/es/built-in/user-settings/index.mjs +9 -9
  175. package/es/built-in/user-settings/style.mjs +2 -2
  176. package/es/collection-manager/CollectionHistoryProvider.mjs +13 -13
  177. package/es/collection-manager/CollectionManagerProvider.mjs +18 -18
  178. package/es/collection-manager/CollectionManagerSchemaComponentProvider.mjs +13 -13
  179. package/es/collection-manager/CollectionProvider_deprecated.mjs +6 -6
  180. package/es/collection-manager/Configuration/AddCollectionAction.mjs +60 -60
  181. package/es/collection-manager/Configuration/AddFieldAction.mjs +64 -64
  182. package/es/collection-manager/Configuration/AddSubFieldAction.mjs +38 -38
  183. package/es/collection-manager/Configuration/DeleteCollectionAction.mjs +43 -43
  184. package/es/collection-manager/Configuration/EditCollectionAction.mjs +44 -44
  185. package/es/collection-manager/Configuration/EditFieldAction.mjs +55 -55
  186. package/es/collection-manager/Configuration/EditSubFieldAction.mjs +32 -32
  187. package/es/collection-manager/Configuration/ImportCollectionMetaAction.mjs +30 -30
  188. package/es/collection-manager/Configuration/ImportXlsx/ImportXlsxMetaAction.mjs +53 -53
  189. package/es/collection-manager/Configuration/ImportXlsx/XlsxCollectionSchema.mjs +4 -4
  190. package/es/collection-manager/Configuration/ImportXlsx/XlsxEditFieldAction.mjs +17 -17
  191. package/es/collection-manager/Configuration/ImportXlsx/setUpdateXlsxCollectionField.mjs +15 -21
  192. package/es/collection-manager/Configuration/ImportXlsx/xlsxFieldsConfigure.mjs +53 -53
  193. package/es/collection-manager/Configuration/ImportXlsx/xlsxFormValueContextProvider.mjs +3 -3
  194. package/es/collection-manager/Configuration/ImportXlsx/xlsxImportAction.mjs +39 -39
  195. package/es/collection-manager/Configuration/ImportXlsx/xlsxPreviewTable.mjs +7 -7
  196. package/es/collection-manager/Configuration/OverridingCollectionField.mjs +51 -51
  197. package/es/collection-manager/Configuration/SyncFieldsAction.mjs +48 -48
  198. package/es/collection-manager/Configuration/SyncSQLFieldsAction.mjs +40 -40
  199. package/es/collection-manager/Configuration/ViewInheritedField.mjs +40 -40
  200. package/es/collection-manager/Configuration/components/CollectionCategory.mjs +8 -8
  201. package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.mjs +9 -9
  202. package/es/collection-manager/Configuration/components/CollectionTemplateTag.mjs +9 -9
  203. package/es/collection-manager/Configuration/components/FieldSummary.mjs +9 -9
  204. package/es/collection-manager/Configuration/components/Summary.mjs +16 -16
  205. package/es/collection-manager/Configuration/components/TemplateSummary.mjs +9 -9
  206. package/es/collection-manager/Configuration/components/index.mjs +96 -96
  207. package/es/collection-manager/Configuration/index.mjs +2 -2
  208. package/es/collection-manager/Configuration/interfaces.mjs +4 -4
  209. package/es/collection-manager/ResourceActionProvider.mjs +33 -33
  210. package/es/collection-manager/action-hooks.mjs +103 -104
  211. package/es/collection-manager/collectionPlugin.mjs +61 -61
  212. package/es/collection-manager/context.mjs +2 -2
  213. package/es/collection-manager/hooks/useCollectionDataSource.mjs +6 -6
  214. package/es/collection-manager/hooks/useCollectionField_deprecated.mjs +10 -10
  215. package/es/collection-manager/hooks/useCollectionManager_deprecated.mjs +57 -57
  216. package/es/collection-manager/hooks/useCollection_deprecated.mjs +17 -17
  217. package/es/collection-manager/hooks/useDialect.mjs +5 -5
  218. package/es/collection-manager/index.mjs +5 -13
  219. package/es/collection-manager/interfaces/checkbox.mjs +5 -5
  220. package/es/collection-manager/interfaces/checkboxGroup.mjs +6 -6
  221. package/es/collection-manager/interfaces/chinaRegion.mjs +9 -9
  222. package/es/collection-manager/interfaces/collection.mjs +6 -6
  223. package/es/collection-manager/interfaces/color.mjs +5 -5
  224. package/es/collection-manager/interfaces/components/index.mjs +14 -14
  225. package/es/collection-manager/interfaces/createdAt.mjs +6 -6
  226. package/es/collection-manager/interfaces/createdBy.mjs +6 -6
  227. package/es/collection-manager/interfaces/datetime.mjs +6 -6
  228. package/es/collection-manager/interfaces/email.mjs +6 -6
  229. package/es/collection-manager/interfaces/icon.mjs +4 -4
  230. package/es/collection-manager/interfaces/id.mjs +4 -4
  231. package/es/collection-manager/interfaces/input.mjs +13 -13
  232. package/es/collection-manager/interfaces/integer.mjs +13 -13
  233. package/es/collection-manager/interfaces/json.mjs +11 -11
  234. package/es/collection-manager/interfaces/linkTo.mjs +8 -8
  235. package/es/collection-manager/interfaces/m2m.mjs +14 -14
  236. package/es/collection-manager/interfaces/m2o.mjs +10 -10
  237. package/es/collection-manager/interfaces/markdown.mjs +8 -8
  238. package/es/collection-manager/interfaces/multipleSelect.mjs +6 -6
  239. package/es/collection-manager/interfaces/nanoid.mjs +4 -4
  240. package/es/collection-manager/interfaces/number.mjs +9 -9
  241. package/es/collection-manager/interfaces/o2m.mjs +8 -8
  242. package/es/collection-manager/interfaces/o2o.mjs +22 -22
  243. package/es/collection-manager/interfaces/password.mjs +8 -8
  244. package/es/collection-manager/interfaces/percent.mjs +14 -14
  245. package/es/collection-manager/interfaces/phone.mjs +6 -6
  246. package/es/collection-manager/interfaces/properties/index.mjs +4 -4
  247. package/es/collection-manager/interfaces/properties/operators.mjs +5 -5
  248. package/es/collection-manager/interfaces/radioGroup.mjs +6 -6
  249. package/es/collection-manager/interfaces/richText.mjs +8 -8
  250. package/es/collection-manager/interfaces/select.mjs +6 -6
  251. package/es/collection-manager/interfaces/sort.mjs +8 -8
  252. package/es/collection-manager/interfaces/subTable.mjs +7 -7
  253. package/es/collection-manager/interfaces/tableoid.mjs +4 -4
  254. package/es/collection-manager/interfaces/textarea.mjs +8 -8
  255. package/es/collection-manager/interfaces/time.mjs +5 -5
  256. package/es/collection-manager/interfaces/unixTimestamp.mjs +5 -5
  257. package/es/collection-manager/interfaces/updatedAt.mjs +6 -6
  258. package/es/collection-manager/interfaces/updatedBy.mjs +6 -6
  259. package/es/collection-manager/interfaces/url.mjs +5 -5
  260. package/es/collection-manager/interfaces/uuid.mjs +4 -4
  261. package/es/collection-manager/mixins/InheritanceCollectionMixin.mjs +13 -13
  262. package/es/collection-manager/sub-table.mjs +42 -42
  263. package/es/collection-manager/templates/components/PresetFields.mjs +22 -22
  264. package/es/collection-manager/templates/components/PreviewFields.mjs +57 -57
  265. package/es/collection-manager/templates/components/PreviewTable.mjs +34 -34
  266. package/es/collection-manager/templates/components/sql-collection/FieldsConfigure.mjs +75 -77
  267. package/es/collection-manager/templates/components/sql-collection/PreviewTable.mjs +13 -13
  268. package/es/collection-manager/templates/components/sql-collection/SQLInput.mjs +21 -21
  269. package/es/collection-manager/templates/components/sql-collection/SQLRequestProvider.mjs +15 -15
  270. package/es/collection-manager/templates/expression.mjs +6 -6
  271. package/es/collection-manager/templates/general.mjs +4 -4
  272. package/es/collection-manager/templates/import.mjs +2 -2
  273. package/es/collection-manager/templates/properties/index.mjs +3 -3
  274. package/es/collection-manager/templates/sql.mjs +11 -11
  275. package/es/collection-manager/templates/tree.mjs +4 -4
  276. package/es/collection-manager/templates/view.mjs +8 -8
  277. package/es/collection-manager/templates/xlsx.mjs +2 -2
  278. package/es/collection-manager/utils.mjs +1 -1
  279. package/es/common/SelectWithTitle.mjs +7 -7
  280. package/es/common/appInfo/CurrentAppInfoProvider.mjs +7 -7
  281. package/es/common/useFieldComponentName.mjs +12 -12
  282. package/es/common/useNiceDropdownHeight.mjs +4 -4
  283. package/es/data-source/collection/AssociationProvider.mjs +17 -17
  284. package/es/data-source/collection/Collection.mjs +2 -2
  285. package/es/data-source/collection/CollectionManager.mjs +7 -10
  286. package/es/data-source/collection/CollectionManagerProvider.mjs +13 -13
  287. package/es/data-source/collection/CollectionProvider.mjs +12 -12
  288. package/es/data-source/collection/ExtendCollectionsProvider.mjs +10 -10
  289. package/es/data-source/collection-field/CollectionField.mjs +26 -26
  290. package/es/data-source/collection-field/CollectionFieldProvider.mjs +15 -15
  291. package/es/data-source/collection-field-interface/CollectionFieldInterface.mjs +2 -2
  292. package/es/data-source/collection-field-interface/CollectionFieldInterfaceManager.mjs +2 -2
  293. package/es/data-source/collection-fields-to-initializer-items/CollectionFieldsToFormInitializerItems.mjs +8 -8
  294. package/es/data-source/collection-fields-to-initializer-items/CollectionFieldsToInitializerItems.mjs +8 -8
  295. package/es/data-source/collection-fields-to-initializer-items/items/AssociationCollectionFields.mjs +7 -7
  296. package/es/data-source/collection-fields-to-initializer-items/items/ParentCollectionFields.mjs +6 -6
  297. package/es/data-source/collection-fields-to-initializer-items/items/SelfFields.mjs +6 -6
  298. package/es/data-source/collection-fields-to-initializer-items/items/index.mjs +4 -7
  299. package/es/data-source/collection-fields-to-initializer-items/utils/getInitializerItemsByFields.mjs +5 -5
  300. package/es/data-source/collection-fields-to-initializer-items/utils/useCollectionFieldContext.mjs +17 -17
  301. package/es/data-source/collection-record/CollectionRecordProvider.mjs +20 -21
  302. package/es/data-source/collection-record/isNewRecord.mjs +2 -2
  303. package/es/data-source/collection-template/CollectionTemplateManager.mjs +2 -2
  304. package/es/data-source/commonsSettingsItem/fieldComponent.mjs +20 -20
  305. package/es/data-source/components/CollectionDeletedPlaceholder.mjs +26 -26
  306. package/es/data-source/components/DataSourceApplicationProvider.mjs +5 -5
  307. package/es/data-source/data-block/DataBlockProvider.mjs +24 -24
  308. package/es/data-source/data-block/DataBlockRequestProvider.mjs +31 -31
  309. package/es/data-source/data-block/DataBlockResourceProvider.mjs +19 -19
  310. package/es/data-source/data-block/context/ConfigSetting.provider.mjs +3 -3
  311. package/es/data-source/data-source/DataSource.mjs +2 -2
  312. package/es/data-source/data-source/DataSourceManager.mjs +9 -9
  313. package/es/data-source/data-source/DataSourceManagerProvider.mjs +5 -5
  314. package/es/data-source/data-source/DataSourceProvider.mjs +22 -22
  315. package/es/data-source/utils.mjs +5 -5
  316. package/es/filter-provider/FilterProvider.mjs +29 -29
  317. package/es/filter-provider/utils.mjs +38 -38
  318. package/es/flag-provider/FlagProvider.mjs +4 -4
  319. package/es/flag-provider/hooks/useFlag.mjs +3 -3
  320. package/es/hooks/useMenuItem.mjs +21 -21
  321. package/es/hooks/useViewport.mjs +5 -5
  322. package/es/i18n/i18n.mjs +7 -7
  323. package/es/icon/Icon.mjs +19 -19
  324. package/es/icon/preloaded.mjs +24 -24
  325. package/es/index.mjs +5 -9
  326. package/es/locale/index.mjs +49 -49
  327. package/es/modules/actions/ActionSchemaToolbar.mjs +3 -3
  328. package/es/modules/actions/add-child/CreateChildInitializer.mjs +3 -3
  329. package/es/modules/actions/add-child/addChildActionSettings.mjs +19 -19
  330. package/es/modules/actions/add-new/CreateActionInitializer.mjs +5 -5
  331. package/es/modules/actions/add-new/addNewActionSettings.mjs +18 -18
  332. package/es/modules/actions/add-new/createFormBlockInitializers.mjs +8 -8
  333. package/es/modules/actions/add-record/CustomizeAddRecordActionInitializer.mjs +5 -5
  334. package/es/modules/actions/add-record/customizeAddRecordActionSettings.mjs +10 -10
  335. package/es/modules/actions/add-record/customizeCreateFormBlockInitializers.mjs +4 -4
  336. package/es/modules/actions/associate/AssociateActionInitializer.mjs +5 -5
  337. package/es/modules/actions/associate/AssociateActionProvider.mjs +20 -20
  338. package/es/modules/actions/associate/AssociateActionSettings.mjs +18 -18
  339. package/es/modules/actions/bulk-destroy/BulkDestroyActionInitializer.mjs +5 -5
  340. package/es/modules/actions/bulk-destroy/bulkDeleteActionSettings.mjs +9 -9
  341. package/es/modules/actions/delete/DestroyActionInitializer.mjs +3 -3
  342. package/es/modules/actions/delete/deleteActionSettings.mjs +16 -16
  343. package/es/modules/actions/disassociate/DisassociateActionInitializer.mjs +3 -3
  344. package/es/modules/actions/disassociate/disassociateActionSettings.mjs +12 -12
  345. package/es/modules/actions/expand-collapse/ExpandableActionInitializer.mjs +3 -3
  346. package/es/modules/actions/expand-collapse/expendableActionSettings.mjs +18 -18
  347. package/es/modules/actions/filter/FilterActionInitializer.mjs +3 -3
  348. package/es/modules/actions/filter/filterActionSettings.mjs +12 -12
  349. package/es/modules/actions/link/customizeLinkActionSettings.mjs +29 -29
  350. package/es/modules/actions/link/hooks.mjs +23 -23
  351. package/es/modules/actions/refresh/RefreshActionInitializer.mjs +3 -3
  352. package/es/modules/actions/refresh/refreshActionSettings.mjs +9 -9
  353. package/es/modules/actions/save-record/SaveRecordActionInitializer.mjs +5 -5
  354. package/es/modules/actions/save-record/customizeSaveRecordActionSettings.mjs +16 -16
  355. package/es/modules/actions/submit/CreateSubmitActionInitializer.mjs +3 -3
  356. package/es/modules/actions/submit/UpdateSubmitActionInitializer.mjs +3 -3
  357. package/es/modules/actions/submit/createSubmitActionSettings.mjs +40 -40
  358. package/es/modules/actions/submit/updateSubmitActionSettings.mjs +27 -27
  359. package/es/modules/actions/update-record/UpdateRecordActionInitializer.mjs +5 -5
  360. package/es/modules/actions/update-record/customizeUpdateRecordActionSettings.mjs +20 -20
  361. package/es/modules/actions/view-edit-popup/PopupActionInitializer.mjs +5 -5
  362. package/es/modules/actions/view-edit-popup/RecordFormBlockInitializers.mjs +4 -4
  363. package/es/modules/actions/view-edit-popup/UpdateActionInitializer.mjs +3 -3
  364. package/es/modules/actions/view-edit-popup/ViewActionInitializer.mjs +3 -3
  365. package/es/modules/actions/view-edit-popup/customizePopupActionSettings.mjs +15 -15
  366. package/es/modules/actions/view-edit-popup/editActionSettings.mjs +13 -13
  367. package/es/modules/actions/view-edit-popup/viewActionSettings.mjs +15 -15
  368. package/es/modules/blocks/BlockSchemaToolbar.mjs +17 -17
  369. package/es/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.mjs +2 -2
  370. package/es/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.mjs +14 -14
  371. package/es/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.mjs +3 -3
  372. package/es/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.mjs +40 -40
  373. package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.mjs +2 -2
  374. package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.mjs +2 -2
  375. package/es/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.mjs +19 -19
  376. package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.mjs +4 -4
  377. package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.mjs +16 -16
  378. package/es/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.mjs +21 -21
  379. package/es/modules/blocks/data-blocks/details-single/createDetailsUISchema.mjs +3 -3
  380. package/es/modules/blocks/data-blocks/details-single/detailsBlockSettings.mjs +11 -11
  381. package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.mjs +7 -7
  382. package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.mjs +2 -2
  383. package/es/modules/blocks/data-blocks/form/CreateFormBlockInitializer.mjs +18 -18
  384. package/es/modules/blocks/data-blocks/form/FilterItemCustomSettings.mjs +59 -59
  385. package/es/modules/blocks/data-blocks/form/FormBlockInitializer.mjs +18 -18
  386. package/es/modules/blocks/data-blocks/form/FormItemSchemaToolbar.mjs +3 -3
  387. package/es/modules/blocks/data-blocks/form/RecordFormBlockInitializer.mjs +26 -26
  388. package/es/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.mjs +3 -3
  389. package/es/modules/blocks/data-blocks/form/createEditFormBlockUISchema.mjs +3 -3
  390. package/es/modules/blocks/data-blocks/form/createFormActionInitializers.mjs +2 -2
  391. package/es/modules/blocks/data-blocks/form/createFormBlockSettings.mjs +27 -27
  392. package/es/modules/blocks/data-blocks/form/editFormBlockSettings.mjs +16 -16
  393. package/es/modules/blocks/data-blocks/form/fieldSettingsFormItem.mjs +87 -87
  394. package/es/modules/blocks/data-blocks/form/formActionInitializers.mjs +2 -2
  395. package/es/modules/blocks/data-blocks/form/formItemInitializers.mjs +9 -9
  396. package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.mjs +2 -2
  397. package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.mjs +2 -2
  398. package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.mjs +4 -4
  399. package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.mjs +2 -2
  400. package/es/modules/blocks/data-blocks/form/updateFormActionInitializers.mjs +2 -2
  401. package/es/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.mjs +5 -5
  402. package/es/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.mjs +12 -12
  403. package/es/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.mjs +87 -87
  404. package/es/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.mjs +7 -7
  405. package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.mjs +4 -4
  406. package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.mjs +4 -4
  407. package/es/modules/blocks/data-blocks/list/ListActionInitializers.mjs +5 -5
  408. package/es/modules/blocks/data-blocks/list/ListBlockInitializer.mjs +12 -12
  409. package/es/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.mjs +2 -2
  410. package/es/modules/blocks/data-blocks/list/listBlockSettings.mjs +42 -42
  411. package/es/modules/blocks/data-blocks/list/listItemActionInitializers.mjs +7 -7
  412. package/es/modules/blocks/data-blocks/table/TableActionColumnInitializers.mjs +40 -40
  413. package/es/modules/blocks/data-blocks/table/TableActionInitializers.mjs +13 -13
  414. package/es/modules/blocks/data-blocks/table/TableBlockInitializer.mjs +12 -12
  415. package/es/modules/blocks/data-blocks/table/TableColumnInitializers.mjs +22 -22
  416. package/es/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.mjs +7 -7
  417. package/es/modules/blocks/data-blocks/table/createTableBlockUISchema.mjs +3 -3
  418. package/es/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.mjs +9 -9
  419. package/es/modules/blocks/data-blocks/table/hooks/useTableBlockProps.mjs +39 -42
  420. package/es/modules/blocks/data-blocks/table/tableBlockSettings.mjs +85 -85
  421. package/es/modules/blocks/data-blocks/table/tableColumnSettings.mjs +61 -61
  422. package/es/modules/blocks/data-blocks/table/utils.mjs +8 -8
  423. package/es/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.mjs +11 -11
  424. package/es/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.mjs +2 -2
  425. package/es/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.mjs +55 -55
  426. package/es/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.mjs +3 -3
  427. package/es/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.mjs +10 -10
  428. package/es/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.mjs +2 -2
  429. package/es/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.mjs +15 -15
  430. package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.mjs +50 -50
  431. package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.mjs +16 -16
  432. package/es/modules/blocks/filter-blocks/form/FilterFormActionInitializers.mjs +2 -2
  433. package/es/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.mjs +11 -11
  434. package/es/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.mjs +3 -3
  435. package/es/modules/blocks/filter-blocks/form/filterFormBlockSettings.mjs +17 -17
  436. package/es/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.mjs +56 -56
  437. package/es/modules/blocks/filter-blocks/form/filterFormItemInitializers.mjs +8 -8
  438. package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.mjs +2 -2
  439. package/es/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.mjs +2 -2
  440. package/es/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.mjs +10 -10
  441. package/es/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.mjs +17 -17
  442. package/es/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.mjs +52 -52
  443. package/es/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.mjs +8 -8
  444. package/es/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.mjs +9 -9
  445. package/es/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.mjs +7 -7
  446. package/es/modules/blocks/other-blocks/markdown/markdownBlockSettings.mjs +6 -6
  447. package/es/modules/blocks/useParentRecordCommon.mjs +2 -2
  448. package/es/modules/blocks/useSourceId.mjs +5 -5
  449. package/es/modules/blocks/useSourceKey.mjs +2 -2
  450. package/es/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.mjs +25 -25
  451. package/es/modules/fields/component/Cascader/cascaderComponentFieldSettings.mjs +92 -92
  452. package/es/modules/fields/component/Checkbox/checkboxComponentFieldSettings.mjs +12 -12
  453. package/es/modules/fields/component/CustomTitle/customTitleComponentFieldSettings.mjs +27 -27
  454. package/es/modules/fields/component/DatePicker/datePickerComponentFieldSettings.mjs +8 -8
  455. package/es/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.mjs +35 -35
  456. package/es/modules/fields/component/FileManager/fileManagerComponentFieldSettings.mjs +48 -48
  457. package/es/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.mjs +18 -18
  458. package/es/modules/fields/component/Input/inputComponentFieldsSettings.mjs +2 -2
  459. package/es/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.mjs +31 -31
  460. package/es/modules/fields/component/Nester/subformComponentFieldSettings.mjs +32 -32
  461. package/es/modules/fields/component/Picker/TableSelectorInitializers.mjs +6 -6
  462. package/es/modules/fields/component/Picker/recordPickerComponentFieldSettings.mjs +44 -44
  463. package/es/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.mjs +28 -28
  464. package/es/modules/fields/component/Radio/radioComponentFieldSettings.mjs +12 -12
  465. package/es/modules/fields/component/Select/selectComponentFieldSettings.mjs +106 -106
  466. package/es/modules/fields/component/SubTable/secondLevelSelect.mjs +28 -28
  467. package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.mjs +61 -61
  468. package/es/modules/fields/component/Tag/tagComponentFieldSettings.mjs +43 -43
  469. package/es/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.mjs +8 -8
  470. package/es/modules/fields/initializer/CollectionFieldInitializer.mjs +5 -5
  471. package/es/modules/fields/initializer/TableCollectionFieldInitializer.mjs +5 -5
  472. package/es/modules/menu/GroupItem.mjs +21 -21
  473. package/es/modules/menu/LinkMenuItem.mjs +21 -21
  474. package/es/modules/menu/PageMenuItem.mjs +22 -22
  475. package/es/modules/menu/UploadMenuItem.mjs +23 -23
  476. package/es/modules/menu/menuItemInitializer.mjs +8 -8
  477. package/es/modules/page/BlockInitializers.mjs +4 -4
  478. package/es/modules/variable/DeclareVariable.mjs +4 -4
  479. package/es/modules/variable/useVariable.mjs +3 -3
  480. package/es/powered-by/index.mjs +6 -6
  481. package/es/record-provider/index.mjs +16 -16
  482. package/es/route-switch/RouteSchemaComponent.mjs +5 -5
  483. package/es/schema-component/antd/AntdSchemaComponentProvider.mjs +22 -22
  484. package/es/schema-component/antd/__builtins__/hooks/useConfig.mjs +4 -4
  485. package/es/schema-component/antd/__builtins__/hooks/usePrefixCls.mjs +5 -5
  486. package/es/schema-component/antd/__builtins__/hooks/useToken.mjs +2 -2
  487. package/es/schema-component/antd/__builtins__/loading.mjs +4 -4
  488. package/es/schema-component/antd/__builtins__/portal.mjs +14 -14
  489. package/es/schema-component/antd/__builtins__/render.mjs +4 -7
  490. package/es/schema-component/antd/__builtins__/style.mjs +8 -8
  491. package/es/schema-component/antd/action/Action.Area.mjs +37 -37
  492. package/es/schema-component/antd/action/Action.Area.style.mjs +2 -2
  493. package/es/schema-component/antd/action/Action.Container.mjs +19 -19
  494. package/es/schema-component/antd/action/Action.Designer.mjs +175 -175
  495. package/es/schema-component/antd/action/Action.Drawer.mjs +35 -35
  496. package/es/schema-component/antd/action/Action.Drawer.style.mjs +2 -2
  497. package/es/schema-component/antd/action/Action.Link.mjs +7 -7
  498. package/es/schema-component/antd/action/Action.Modal.mjs +38 -38
  499. package/es/schema-component/antd/action/Action.Modal.style.mjs +2 -2
  500. package/es/schema-component/antd/action/Action.Page.mjs +23 -23
  501. package/es/schema-component/antd/action/Action.Sheet.mjs +26 -26
  502. package/es/schema-component/antd/action/Action.mjs +91 -91
  503. package/es/schema-component/antd/action/Action.style.mjs +4 -4
  504. package/es/schema-component/antd/action/ActionBar.mjs +37 -37
  505. package/es/schema-component/antd/action/context.mjs +6 -6
  506. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfAction.mjs +13 -13
  507. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.mjs +8 -8
  508. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfModal.mjs +8 -8
  509. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.mjs +8 -8
  510. package/es/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.mjs +4 -4
  511. package/es/schema-component/antd/action/hooks/useSetAriaLabelForModal.mjs +4 -4
  512. package/es/schema-component/antd/action/hooks/useSetAriaLabelForPopover.mjs +4 -4
  513. package/es/schema-component/antd/action/hooks.mjs +27 -29
  514. package/es/schema-component/antd/action/utils.mjs +18 -18
  515. package/es/schema-component/antd/appends-tree-select/AppendsTreeSelect.mjs +26 -29
  516. package/es/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.mjs +26 -29
  517. package/es/schema-component/antd/association-cascader/AssociationCascader.mjs +18 -19
  518. package/es/schema-component/antd/association-field/AssociationFieldProvider.mjs +29 -32
  519. package/es/schema-component/antd/association-field/AssociationSelect.mjs +51 -51
  520. package/es/schema-component/antd/association-field/Editable.mjs +54 -56
  521. package/es/schema-component/antd/association-field/FileManager.mjs +57 -57
  522. package/es/schema-component/antd/association-field/InternalCascadeSelect.mjs +94 -97
  523. package/es/schema-component/antd/association-field/InternalCascader.mjs +92 -95
  524. package/es/schema-component/antd/association-field/InternalDrawerSubTable.mjs +33 -33
  525. package/es/schema-component/antd/association-field/InternalNester.mjs +26 -26
  526. package/es/schema-component/antd/association-field/InternalPicker.mjs +56 -56
  527. package/es/schema-component/antd/association-field/InternalPopoverNester.mjs +31 -31
  528. package/es/schema-component/antd/association-field/InternalSubTable.mjs +33 -33
  529. package/es/schema-component/antd/association-field/InternalTag.mjs +52 -52
  530. package/es/schema-component/antd/association-field/InternalViewer.mjs +61 -61
  531. package/es/schema-component/antd/association-field/Nester.mjs +68 -68
  532. package/es/schema-component/antd/association-field/ReadPretty.mjs +19 -19
  533. package/es/schema-component/antd/association-field/SubTable.mjs +62 -62
  534. package/es/schema-component/antd/association-field/SubTabs/InternalCollapse.mjs +72 -72
  535. package/es/schema-component/antd/association-field/SubTabs/hook.mjs +20 -20
  536. package/es/schema-component/antd/association-field/SubTabs/styles.mjs +3 -3
  537. package/es/schema-component/antd/association-field/components/CreateRecordAction.mjs +24 -24
  538. package/es/schema-component/antd/association-field/context.mjs +2 -2
  539. package/es/schema-component/antd/association-field/hooks.mjs +52 -52
  540. package/es/schema-component/antd/association-field/index.mjs +15 -15
  541. package/es/schema-component/antd/association-field/schema.mjs +2 -2
  542. package/es/schema-component/antd/association-field/util.mjs +16 -16
  543. package/es/schema-component/antd/association-filter/ActionBarAssociationFilterAction.mjs +19 -19
  544. package/es/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.mjs +19 -19
  545. package/es/schema-component/antd/association-filter/AssociationFilter.Initializer.mjs +6 -6
  546. package/es/schema-component/antd/association-filter/AssociationFilter.Item.Designer.mjs +34 -34
  547. package/es/schema-component/antd/association-filter/AssociationFilter.Item.mjs +46 -46
  548. package/es/schema-component/antd/association-filter/AssociationFilter.Item.style.mjs +4 -4
  549. package/es/schema-component/antd/association-filter/AssociationFilter.mjs +35 -35
  550. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDelete.mjs +15 -15
  551. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.mjs +10 -10
  552. package/es/schema-component/antd/association-select/AssociationSelect.mjs +119 -119
  553. package/es/schema-component/antd/association-select/ReadPretty.mjs +9 -9
  554. package/es/schema-component/antd/association-select/useServiceOptions.mjs +19 -19
  555. package/es/schema-component/antd/auto-complete/AutoComplete.mjs +19 -19
  556. package/es/schema-component/antd/block-item/BlockItem.mjs +17 -17
  557. package/es/schema-component/antd/block-item/BlockToolbar.mjs +34 -34
  558. package/es/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.mjs +13 -13
  559. package/es/schema-component/antd/block-item/useBlockToolbar.mjs +22 -22
  560. package/es/schema-component/antd/card-item/CardItem.mjs +11 -11
  561. package/es/schema-component/antd/card-item/style.mjs +4 -4
  562. package/es/schema-component/antd/cascader/Cascader.mjs +27 -27
  563. package/es/schema-component/antd/cascader/ReadPretty.mjs +8 -8
  564. package/es/schema-component/antd/checkbox/Checkbox.mjs +35 -35
  565. package/es/schema-component/antd/collection-select/CollectionSelect.mjs +45 -45
  566. package/es/schema-component/antd/color-picker/ColorPicker.mjs +18 -18
  567. package/es/schema-component/antd/color-picker/ReadPretty.mjs +8 -8
  568. package/es/schema-component/antd/color-picker/util.mjs +12 -12
  569. package/es/schema-component/antd/color-select/ColorSelect.mjs +18 -18
  570. package/es/schema-component/antd/cron/Cron.mjs +20 -20
  571. package/es/schema-component/antd/cron/CronSet.mjs +30 -30
  572. package/es/schema-component/antd/custom-cascader/CustomCascader.mjs +16 -16
  573. package/es/schema-component/antd/custom-cascader/ReadPretty.mjs +8 -8
  574. package/es/schema-component/antd/date-picker/DatePicker.mjs +25 -28
  575. package/es/schema-component/antd/date-picker/ReadPretty.mjs +20 -20
  576. package/es/schema-component/antd/date-picker/util.mjs +13 -13
  577. package/es/schema-component/antd/details/Details.mjs +11 -11
  578. package/es/schema-component/antd/error-fallback/ErrorFallback.mjs +15 -15
  579. package/es/schema-component/antd/expand-action/Expand.Action.Design.mjs +14 -14
  580. package/es/schema-component/antd/expand-action/Expand.Action.mjs +23 -23
  581. package/es/schema-component/antd/expand-action/index.mjs +5 -5
  582. package/es/schema-component/antd/filter/DynamicComponent.mjs +17 -17
  583. package/es/schema-component/antd/filter/Filter.Action.Designer.mjs +30 -30
  584. package/es/schema-component/antd/filter/Filter.mjs +24 -24
  585. package/es/schema-component/antd/filter/FilterAction.mjs +41 -41
  586. package/es/schema-component/antd/filter/FilterGroup.mjs +29 -29
  587. package/es/schema-component/antd/filter/FilterItem.mjs +27 -27
  588. package/es/schema-component/antd/filter/FilterItems.mjs +11 -11
  589. package/es/schema-component/antd/filter/SaveDefaultValue.mjs +11 -11
  590. package/es/schema-component/antd/filter/context.mjs +4 -4
  591. package/es/schema-component/antd/filter/useFilterActionProps.mjs +40 -40
  592. package/es/schema-component/antd/filter/useOperators.mjs +10 -10
  593. package/es/schema-component/antd/filter/useValues.mjs +32 -32
  594. package/es/schema-component/antd/form/Form.Designer.mjs +5 -5
  595. package/es/schema-component/antd/form/Form.Settings.mjs +6 -6
  596. package/es/schema-component/antd/form/Form.mjs +46 -46
  597. package/es/schema-component/antd/form-dialog/index.mjs +42 -42
  598. package/es/schema-component/antd/form-item/FormItem.FilterFormDesigner.mjs +3 -3
  599. package/es/schema-component/antd/form-item/FormItem.FilterFormSettings.mjs +45 -45
  600. package/es/schema-component/antd/form-item/FormItem.Settings.mjs +208 -208
  601. package/es/schema-component/antd/form-item/FormItem.mjs +49 -49
  602. package/es/schema-component/antd/form-item/SchemaSettingOptions.mjs +114 -114
  603. package/es/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.mjs +39 -39
  604. package/es/schema-component/antd/form-item/hooks/useParseDefaultValue.mjs +38 -38
  605. package/es/schema-component/antd/form-item/hooks/useSpecialCase.mjs +19 -19
  606. package/es/schema-component/antd/form-item/utils.mjs +2 -2
  607. package/es/schema-component/antd/form-tab/index.mjs +37 -37
  608. package/es/schema-component/antd/form-v2/Form.Designer.mjs +13 -13
  609. package/es/schema-component/antd/form-v2/Form.FilterDesigner.mjs +7 -7
  610. package/es/schema-component/antd/form-v2/Form.Settings.mjs +57 -57
  611. package/es/schema-component/antd/form-v2/Form.mjs +90 -90
  612. package/es/schema-component/antd/form-v2/FormField.mjs +15 -15
  613. package/es/schema-component/antd/form-v2/Templates.mjs +43 -43
  614. package/es/schema-component/antd/form-v2/index.mjs +9 -12
  615. package/es/schema-component/antd/form-v2/utils.mjs +33 -33
  616. package/es/schema-component/antd/grid/Block.mjs +7 -7
  617. package/es/schema-component/antd/grid/Grid.mjs +117 -121
  618. package/es/schema-component/antd/grid/Grid.style.mjs +4 -4
  619. package/es/schema-component/antd/grid-card/GridCard.Decorator.mjs +26 -26
  620. package/es/schema-component/antd/grid-card/GridCard.Decorator.style.mjs +4 -4
  621. package/es/schema-component/antd/grid-card/GridCard.Designer.mjs +54 -54
  622. package/es/schema-component/antd/grid-card/GridCard.Item.mjs +23 -23
  623. package/es/schema-component/antd/grid-card/GridCard.mjs +47 -47
  624. package/es/schema-component/antd/grid-card/hooks.mjs +1 -1
  625. package/es/schema-component/antd/grid-card/options.mjs +3 -3
  626. package/es/schema-component/antd/icon-picker/IconFilterInput.mjs +6 -6
  627. package/es/schema-component/antd/icon-picker/IconList.mjs +11 -11
  628. package/es/schema-component/antd/icon-picker/IconPicker.mjs +33 -33
  629. package/es/schema-component/antd/index.mjs +4 -7
  630. package/es/schema-component/antd/input/EllipsisWithTooltip.mjs +13 -13
  631. package/es/schema-component/antd/input/Input.mjs +17 -18
  632. package/es/schema-component/antd/input/Json.mjs +9 -9
  633. package/es/schema-component/antd/input/ReadPretty.mjs +37 -37
  634. package/es/schema-component/antd/input-number/InputNumber.mjs +10 -10
  635. package/es/schema-component/antd/input-number/ReadPretty.mjs +21 -22
  636. package/es/schema-component/antd/list/List.Decorator.mjs +27 -27
  637. package/es/schema-component/antd/list/List.Designer.mjs +41 -41
  638. package/es/schema-component/antd/list/List.Item.mjs +16 -16
  639. package/es/schema-component/antd/list/List.mjs +38 -38
  640. package/es/schema-component/antd/list/List.style.mjs +4 -4
  641. package/es/schema-component/antd/markdown/Markdown.Void.Designer.mjs +10 -10
  642. package/es/schema-component/antd/markdown/Markdown.Void.mjs +33 -34
  643. package/es/schema-component/antd/markdown/Markdown.mjs +23 -23
  644. package/es/schema-component/antd/markdown/style.mjs +5 -5
  645. package/es/schema-component/antd/markdown/util.mjs +6 -6
  646. package/es/schema-component/antd/media-card/MediaCard.mjs +10 -10
  647. package/es/schema-component/antd/media-card/style.mjs +2 -2
  648. package/es/schema-component/antd/menu/AdminMenu.mjs +24 -24
  649. package/es/schema-component/antd/menu/AdminMenu.style.mjs +2 -2
  650. package/es/schema-component/antd/menu/Menu.Designer.mjs +45 -45
  651. package/es/schema-component/antd/menu/Menu.mjs +160 -164
  652. package/es/schema-component/antd/menu/Menu.styles.mjs +3 -3
  653. package/es/schema-component/antd/menu/MenuAdd.mjs +8 -8
  654. package/es/schema-component/antd/menu/MenuItemInitializers/index.mjs +2 -2
  655. package/es/schema-component/antd/menu/MenuSearchAdd.mjs +15 -15
  656. package/es/schema-component/antd/menu/MenuSearchAdd.style.mjs +3 -3
  657. package/es/schema-component/antd/menu/locale.mjs +2 -2
  658. package/es/schema-component/antd/menu/tools.mjs +1 -1
  659. package/es/schema-component/antd/menu/util.mjs +4 -4
  660. package/es/schema-component/antd/nanoIDInput/NanoIDInput.mjs +19 -19
  661. package/es/schema-component/antd/page/FixedBlock.mjs +21 -21
  662. package/es/schema-component/antd/page/FixedBlockDesignerItem.mjs +18 -18
  663. package/es/schema-component/antd/page/Page.Settings.mjs +34 -34
  664. package/es/schema-component/antd/page/Page.mjs +125 -125
  665. package/es/schema-component/antd/page/Page.style.mjs +2 -2
  666. package/es/schema-component/antd/page/PageDesigner.mjs +13 -13
  667. package/es/schema-component/antd/page/PageTab.Settings.mjs +13 -13
  668. package/es/schema-component/antd/page/PageTabDesigner.mjs +9 -9
  669. package/es/schema-component/antd/page/hooks/useIsBlockInPage.mjs +4 -4
  670. package/es/schema-component/antd/page/hooks/useShareActions.mjs +43 -46
  671. package/es/schema-component/antd/page/style.mjs +4 -4
  672. package/es/schema-component/antd/pagination/index.mjs +10 -10
  673. package/es/schema-component/antd/password/Password.mjs +19 -19
  674. package/es/schema-component/antd/password/PasswordStrength.mjs +6 -6
  675. package/es/schema-component/antd/password/utils.mjs +2 -2
  676. package/es/schema-component/antd/percent/Percent.mjs +14 -14
  677. package/es/schema-component/antd/popover/Popover.mjs +10 -10
  678. package/es/schema-component/antd/preview/Preview.mjs +75 -75
  679. package/es/schema-component/antd/quick-edit/QuickEdit.mjs +28 -28
  680. package/es/schema-component/antd/radio/Radio.mjs +18 -18
  681. package/es/schema-component/antd/record-picker/InputRecordPicker.mjs +47 -47
  682. package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.mjs +49 -49
  683. package/es/schema-component/antd/record-picker/RecordPicker.mjs +4 -4
  684. package/es/schema-component/antd/record-picker/index.mjs +5 -6
  685. package/es/schema-component/antd/record-picker/useFieldNames.mjs +3 -3
  686. package/es/schema-component/antd/record-picker/util.mjs +11 -11
  687. package/es/schema-component/antd/remote-select/ReadPretty.mjs +16 -16
  688. package/es/schema-component/antd/remote-select/RemoteSelect.mjs +79 -81
  689. package/es/schema-component/antd/remote-select/shared.mjs +2 -2
  690. package/es/schema-component/antd/rich-text/RichText.mjs +12 -12
  691. package/es/schema-component/antd/rich-text/style.mjs +2 -2
  692. package/es/schema-component/antd/scroll-area/ScrollArea.mjs +10 -10
  693. package/es/schema-component/antd/select/FormulaSelect.mjs +38 -38
  694. package/es/schema-component/antd/select/ReadPretty.mjs +16 -16
  695. package/es/schema-component/antd/select/Select.mjs +47 -47
  696. package/es/schema-component/antd/select/utils.mjs +3 -3
  697. package/es/schema-component/antd/slider/slider.mjs +9 -9
  698. package/es/schema-component/antd/space/index.mjs +11 -11
  699. package/es/schema-component/antd/table/Table.Array.Designer.mjs +4 -4
  700. package/es/schema-component/antd/table/Table.Array.mjs +60 -60
  701. package/es/schema-component/antd/table/Table.Column.ActionBar.mjs +9 -9
  702. package/es/schema-component/antd/table/Table.Column.Decorator.mjs +16 -16
  703. package/es/schema-component/antd/table/Table.Column.Designer.mjs +30 -30
  704. package/es/schema-component/antd/table/Table.Column.mjs +4 -4
  705. package/es/schema-component/antd/table/Table.Designer.mjs +6 -6
  706. package/es/schema-component/antd/table/Table.RowActionDesigner.mjs +15 -15
  707. package/es/schema-component/antd/table/Table.RowSelection.mjs +7 -7
  708. package/es/schema-component/antd/table/Table.Void.Designer.mjs +39 -39
  709. package/es/schema-component/antd/table/Table.Void.mjs +30 -30
  710. package/es/schema-component/antd/table/index.mjs +22 -22
  711. package/es/schema-component/antd/table-v2/Table.ActionColumnDesigner.mjs +15 -15
  712. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.mjs +11 -11
  713. package/es/schema-component/antd/table-v2/Table.Column.Decorator.mjs +21 -21
  714. package/es/schema-component/antd/table-v2/Table.Column.Designer.mjs +68 -68
  715. package/es/schema-component/antd/table-v2/Table.Column.mjs +4 -4
  716. package/es/schema-component/antd/table-v2/Table.Designer.mjs +6 -6
  717. package/es/schema-component/antd/table-v2/Table.Index.mjs +4 -4
  718. package/es/schema-component/antd/table-v2/Table.mjs +126 -129
  719. package/es/schema-component/antd/table-v2/Table.styles.mjs +5 -5
  720. package/es/schema-component/antd/table-v2/TableBlockDesigner.mjs +73 -73
  721. package/es/schema-component/antd/table-v2/TableField.mjs +21 -21
  722. package/es/schema-component/antd/table-v2/TableSelector.mjs +2 -2
  723. package/es/schema-component/antd/table-v2/TableSelectorDesigner.mjs +57 -57
  724. package/es/schema-component/antd/table-v2/components/ColumnFieldProvider.mjs +8 -8
  725. package/es/schema-component/antd/table-v2/index.mjs +17 -18
  726. package/es/schema-component/antd/table-v2/utils.mjs +1 -1
  727. package/es/schema-component/antd/tabs/Tabs.Designer.mjs +22 -23
  728. package/es/schema-component/antd/tabs/Tabs.mjs +34 -34
  729. package/es/schema-component/antd/tabs/context.mjs +5 -5
  730. package/es/schema-component/antd/time-picker/ReadPretty.mjs +10 -10
  731. package/es/schema-component/antd/time-picker/TimePicker.mjs +10 -10
  732. package/es/schema-component/antd/tracking-link/index.mjs +7 -7
  733. package/es/schema-component/antd/tree/Tree.mjs +21 -21
  734. package/es/schema-component/antd/tree/index.mjs +2 -3
  735. package/es/schema-component/antd/tree-select/ReadPretty.mjs +18 -20
  736. package/es/schema-component/antd/tree-select/TreeSelect.mjs +10 -10
  737. package/es/schema-component/antd/unixTimestamp/UnixTimestamp.mjs +14 -14
  738. package/es/schema-component/antd/upload/ReadPretty.mjs +55 -55
  739. package/es/schema-component/antd/upload/Upload.mjs +98 -98
  740. package/es/schema-component/antd/upload/shared.mjs +23 -23
  741. package/es/schema-component/antd/upload/style.mjs +2 -2
  742. package/es/schema-component/antd/variable/CodeMirror.mjs +23 -23
  743. package/es/schema-component/antd/variable/Input.mjs +58 -61
  744. package/es/schema-component/antd/variable/JSONInput.mjs +7 -7
  745. package/es/schema-component/antd/variable/RawTextArea.mjs +16 -16
  746. package/es/schema-component/antd/variable/TextArea.mjs +61 -65
  747. package/es/schema-component/antd/variable/TextAreaWithGlobalScope.mjs +18 -18
  748. package/es/schema-component/antd/variable/Variable.mjs +18 -18
  749. package/es/schema-component/antd/variable/VariableSelect.mjs +20 -20
  750. package/es/schema-component/antd/variable/VariableSelect.style.mjs +4 -4
  751. package/es/schema-component/antd/variable/XButton.mjs +6 -6
  752. package/es/schema-component/antd/variable/index.mjs +2 -3
  753. package/es/schema-component/antd/variable/style.mjs +4 -4
  754. package/es/schema-component/common/dnd-context/index.mjs +32 -32
  755. package/es/schema-component/common/infinite-scroll/infinite-scroll.mjs +29 -29
  756. package/es/schema-component/common/infinite-scroll/style.mjs +4 -4
  757. package/es/schema-component/common/sortable-item/DragHandleMenu.mjs +18 -18
  758. package/es/schema-component/common/sortable-item/DragHandleMenu.style.mjs +3 -3
  759. package/es/schema-component/common/sortable-item/DragHandlePageTab.mjs +15 -15
  760. package/es/schema-component/common/sortable-item/DragHandlePageTab.style.mjs +2 -2
  761. package/es/schema-component/common/sortable-item/SortableItem.mjs +32 -32
  762. package/es/schema-component/common/utils/logic.mjs +11 -9
  763. package/es/schema-component/common/utils/uitls.mjs +23 -25
  764. package/es/schema-component/context.mjs +2 -2
  765. package/es/schema-component/core/DesignableSwitch.mjs +14 -14
  766. package/es/schema-component/core/FormProvider.mjs +16 -16
  767. package/es/schema-component/core/RemoteSchemaComponent.mjs +14 -14
  768. package/es/schema-component/core/SchemaComponent.mjs +19 -19
  769. package/es/schema-component/core/SchemaComponentOptions.mjs +11 -11
  770. package/es/schema-component/core/SchemaComponentPlugin.mjs +4 -4
  771. package/es/schema-component/core/SchemaComponentProvider.mjs +21 -21
  772. package/es/schema-component/hooks/useAttach.mjs +3 -3
  773. package/es/schema-component/hooks/useCompile.mjs +9 -9
  774. package/es/schema-component/hooks/useComponent.mjs +5 -5
  775. package/es/schema-component/hooks/useDesignable.mjs +76 -88
  776. package/es/schema-component/hooks/useDesigner.mjs +9 -9
  777. package/es/schema-component/hooks/useFieldComponentOptions.mjs +10 -10
  778. package/es/schema-component/hooks/useFieldModeOptions.mjs +12 -12
  779. package/es/schema-component/hooks/useFieldProps.mjs +5 -5
  780. package/es/schema-component/hooks/useFieldTitle.mjs +12 -12
  781. package/es/schema-component/hooks/useSchemaComponentContext.mjs +3 -3
  782. package/es/schema-component/hooks/useTableSize.mjs +10 -10
  783. package/es/schema-component/types.mjs +0 -1
  784. package/es/schema-initializer/SchemaInitializerPlugin.mjs +124 -124
  785. package/es/schema-initializer/buttons/CustomFormItemInitializers.mjs +13 -13
  786. package/es/schema-initializer/buttons/FormItemInitializers.mjs +35 -35
  787. package/es/schema-initializer/buttons/RecordBlockInitializers.mjs +37 -37
  788. package/es/schema-initializer/buttons/SubTableActionInitializers.mjs +2 -2
  789. package/es/schema-initializer/buttons/TabPaneInitializers.mjs +23 -23
  790. package/es/schema-initializer/components/CreateRecordAction.mjs +75 -75
  791. package/es/schema-initializer/components/DeletedField.mjs +4 -4
  792. package/es/schema-initializer/components/assigned-field/AssignedField.mjs +43 -43
  793. package/es/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.mjs +6 -6
  794. package/es/schema-initializer/index.mjs +2 -17
  795. package/es/schema-initializer/items/ActionInitializer.mjs +5 -5
  796. package/es/schema-initializer/items/BlockInitializer.mjs +10 -10
  797. package/es/schema-initializer/items/CreateFilterActionInitializer.mjs +3 -3
  798. package/es/schema-initializer/items/CreateResetActionInitializer.mjs +3 -3
  799. package/es/schema-initializer/items/CustomFilterFormItemInitializer.mjs +94 -94
  800. package/es/schema-initializer/items/CustomizeActionInitializer.mjs +5 -5
  801. package/es/schema-initializer/items/DataBlockInitializer.mjs +53 -53
  802. package/es/schema-initializer/items/DeleteEventActionInitializer.mjs +3 -3
  803. package/es/schema-initializer/items/FilterBlockInitializer.mjs +2 -2
  804. package/es/schema-initializer/items/G2PlotInitializer.mjs +5 -5
  805. package/es/schema-initializer/items/InitializerWithSwitch.mjs +9 -9
  806. package/es/schema-initializer/items/RecordAssociationBlockInitializer.mjs +20 -20
  807. package/es/schema-initializer/items/RecordAssociationDetailsBlockInitializer.mjs +20 -20
  808. package/es/schema-initializer/items/RecordAssociationFormBlockInitializer.mjs +24 -24
  809. package/es/schema-initializer/items/RecordAssociationGridCardBlockInitializer.mjs +20 -20
  810. package/es/schema-initializer/items/RecordAssociationListBlockInitializer.mjs +20 -20
  811. package/es/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.mjs +23 -23
  812. package/es/schema-initializer/items/SelectActionInitializer.mjs +3 -3
  813. package/es/schema-initializer/items/SubmitActionInitializer.mjs +3 -3
  814. package/es/schema-initializer/items/TableActionColumnInitializer.mjs +7 -7
  815. package/es/schema-initializer/style.mjs +2 -2
  816. package/es/schema-initializer/utils.mjs +187 -190
  817. package/es/schema-items/GeneralSchemaItems.mjs +28 -28
  818. package/es/schema-items/GeneralSettings.mjs +43 -43
  819. package/es/schema-items/OpenModeSchemaItems.mjs +27 -27
  820. package/es/schema-settings/DataTemplates/FormDataTemplates.mjs +40 -40
  821. package/es/schema-settings/DataTemplates/TreeLabel.mjs +5 -5
  822. package/es/schema-settings/DataTemplates/components/AsDefaultTemplate.mjs +13 -13
  823. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.mjs +61 -61
  824. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.style.mjs +2 -2
  825. package/es/schema-settings/DataTemplates/components/Designer.mjs +36 -36
  826. package/es/schema-settings/DataTemplates/hooks/useCollectionState.mjs +31 -31
  827. package/es/schema-settings/DataTemplates/utils.mjs +37 -37
  828. package/es/schema-settings/DateFormat/ExpiresRadio.mjs +28 -28
  829. package/es/schema-settings/EditCustomDefaultValue.mjs +23 -23
  830. package/es/schema-settings/EditFormulaTitleField.mjs +26 -26
  831. package/es/schema-settings/EnableChildCollections/DynamicComponent.mjs +16 -16
  832. package/es/schema-settings/EnableChildCollections/index.mjs +14 -14
  833. package/es/schema-settings/GeneralSchemaDesigner.mjs +82 -82
  834. package/es/schema-settings/LinkageRules/DynamicComponent.mjs +16 -16
  835. package/es/schema-settings/LinkageRules/LinkageRuleAction.mjs +51 -51
  836. package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.mjs +26 -26
  837. package/es/schema-settings/LinkageRules/ValueDynamicComponent.mjs +35 -35
  838. package/es/schema-settings/LinkageRules/Variables.mjs +5 -5
  839. package/es/schema-settings/LinkageRules/action-hooks.mjs +17 -17
  840. package/es/schema-settings/LinkageRules/components/EnableLinkage.mjs +12 -12
  841. package/es/schema-settings/LinkageRules/components/LinkageHeader.mjs +59 -59
  842. package/es/schema-settings/LinkageRules/components/LinkageHeader.style.mjs +2 -2
  843. package/es/schema-settings/LinkageRules/context.mjs +4 -4
  844. package/es/schema-settings/LinkageRules/index.mjs +33 -33
  845. package/es/schema-settings/LinkageRules/type.mjs +2 -2
  846. package/es/schema-settings/LinkageRules/useValues.mjs +8 -8
  847. package/es/schema-settings/SchemaSettingCollection.mjs +11 -11
  848. package/es/schema-settings/SchemaSettingComponent.mjs +10 -10
  849. package/es/schema-settings/SchemaSettings.mjs +295 -295
  850. package/es/schema-settings/SchemaSettingsDataScope.mjs +27 -27
  851. package/es/schema-settings/SchemaSettingsDateFormat.mjs +26 -26
  852. package/es/schema-settings/SchemaSettingsDefaultValue.mjs +57 -57
  853. package/es/schema-settings/SchemaSettingsNumberFormat.mjs +17 -17
  854. package/es/schema-settings/SchemaSettingsPlugin.mjs +110 -110
  855. package/es/schema-settings/SchemaSettingsSortingRule.mjs +21 -21
  856. package/es/schema-settings/VariableInput/VariableInput.mjs +31 -31
  857. package/es/schema-settings/VariableInput/hooks/useBaseVariable.mjs +18 -18
  858. package/es/schema-settings/VariableInput/hooks/useBlockCollection.mjs +3 -3
  859. package/es/schema-settings/VariableInput/hooks/useContextAssociationFields.mjs +12 -12
  860. package/es/schema-settings/VariableInput/hooks/useDateVariable.mjs +8 -8
  861. package/es/schema-settings/VariableInput/hooks/useFilterVariable.mjs +15 -15
  862. package/es/schema-settings/VariableInput/hooks/useFormVariable.mjs +8 -8
  863. package/es/schema-settings/VariableInput/hooks/useIterationVariable.mjs +12 -12
  864. package/es/schema-settings/VariableInput/hooks/useParentRecordVariable.mjs +14 -14
  865. package/es/schema-settings/VariableInput/hooks/usePopupVariable.mjs +4 -4
  866. package/es/schema-settings/VariableInput/hooks/useRecordVariable.mjs +10 -10
  867. package/es/schema-settings/VariableInput/hooks/useRoleVariable.mjs +9 -9
  868. package/es/schema-settings/VariableInput/hooks/useUserVariable.mjs +11 -11
  869. package/es/schema-settings/VariableInput/hooks/useVariableOptions.mjs +23 -23
  870. package/es/schema-settings/filter-form/FormFilterScope.mjs +25 -25
  871. package/es/schema-settings/filter-form/context.mjs +5 -5
  872. package/es/schema-settings/hooks/useFilterFormCustomProps.mjs +2 -2
  873. package/es/schema-settings/hooks/useGetAriaLabelOfDesigner.mjs +6 -6
  874. package/es/schema-settings/hooks/useIsAllowToSetDefaultValue.mjs +20 -20
  875. package/es/schema-settings/hooks/useIsShowMultipleSwitch.mjs +7 -7
  876. package/es/schema-settings/hooks/useParseDataScopeFilter.mjs +13 -13
  877. package/es/schema-settings/isPatternDisabled.mjs +1 -1
  878. package/es/schema-settings/styles.mjs +2 -2
  879. package/es/schema-settings/utils/createModalSettingsItem.mjs +12 -12
  880. package/es/schema-settings/utils/createSelectSettingsItem.mjs +12 -12
  881. package/es/schema-settings/utils/createSwitchSettingsItem.mjs +12 -12
  882. package/es/schema-settings/utils/createTextSettingsItem.mjs +6 -6
  883. package/es/schema-settings/utils/util.mjs +7 -7
  884. package/es/schema-templates/BlockTemplate.mjs +18 -18
  885. package/es/schema-templates/BlockTemplateDetails.mjs +29 -29
  886. package/es/schema-templates/BlockTemplatePage.mjs +13 -13
  887. package/es/schema-templates/SchemaTemplateManagerProvider.mjs +20 -20
  888. package/es/schema-templates/schemas/CollectionTitle.mjs +9 -9
  889. package/es/schema-templates/schemas/uiSchemaTemplates.mjs +17 -17
  890. package/es/schema-templates/useSchemaTemplateManager.mjs +18 -18
  891. package/es/style/css-variable/CSSVariableProvider.mjs +14 -14
  892. package/es/style/css-variable/index.mjs +2 -3
  893. package/es/style/index.mjs +4 -11
  894. package/es/style/theme/AntdAppProvider.mjs +15 -15
  895. package/es/style/theme/defaultTheme.mjs +2 -2
  896. package/es/style/theme/index.mjs +26 -28
  897. package/es/style/useToken.mjs +2 -2
  898. package/es/testUtils/mockAPIClient.mjs +4 -4
  899. package/es/user/ChangePassword.mjs +20 -20
  900. package/es/user/CurrentUser.mjs +47 -47
  901. package/es/user/CurrentUserProvider.mjs +19 -19
  902. package/es/user/CurrentUserSettingsMenuProvider.mjs +13 -13
  903. package/es/user/EditProfile.mjs +24 -24
  904. package/es/user/LanguageSettings.mjs +15 -15
  905. package/es/user/SwitchRole.mjs +11 -11
  906. package/es/user/VerificationCode.mjs +18 -18
  907. package/es/variables/VariablesProvider.mjs +66 -66
  908. package/es/variables/hooks/useBuiltinVariables.mjs +12 -12
  909. package/es/variables/hooks/useContextVariable.mjs +11 -11
  910. package/es/variables/hooks/useLocalVariables.mjs +21 -21
  911. package/es/variables/hooks/useVariables.mjs +5 -5
  912. package/es/variables/index.mjs +6 -12
  913. package/es/variables/utils/getPath.mjs +3 -3
  914. package/es/variables/utils/getVariableName.mjs +4 -4
  915. package/es/variables/utils/transformVariableValue.mjs +3 -3
  916. package/es/variables/utils/uniq.mjs +3 -3
  917. package/lib/api-client/APIClient.js +23 -27
  918. package/lib/api-client/APIClientProvider.js +8 -8
  919. package/lib/api-client/context.js +8 -8
  920. package/lib/api-client/hooks/assign.js +15 -17
  921. package/lib/api-client/hooks/index.js +28 -33
  922. package/lib/api-client/hooks/useAPIClient.js +8 -8
  923. package/lib/api-client/hooks/useRequest.js +9 -9
  924. package/lib/api-client/hooks/useResource.js +8 -8
  925. package/lib/api-client/index.js +36 -41
  926. package/lib/application/AppSchemaComponentProvider.js +9 -9
  927. package/lib/application/Application.js +20 -39
  928. package/lib/application/AttachmentPreviewManager.js +9 -11
  929. package/lib/application/CustomRouterContextProvider.js +60 -28
  930. package/lib/application/NoticesManager.js +33 -23
  931. package/lib/application/Plugin.js +10 -12
  932. package/lib/application/PluginContextMenu.js +9 -11
  933. package/lib/application/PluginManager.js +9 -9
  934. package/lib/application/RouterManager.js +12 -14
  935. package/lib/application/SystemSettingsManager.js +19 -13
  936. package/lib/application/TrackingManager.js +9 -11
  937. package/lib/application/UserSettingsManager.js +17 -11
  938. package/lib/application/WebSocketClient.js +12 -12
  939. package/lib/application/components/AppComponent.js +9 -9
  940. package/lib/application/components/BlankComponent.js +8 -8
  941. package/lib/application/components/MainComponent.js +10 -14
  942. package/lib/application/components/RouterContextCleaner.js +10 -14
  943. package/lib/application/components/SharePage.js +18 -12
  944. package/lib/application/components/ShareSchemaComponent.js +8 -8
  945. package/lib/application/components/defaultComponents.js +8 -8
  946. package/lib/application/components/index.js +46 -51
  947. package/lib/application/context.js +8 -8
  948. package/lib/application/hoc/index.js +16 -21
  949. package/lib/application/hoc/withDynamicSchemaProps.js +14 -16
  950. package/lib/application/hooks/index.js +34 -39
  951. package/lib/application/hooks/useApp.js +8 -8
  952. package/lib/application/hooks/useGlobalVariable.js +8 -8
  953. package/lib/application/hooks/usePlugin.js +8 -8
  954. package/lib/application/hooks/useRouter.js +8 -8
  955. package/lib/application/index.js +146 -150
  956. package/lib/application/schema-initializer/SchemaInitializer.js +9 -11
  957. package/lib/application/schema-initializer/SchemaInitializerManager.js +9 -11
  958. package/lib/application/schema-initializer/components/SchemaInitializerActionModal.js +12 -10
  959. package/lib/application/schema-initializer/components/SchemaInitializerButton.js +10 -14
  960. package/lib/application/schema-initializer/components/SchemaInitializerChildren.js +12 -10
  961. package/lib/application/schema-initializer/components/SchemaInitializerDivider.js +8 -8
  962. package/lib/application/schema-initializer/components/SchemaInitializerItem.js +14 -16
  963. package/lib/application/schema-initializer/components/SchemaInitializerItemGroup.js +12 -10
  964. package/lib/application/schema-initializer/components/SchemaInitializerItems.js +8 -8
  965. package/lib/application/schema-initializer/components/SchemaInitializerSelect.js +12 -10
  966. package/lib/application/schema-initializer/components/SchemaInitializerSubMenu.js +18 -16
  967. package/lib/application/schema-initializer/components/SchemaInitializerSwitch.js +12 -10
  968. package/lib/application/schema-initializer/components/index.js +71 -76
  969. package/lib/application/schema-initializer/components/style.js +8 -8
  970. package/lib/application/schema-initializer/context/index.js +18 -16
  971. package/lib/application/schema-initializer/hoc/index.js +10 -14
  972. package/lib/application/schema-initializer/hooks/index.js +173 -177
  973. package/lib/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.js +8 -8
  974. package/lib/application/schema-initializer/index.js +54 -59
  975. package/lib/application/schema-initializer/types.js +3 -4
  976. package/lib/application/schema-settings/SchemaSettings.js +9 -11
  977. package/lib/application/schema-settings/SchemaSettingsDefaults.js +8 -8
  978. package/lib/application/schema-settings/SchemaSettingsManager.js +12 -17
  979. package/lib/application/schema-settings/components/SchemaSettingsChildren.js +12 -10
  980. package/lib/application/schema-settings/components/SchemaSettingsIcon.js +10 -14
  981. package/lib/application/schema-settings/components/SchemaSettingsWrapper.js +10 -14
  982. package/lib/application/schema-settings/components/index.js +22 -27
  983. package/lib/application/schema-settings/context/index.js +10 -8
  984. package/lib/application/schema-settings/hooks/index.js +10 -14
  985. package/lib/application/schema-settings/index.js +48 -53
  986. package/lib/application/schema-settings/types.js +3 -4
  987. package/lib/application/schema-toolbar/context/index.js +14 -10
  988. package/lib/application/schema-toolbar/hooks/index.js +8 -8
  989. package/lib/application/schema-toolbar/index.js +24 -29
  990. package/lib/application/utils/globalDeps.js +10 -14
  991. package/lib/application/utils/index.js +10 -8
  992. package/lib/application/utils/remotePlugins.js +24 -26
  993. package/lib/async-data-provider/index.js +14 -10
  994. package/lib/block-provider/BlockProvider.js +55 -29
  995. package/lib/block-provider/DetailsBlockProvider.js +23 -21
  996. package/lib/block-provider/FilterFormBlockProvider.js +8 -8
  997. package/lib/block-provider/FormBlockProvider.js +36 -28
  998. package/lib/block-provider/FormFieldProvider.js +25 -17
  999. package/lib/block-provider/MobileProvider.js +10 -8
  1000. package/lib/block-provider/PageLayout.js +8 -8
  1001. package/lib/block-provider/TableBlockProvider.js +27 -23
  1002. package/lib/block-provider/TableFieldProvider.js +35 -25
  1003. package/lib/block-provider/TableSelectorProvider.js +50 -46
  1004. package/lib/block-provider/TreeBlockProvider.js +23 -17
  1005. package/lib/block-provider/hooks/index.js +1369 -1387
  1006. package/lib/block-provider/hooks/useDataBlockSourceId.js +9 -9
  1007. package/lib/block-provider/hooks/useFormActiveFields.js +12 -10
  1008. package/lib/block-provider/hooks/useIsMobile.js +8 -8
  1009. package/lib/block-provider/hooks/useParsedFilter.js +10 -14
  1010. package/lib/block-provider/index.js +77 -82
  1011. package/lib/built-in/acl/ACLPlugin.js +8 -8
  1012. package/lib/built-in/acl/ACLProvider.js +63 -35
  1013. package/lib/built-in/acl/ACLShortcut.js +8 -8
  1014. package/lib/built-in/acl/Configuration/ConfigureCenter.js +12 -10
  1015. package/lib/built-in/acl/Configuration/MenuConfigure.js +9 -9
  1016. package/lib/built-in/acl/Configuration/MenuItemsProvider.js +13 -9
  1017. package/lib/built-in/acl/Configuration/PermisionProvider.js +15 -11
  1018. package/lib/built-in/acl/Configuration/RoleConfigure.js +12 -16
  1019. package/lib/built-in/acl/Configuration/RoleTable.js +10 -8
  1020. package/lib/built-in/acl/Configuration/RolesResourcesActions.js +18 -16
  1021. package/lib/built-in/acl/Configuration/ScopeSelect.js +11 -9
  1022. package/lib/built-in/acl/Configuration/StrategyActions.js +9 -9
  1023. package/lib/built-in/acl/Configuration/index.js +79 -83
  1024. package/lib/built-in/acl/Configuration/schemas/roles.js +10 -14
  1025. package/lib/built-in/acl/Configuration/schemas/scopes.js +10 -8
  1026. package/lib/built-in/acl/Configuration/schemas/useRoleResourceValues.js +11 -14
  1027. package/lib/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.js +8 -8
  1028. package/lib/built-in/acl/index.js +34 -39
  1029. package/lib/built-in/acl/style.js +8 -8
  1030. package/lib/built-in/admin-layout/AdminContent.js +8 -12
  1031. package/lib/built-in/admin-layout/AdminLayout.js +8 -8
  1032. package/lib/built-in/admin-layout/AdminLayoutPlugin.js +8 -8
  1033. package/lib/built-in/admin-layout/AdminProvider.js +10 -14
  1034. package/lib/built-in/admin-layout/AdminTabs.js +8 -8
  1035. package/lib/built-in/admin-layout/InternalAdminLayout.js +10 -10
  1036. package/lib/built-in/admin-layout/MenuEditor.js +18 -13
  1037. package/lib/built-in/admin-layout/NoticeArea.js +8 -8
  1038. package/lib/built-in/admin-layout/components/AddNewButton.js +9 -9
  1039. package/lib/built-in/admin-layout/components/WelcomeCard.js +8 -8
  1040. package/lib/built-in/admin-layout/filterByACL.js +9 -11
  1041. package/lib/built-in/admin-layout/index.js +71 -76
  1042. package/lib/built-in/admin-layout/style.js +8 -8
  1043. package/lib/built-in/attachment-preview/index.js +8 -8
  1044. package/lib/built-in/attachment-preview/interface.js +3 -4
  1045. package/lib/built-in/attachment-preview/previewers/file-default.js +8 -8
  1046. package/lib/built-in/attachment-preview/previewers/file-pdf.js +10 -10
  1047. package/lib/built-in/attachment-preview/previewers/file-pdf.style.js +8 -8
  1048. package/lib/built-in/attachment-preview/previewers/file-sheet.js +18 -18
  1049. package/lib/built-in/attachment-preview/previewers/file-sheet.style.js +8 -8
  1050. package/lib/built-in/attachment-preview/previewers/image-jpeg.js +8 -8
  1051. package/lib/built-in/attachment-preview/previewers/image-png.js +8 -8
  1052. package/lib/built-in/attachment-preview/previewers/image-svg.js +8 -8
  1053. package/lib/built-in/attachment-preview/previewers/index.js +46 -51
  1054. package/lib/built-in/block-schema-component/index.js +8 -8
  1055. package/lib/built-in/built-in-collections/index.js +10 -8
  1056. package/lib/built-in/context-menu/ContextMenu.provider.js +10 -8
  1057. package/lib/built-in/context-menu/ContextMenuItemsProps.js +18 -12
  1058. package/lib/built-in/context-menu/index.js +14 -10
  1059. package/lib/built-in/context-menu/useContextMenu.js +12 -10
  1060. package/lib/built-in/document-title/index.js +21 -11
  1061. package/lib/built-in/dynamic-page/DynamicPage.js +8 -8
  1062. package/lib/built-in/dynamic-page/index.js +19 -17
  1063. package/lib/built-in/dynamic-page/style.js +10 -8
  1064. package/lib/built-in/dynamic-page/utils.js +10 -12
  1065. package/lib/built-in/index.js +519 -519
  1066. package/lib/built-in/locale/LocalePlugin.js +88 -88
  1067. package/lib/built-in/locale/loadConstrueLocale.js +10 -14
  1068. package/lib/built-in/page-style/CustomAdminHeader.js +8 -8
  1069. package/lib/built-in/page-style/PageStyle.provider.js +13 -11
  1070. package/lib/built-in/page-style/TabContent.js +12 -8
  1071. package/lib/built-in/page-style/TabHeader.js +12 -14
  1072. package/lib/built-in/page-style/TabHeader.style.js +8 -8
  1073. package/lib/built-in/page-style/index.js +8 -8
  1074. package/lib/built-in/page-style/usePageStyle.js +8 -8
  1075. package/lib/built-in/page-style/useTabSettings.js +16 -12
  1076. package/lib/built-in/pinned-list/PinnedPluginListProvider.js +11 -9
  1077. package/lib/built-in/pinned-list/PluginPinnedList.js +8 -8
  1078. package/lib/built-in/pinned-list/context.js +8 -8
  1079. package/lib/built-in/pinned-list/index.js +23 -28
  1080. package/lib/built-in/pm/PluginCard.js +16 -24
  1081. package/lib/built-in/pm/PluginDetail.js +25 -29
  1082. package/lib/built-in/pm/PluginDocument.js +8 -8
  1083. package/lib/built-in/pm/PluginForm/form/PluginNpmForm.js +10 -8
  1084. package/lib/built-in/pm/PluginForm/form/PluginUploadForm.js +9 -9
  1085. package/lib/built-in/pm/PluginForm/form/PluginUrlForm.js +8 -8
  1086. package/lib/built-in/pm/PluginForm/modal/PluginAddModal.js +8 -8
  1087. package/lib/built-in/pm/PluginForm/modal/PluginUpgradeModal.js +8 -8
  1088. package/lib/built-in/pm/PluginManager.js +18 -22
  1089. package/lib/built-in/pm/index.js +24 -14
  1090. package/lib/built-in/pm/style.js +8 -8
  1091. package/lib/built-in/pm/types.js +3 -4
  1092. package/lib/built-in/quick-access/Action.js +10 -10
  1093. package/lib/built-in/quick-access/Block.js +14 -12
  1094. package/lib/built-in/quick-access/CustomRequestActionSchemaInitializerItem.js +12 -10
  1095. package/lib/built-in/quick-access/LinkActionSchemaInitializerItem.js +10 -8
  1096. package/lib/built-in/quick-access/ModalActionSchemaInitializerItem.js +11 -11
  1097. package/lib/built-in/quick-access/PopupActionSchemaInitializerItem.js +12 -10
  1098. package/lib/built-in/quick-access/SchemaSettingsBlockTitleItem.js +9 -9
  1099. package/lib/built-in/quick-access/blockInitializerItem.js +8 -8
  1100. package/lib/built-in/quick-access/blockSchema.js +9 -11
  1101. package/lib/built-in/quick-access/blockSettings.js +11 -9
  1102. package/lib/built-in/quick-access/configureActions.js +8 -8
  1103. package/lib/built-in/quick-access/index.js +8 -8
  1104. package/lib/built-in/scroll-assistant/ScrollAssistant.provider.js +8 -8
  1105. package/lib/built-in/scroll-assistant/ScrollAssistantStatus.provider.js +12 -10
  1106. package/lib/built-in/scroll-assistant/index.js +10 -8
  1107. package/lib/built-in/scroll-assistant/useJoystick.js +11 -17
  1108. package/lib/built-in/setting-layout/AdminSettings.js +16 -14
  1109. package/lib/built-in/setting-layout/SettingLayout.js +11 -11
  1110. package/lib/built-in/setting-layout/SettingsCenterDropdown.js +9 -9
  1111. package/lib/built-in/setting-layout/style.js +8 -8
  1112. package/lib/built-in/system-settings/SystemSettingsProvider.js +12 -8
  1113. package/lib/built-in/system-settings/SystemSettingsShortcut.js +12 -16
  1114. package/lib/built-in/system-settings/index.js +40 -44
  1115. package/lib/built-in/system-version/SystemVersion.provider.js +8 -8
  1116. package/lib/built-in/system-version/index.js +8 -8
  1117. package/lib/built-in/user-settings/UserSettingsLayout.js +16 -16
  1118. package/lib/built-in/user-settings/index.js +8 -8
  1119. package/lib/built-in/user-settings/style.js +8 -8
  1120. package/lib/collection-manager/CollectionHistoryProvider.js +15 -11
  1121. package/lib/collection-manager/CollectionManagerProvider.js +15 -11
  1122. package/lib/collection-manager/CollectionManagerSchemaComponentProvider.js +8 -8
  1123. package/lib/collection-manager/CollectionProvider_deprecated.js +8 -8
  1124. package/lib/collection-manager/Configuration/AddCollectionAction.js +13 -11
  1125. package/lib/collection-manager/Configuration/AddFieldAction.js +24 -24
  1126. package/lib/collection-manager/Configuration/AddSubFieldAction.js +8 -8
  1127. package/lib/collection-manager/Configuration/DeleteCollectionAction.js +23 -13
  1128. package/lib/collection-manager/Configuration/EditCollectionAction.js +19 -17
  1129. package/lib/collection-manager/Configuration/EditFieldAction.js +18 -20
  1130. package/lib/collection-manager/Configuration/EditSubFieldAction.js +11 -15
  1131. package/lib/collection-manager/Configuration/ImportCollectionMetaAction.js +11 -15
  1132. package/lib/collection-manager/Configuration/ImportXlsx/ImportXlsxMetaAction.js +12 -16
  1133. package/lib/collection-manager/Configuration/ImportXlsx/XlsxCollectionSchema.js +10 -10
  1134. package/lib/collection-manager/Configuration/ImportXlsx/XlsxEditFieldAction.js +8 -8
  1135. package/lib/collection-manager/Configuration/ImportXlsx/setUpdateXlsxCollectionField.js +12 -18
  1136. package/lib/collection-manager/Configuration/ImportXlsx/xlsxFieldsConfigure.js +15 -15
  1137. package/lib/collection-manager/Configuration/ImportXlsx/xlsxFormValueContextProvider.js +12 -14
  1138. package/lib/collection-manager/Configuration/ImportXlsx/xlsxImportAction.js +11 -15
  1139. package/lib/collection-manager/Configuration/ImportXlsx/xlsxPreviewTable.js +8 -8
  1140. package/lib/collection-manager/Configuration/OverridingCollectionField.js +17 -19
  1141. package/lib/collection-manager/Configuration/SyncFieldsAction.js +13 -11
  1142. package/lib/collection-manager/Configuration/SyncSQLFieldsAction.js +8 -8
  1143. package/lib/collection-manager/Configuration/ViewInheritedField.js +14 -16
  1144. package/lib/collection-manager/Configuration/components/CollectionCategory.js +8 -8
  1145. package/lib/collection-manager/Configuration/components/CollectionFieldInterfaceTag.js +8 -8
  1146. package/lib/collection-manager/Configuration/components/CollectionTemplateTag.js +8 -8
  1147. package/lib/collection-manager/Configuration/components/FieldSummary.js +10 -14
  1148. package/lib/collection-manager/Configuration/components/Summary.js +10 -10
  1149. package/lib/collection-manager/Configuration/components/TemplateSummary.js +10 -14
  1150. package/lib/collection-manager/Configuration/components/index.js +47 -33
  1151. package/lib/collection-manager/Configuration/index.js +122 -127
  1152. package/lib/collection-manager/Configuration/interfaces.js +12 -10
  1153. package/lib/collection-manager/ResourceActionProvider.js +25 -17
  1154. package/lib/collection-manager/action-hooks.js +108 -59
  1155. package/lib/collection-manager/collectionPlugin.js +9 -9
  1156. package/lib/collection-manager/context.js +8 -8
  1157. package/lib/collection-manager/hooks/index.js +34 -39
  1158. package/lib/collection-manager/hooks/useCollectionDataSource.js +8 -8
  1159. package/lib/collection-manager/hooks/useCollectionField_deprecated.js +8 -8
  1160. package/lib/collection-manager/hooks/useCollectionManager_deprecated.js +30 -34
  1161. package/lib/collection-manager/hooks/useCollection_deprecated.js +13 -13
  1162. package/lib/collection-manager/hooks/useDialect.js +11 -11
  1163. package/lib/collection-manager/index.js +327 -331
  1164. package/lib/collection-manager/interfaces/checkbox.js +8 -8
  1165. package/lib/collection-manager/interfaces/checkboxGroup.js +8 -8
  1166. package/lib/collection-manager/interfaces/chinaRegion.js +8 -8
  1167. package/lib/collection-manager/interfaces/collection.js +8 -8
  1168. package/lib/collection-manager/interfaces/color.js +8 -8
  1169. package/lib/collection-manager/interfaces/components/index.js +24 -14
  1170. package/lib/collection-manager/interfaces/createdAt.js +8 -8
  1171. package/lib/collection-manager/interfaces/createdBy.js +8 -8
  1172. package/lib/collection-manager/interfaces/datetime.js +8 -8
  1173. package/lib/collection-manager/interfaces/email.js +8 -8
  1174. package/lib/collection-manager/interfaces/icon.js +8 -8
  1175. package/lib/collection-manager/interfaces/id.js +8 -8
  1176. package/lib/collection-manager/interfaces/index.js +253 -258
  1177. package/lib/collection-manager/interfaces/input.js +8 -8
  1178. package/lib/collection-manager/interfaces/integer.js +8 -8
  1179. package/lib/collection-manager/interfaces/json.js +8 -8
  1180. package/lib/collection-manager/interfaces/linkTo.js +8 -8
  1181. package/lib/collection-manager/interfaces/m2m.js +9 -9
  1182. package/lib/collection-manager/interfaces/m2o.js +9 -9
  1183. package/lib/collection-manager/interfaces/markdown.js +8 -8
  1184. package/lib/collection-manager/interfaces/multipleSelect.js +8 -8
  1185. package/lib/collection-manager/interfaces/nanoid.js +8 -8
  1186. package/lib/collection-manager/interfaces/number.js +8 -8
  1187. package/lib/collection-manager/interfaces/o2m.js +13 -11
  1188. package/lib/collection-manager/interfaces/o2o.js +14 -10
  1189. package/lib/collection-manager/interfaces/password.js +8 -8
  1190. package/lib/collection-manager/interfaces/percent.js +8 -8
  1191. package/lib/collection-manager/interfaces/phone.js +8 -8
  1192. package/lib/collection-manager/interfaces/properties/index.js +41 -17
  1193. package/lib/collection-manager/interfaces/properties/operators.js +45 -47
  1194. package/lib/collection-manager/interfaces/radioGroup.js +8 -8
  1195. package/lib/collection-manager/interfaces/richText.js +8 -8
  1196. package/lib/collection-manager/interfaces/select.js +8 -8
  1197. package/lib/collection-manager/interfaces/sort.js +8 -8
  1198. package/lib/collection-manager/interfaces/subTable.js +8 -8
  1199. package/lib/collection-manager/interfaces/tableoid.js +8 -8
  1200. package/lib/collection-manager/interfaces/textarea.js +8 -8
  1201. package/lib/collection-manager/interfaces/time.js +8 -8
  1202. package/lib/collection-manager/interfaces/types.js +3 -4
  1203. package/lib/collection-manager/interfaces/unixTimestamp.js +8 -8
  1204. package/lib/collection-manager/interfaces/updatedAt.js +8 -8
  1205. package/lib/collection-manager/interfaces/updatedBy.js +8 -8
  1206. package/lib/collection-manager/interfaces/url.js +8 -8
  1207. package/lib/collection-manager/interfaces/uuid.js +8 -8
  1208. package/lib/collection-manager/mixins/InheritanceCollectionMixin.js +13 -13
  1209. package/lib/collection-manager/sub-table.js +21 -15
  1210. package/lib/collection-manager/templates/components/PresetFields.js +13 -13
  1211. package/lib/collection-manager/templates/components/PreviewFields.js +24 -28
  1212. package/lib/collection-manager/templates/components/PreviewTable.js +13 -13
  1213. package/lib/collection-manager/templates/components/sql-collection/FieldsConfigure.js +50 -56
  1214. package/lib/collection-manager/templates/components/sql-collection/PreviewTable.js +9 -9
  1215. package/lib/collection-manager/templates/components/sql-collection/SQLInput.js +8 -8
  1216. package/lib/collection-manager/templates/components/sql-collection/SQLRequestProvider.js +10 -10
  1217. package/lib/collection-manager/templates/components/sql-collection/index.js +34 -39
  1218. package/lib/collection-manager/templates/expression.js +9 -9
  1219. package/lib/collection-manager/templates/general.js +9 -9
  1220. package/lib/collection-manager/templates/import.js +8 -8
  1221. package/lib/collection-manager/templates/index.js +47 -52
  1222. package/lib/collection-manager/templates/properties/index.js +11 -9
  1223. package/lib/collection-manager/templates/sql.js +8 -8
  1224. package/lib/collection-manager/templates/tree.js +9 -9
  1225. package/lib/collection-manager/templates/types.js +3 -4
  1226. package/lib/collection-manager/templates/view.js +9 -9
  1227. package/lib/collection-manager/templates/xlsx.js +8 -8
  1228. package/lib/collection-manager/types.js +3 -4
  1229. package/lib/collection-manager/utils.js +13 -15
  1230. package/lib/common/SelectWithTitle.js +8 -8
  1231. package/lib/common/appInfo/CurrentAppInfoProvider.js +13 -9
  1232. package/lib/common/appInfo/index.js +16 -21
  1233. package/lib/common/index.js +28 -33
  1234. package/lib/common/useFieldComponentName.js +10 -10
  1235. package/lib/common/useNiceDropdownHeight.js +8 -8
  1236. package/lib/data-source/collection/AssociationProvider.js +14 -10
  1237. package/lib/data-source/collection/Collection.js +8 -8
  1238. package/lib/data-source/collection/CollectionManager.js +10 -13
  1239. package/lib/data-source/collection/CollectionManagerProvider.js +16 -10
  1240. package/lib/data-source/collection/CollectionProvider.js +16 -10
  1241. package/lib/data-source/collection/ExtendCollectionsProvider.js +14 -10
  1242. package/lib/data-source/collection/index.js +46 -51
  1243. package/lib/data-source/collection/utils.js +12 -14
  1244. package/lib/data-source/collection-field/CollectionField.js +11 -9
  1245. package/lib/data-source/collection-field/CollectionFieldProvider.js +15 -11
  1246. package/lib/data-source/collection-field/index.js +22 -27
  1247. package/lib/data-source/collection-field-interface/CollectionFieldInterface.js +11 -13
  1248. package/lib/data-source/collection-field-interface/CollectionFieldInterfaceManager.js +11 -13
  1249. package/lib/data-source/collection-field-interface/index.js +22 -27
  1250. package/lib/data-source/collection-fields-to-initializer-items/CollectionFieldsToFormInitializerItems.js +11 -9
  1251. package/lib/data-source/collection-fields-to-initializer-items/CollectionFieldsToInitializerItems.js +8 -8
  1252. package/lib/data-source/collection-fields-to-initializer-items/index.js +16 -21
  1253. package/lib/data-source/collection-fields-to-initializer-items/items/AssociationCollectionFields.js +10 -10
  1254. package/lib/data-source/collection-fields-to-initializer-items/items/ParentCollectionFields.js +8 -8
  1255. package/lib/data-source/collection-fields-to-initializer-items/items/SelfFields.js +8 -8
  1256. package/lib/data-source/collection-fields-to-initializer-items/items/index.js +12 -8
  1257. package/lib/data-source/collection-fields-to-initializer-items/utils/getInitializerItemsByFields.js +14 -16
  1258. package/lib/data-source/collection-fields-to-initializer-items/utils/index.js +28 -33
  1259. package/lib/data-source/collection-fields-to-initializer-items/utils/type.js +3 -4
  1260. package/lib/data-source/collection-fields-to-initializer-items/utils/useCollectionFieldContext.js +8 -8
  1261. package/lib/data-source/collection-record/CollectionRecord.js +9 -11
  1262. package/lib/data-source/collection-record/CollectionRecordProvider.js +31 -22
  1263. package/lib/data-source/collection-record/index.js +22 -27
  1264. package/lib/data-source/collection-record/isNewRecord.js +12 -10
  1265. package/lib/data-source/collection-template/CollectionTemplate.js +9 -11
  1266. package/lib/data-source/collection-template/CollectionTemplateManager.js +11 -13
  1267. package/lib/data-source/collection-template/index.js +22 -27
  1268. package/lib/data-source/commonsSettingsItem/fieldComponent.js +13 -17
  1269. package/lib/data-source/commonsSettingsItem/index.js +16 -21
  1270. package/lib/data-source/components/CollectionDeletedPlaceholder.js +8 -8
  1271. package/lib/data-source/components/DataSourceApplicationProvider.js +8 -8
  1272. package/lib/data-source/components/index.js +22 -27
  1273. package/lib/data-source/data-block/DataBlockProvider.js +19 -11
  1274. package/lib/data-source/data-block/DataBlockRequestProvider.js +16 -12
  1275. package/lib/data-source/data-block/DataBlockResourceProvider.js +15 -11
  1276. package/lib/data-source/data-block/context/ConfigSetting.provider.js +12 -8
  1277. package/lib/data-source/data-block/index.js +34 -39
  1278. package/lib/data-source/data-source/DataSource.js +10 -8
  1279. package/lib/data-source/data-source/DataSourceManager.js +14 -14
  1280. package/lib/data-source/data-source/DataSourceManagerProvider.js +14 -10
  1281. package/lib/data-source/data-source/DataSourceProvider.js +19 -17
  1282. package/lib/data-source/data-source/index.js +34 -39
  1283. package/lib/data-source/index.js +78 -83
  1284. package/lib/data-source/utils.js +13 -11
  1285. package/lib/filter-provider/FilterProvider.js +18 -18
  1286. package/lib/filter-provider/index.js +23 -28
  1287. package/lib/filter-provider/utils.js +45 -29
  1288. package/lib/flag-provider/FlagProvider.js +14 -16
  1289. package/lib/flag-provider/hooks/useFlag.js +8 -8
  1290. package/lib/flag-provider/index.js +22 -27
  1291. package/lib/hooks/index.js +22 -27
  1292. package/lib/hooks/useAdminSchemaUid.js +9 -11
  1293. package/lib/hooks/useMenuItem.js +20 -16
  1294. package/lib/hooks/useViewport.js +8 -8
  1295. package/lib/i18n/i18n.js +12 -14
  1296. package/lib/i18n/index.js +17 -22
  1297. package/lib/icon/Icon.js +30 -24
  1298. package/lib/icon/index.js +16 -21
  1299. package/lib/icon/preloaded.js +27 -13
  1300. package/lib/index.js +500 -504
  1301. package/lib/modules/actions/ActionSchemaToolbar.js +8 -8
  1302. package/lib/modules/actions/add-child/CreateChildInitializer.js +8 -8
  1303. package/lib/modules/actions/add-child/addChildActionSettings.js +8 -8
  1304. package/lib/modules/actions/add-new/CreateActionInitializer.js +8 -8
  1305. package/lib/modules/actions/add-new/addNewActionSettings.js +8 -8
  1306. package/lib/modules/actions/add-new/createFormBlockInitializers.js +8 -8
  1307. package/lib/modules/actions/add-record/CustomizeAddRecordActionInitializer.js +8 -8
  1308. package/lib/modules/actions/add-record/customizeAddRecordActionSettings.js +8 -8
  1309. package/lib/modules/actions/add-record/customizeCreateFormBlockInitializers.js +8 -8
  1310. package/lib/modules/actions/associate/AssociateActionInitializer.js +8 -8
  1311. package/lib/modules/actions/associate/AssociateActionProvider.js +11 -11
  1312. package/lib/modules/actions/associate/AssociateActionSettings.js +8 -8
  1313. package/lib/modules/actions/bulk-destroy/BulkDestroyActionInitializer.js +8 -8
  1314. package/lib/modules/actions/bulk-destroy/bulkDeleteActionSettings.js +8 -8
  1315. package/lib/modules/actions/delete/DestroyActionInitializer.js +8 -8
  1316. package/lib/modules/actions/delete/deleteActionSettings.js +9 -9
  1317. package/lib/modules/actions/disassociate/DisassociateActionInitializer.js +8 -8
  1318. package/lib/modules/actions/disassociate/disassociateActionSettings.js +8 -8
  1319. package/lib/modules/actions/expand-collapse/ExpandableActionInitializer.js +8 -8
  1320. package/lib/modules/actions/expand-collapse/expendableActionSettings.js +9 -9
  1321. package/lib/modules/actions/filter/FilterActionInitializer.js +8 -8
  1322. package/lib/modules/actions/filter/filterActionSettings.js +9 -9
  1323. package/lib/modules/actions/link/customizeLinkActionSettings.js +14 -16
  1324. package/lib/modules/actions/link/hooks.js +8 -8
  1325. package/lib/modules/actions/refresh/RefreshActionInitializer.js +8 -8
  1326. package/lib/modules/actions/refresh/refreshActionSettings.js +8 -8
  1327. package/lib/modules/actions/save-record/SaveRecordActionInitializer.js +8 -8
  1328. package/lib/modules/actions/save-record/customizeSaveRecordActionSettings.js +9 -9
  1329. package/lib/modules/actions/submit/CreateSubmitActionInitializer.js +8 -8
  1330. package/lib/modules/actions/submit/UpdateSubmitActionInitializer.js +8 -8
  1331. package/lib/modules/actions/submit/createSubmitActionSettings.js +14 -12
  1332. package/lib/modules/actions/submit/updateSubmitActionSettings.js +15 -13
  1333. package/lib/modules/actions/update-record/UpdateRecordActionInitializer.js +8 -8
  1334. package/lib/modules/actions/update-record/customizeUpdateRecordActionSettings.js +9 -9
  1335. package/lib/modules/actions/view-edit-popup/PopupActionInitializer.js +8 -8
  1336. package/lib/modules/actions/view-edit-popup/RecordFormBlockInitializers.js +8 -8
  1337. package/lib/modules/actions/view-edit-popup/UpdateActionInitializer.js +8 -8
  1338. package/lib/modules/actions/view-edit-popup/ViewActionInitializer.js +8 -8
  1339. package/lib/modules/actions/view-edit-popup/customizePopupActionSettings.js +8 -8
  1340. package/lib/modules/actions/view-edit-popup/editActionSettings.js +8 -8
  1341. package/lib/modules/actions/view-edit-popup/viewActionSettings.js +8 -8
  1342. package/lib/modules/blocks/BlockSchemaToolbar.js +9 -9
  1343. package/lib/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.js +8 -8
  1344. package/lib/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.js +12 -10
  1345. package/lib/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.js +8 -8
  1346. package/lib/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.js +17 -15
  1347. package/lib/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.js +8 -8
  1348. package/lib/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.js +8 -8
  1349. package/lib/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.js +15 -15
  1350. package/lib/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.js +8 -8
  1351. package/lib/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.js +8 -8
  1352. package/lib/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.js +12 -10
  1353. package/lib/modules/blocks/data-blocks/details-single/createDetailsUISchema.js +8 -8
  1354. package/lib/modules/blocks/data-blocks/details-single/detailsBlockSettings.js +11 -9
  1355. package/lib/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.js +10 -8
  1356. package/lib/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.js +8 -8
  1357. package/lib/modules/blocks/data-blocks/form/CreateFormBlockInitializer.js +8 -8
  1358. package/lib/modules/blocks/data-blocks/form/FilterItemCustomSettings.js +21 -25
  1359. package/lib/modules/blocks/data-blocks/form/FormBlockInitializer.js +10 -8
  1360. package/lib/modules/blocks/data-blocks/form/FormItemSchemaToolbar.js +8 -8
  1361. package/lib/modules/blocks/data-blocks/form/RecordFormBlockInitializer.js +10 -8
  1362. package/lib/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.js +8 -8
  1363. package/lib/modules/blocks/data-blocks/form/createEditFormBlockUISchema.js +8 -8
  1364. package/lib/modules/blocks/data-blocks/form/createFormActionInitializers.js +8 -8
  1365. package/lib/modules/blocks/data-blocks/form/createFormBlockSettings.js +14 -12
  1366. package/lib/modules/blocks/data-blocks/form/editFormBlockSettings.js +9 -9
  1367. package/lib/modules/blocks/data-blocks/form/fieldSettingsFormItem.js +19 -23
  1368. package/lib/modules/blocks/data-blocks/form/formActionInitializers.js +8 -8
  1369. package/lib/modules/blocks/data-blocks/form/formItemInitializers.js +8 -8
  1370. package/lib/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.js +8 -8
  1371. package/lib/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.js +8 -8
  1372. package/lib/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.js +8 -8
  1373. package/lib/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.js +8 -8
  1374. package/lib/modules/blocks/data-blocks/form/index.js +94 -99
  1375. package/lib/modules/blocks/data-blocks/form/updateFormActionInitializers.js +8 -8
  1376. package/lib/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.js +8 -8
  1377. package/lib/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.js +10 -8
  1378. package/lib/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.js +9 -11
  1379. package/lib/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.js +22 -26
  1380. package/lib/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.js +8 -8
  1381. package/lib/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.js +8 -8
  1382. package/lib/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.js +8 -8
  1383. package/lib/modules/blocks/data-blocks/grid-card/utils.js +9 -11
  1384. package/lib/modules/blocks/data-blocks/list/ListActionInitializers.js +8 -8
  1385. package/lib/modules/blocks/data-blocks/list/ListBlockInitializer.js +12 -10
  1386. package/lib/modules/blocks/data-blocks/list/createListBlockUISchema.js +9 -11
  1387. package/lib/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.js +8 -8
  1388. package/lib/modules/blocks/data-blocks/list/listBlockSettings.js +14 -18
  1389. package/lib/modules/blocks/data-blocks/list/listItemActionInitializers.js +8 -8
  1390. package/lib/modules/blocks/data-blocks/table/TableActionColumnInitializers.js +16 -18
  1391. package/lib/modules/blocks/data-blocks/table/TableActionInitializers.js +9 -9
  1392. package/lib/modules/blocks/data-blocks/table/TableBlockInitializer.js +12 -10
  1393. package/lib/modules/blocks/data-blocks/table/TableColumnInitializers.js +9 -9
  1394. package/lib/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.js +10 -14
  1395. package/lib/modules/blocks/data-blocks/table/createTableBlockUISchema.js +8 -8
  1396. package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.js +11 -9
  1397. package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockProps.js +28 -35
  1398. package/lib/modules/blocks/data-blocks/table/index.js +64 -69
  1399. package/lib/modules/blocks/data-blocks/table/tableBlockSettings.js +24 -24
  1400. package/lib/modules/blocks/data-blocks/table/tableColumnSettings.js +13 -13
  1401. package/lib/modules/blocks/data-blocks/table/utils.js +9 -9
  1402. package/lib/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.js +8 -8
  1403. package/lib/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.js +8 -8
  1404. package/lib/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.js +9 -11
  1405. package/lib/modules/blocks/data-blocks/table-selector/index.js +22 -27
  1406. package/lib/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.js +16 -16
  1407. package/lib/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.js +8 -8
  1408. package/lib/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.js +8 -8
  1409. package/lib/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.js +8 -8
  1410. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.js +9 -9
  1411. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.js +17 -21
  1412. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.js +17 -15
  1413. package/lib/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.js +9 -11
  1414. package/lib/modules/blocks/filter-blocks/form/FilterFormActionInitializers.js +8 -8
  1415. package/lib/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.js +8 -8
  1416. package/lib/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.js +8 -8
  1417. package/lib/modules/blocks/filter-blocks/form/filterFormBlockSettings.js +9 -9
  1418. package/lib/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.js +17 -21
  1419. package/lib/modules/blocks/filter-blocks/form/filterFormItemInitializers.js +8 -8
  1420. package/lib/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.js +9 -11
  1421. package/lib/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.js +8 -8
  1422. package/lib/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.js +8 -8
  1423. package/lib/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.js +10 -8
  1424. package/lib/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.js +9 -9
  1425. package/lib/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.js +17 -21
  1426. package/lib/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.js +8 -8
  1427. package/lib/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.js +8 -8
  1428. package/lib/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.js +8 -8
  1429. package/lib/modules/blocks/other-blocks/markdown/markdownBlockSettings.js +8 -8
  1430. package/lib/modules/blocks/useParentRecordCommon.js +8 -8
  1431. package/lib/modules/blocks/useSourceId.js +8 -8
  1432. package/lib/modules/blocks/useSourceKey.js +8 -8
  1433. package/lib/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.js +10 -10
  1434. package/lib/modules/fields/component/Cascader/cascaderComponentFieldSettings.js +35 -35
  1435. package/lib/modules/fields/component/Checkbox/checkboxComponentFieldSettings.js +9 -9
  1436. package/lib/modules/fields/component/CustomTitle/customTitleComponentFieldSettings.js +8 -8
  1437. package/lib/modules/fields/component/DatePicker/datePickerComponentFieldSettings.js +8 -8
  1438. package/lib/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.js +10 -10
  1439. package/lib/modules/fields/component/FileManager/fileManagerComponentFieldSettings.js +11 -11
  1440. package/lib/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.js +10 -10
  1441. package/lib/modules/fields/component/Input/inputComponentFieldsSettings.js +8 -8
  1442. package/lib/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.js +14 -14
  1443. package/lib/modules/fields/component/Nester/subformComponentFieldSettings.js +10 -10
  1444. package/lib/modules/fields/component/Picker/TableSelectorInitializers.js +8 -8
  1445. package/lib/modules/fields/component/Picker/recordPickerComponentFieldSettings.js +16 -14
  1446. package/lib/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.js +9 -9
  1447. package/lib/modules/fields/component/Radio/radioComponentFieldSettings.js +9 -9
  1448. package/lib/modules/fields/component/Select/selectComponentFieldSettings.js +47 -35
  1449. package/lib/modules/fields/component/SubTable/secondLevelSelect.js +11 -11
  1450. package/lib/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.js +22 -16
  1451. package/lib/modules/fields/component/Tag/tagComponentFieldSettings.js +13 -13
  1452. package/lib/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.js +8 -8
  1453. package/lib/modules/fields/initializer/CollectionFieldInitializer.js +8 -8
  1454. package/lib/modules/fields/initializer/TableCollectionFieldInitializer.js +8 -8
  1455. package/lib/modules/menu/GroupItem.js +8 -8
  1456. package/lib/modules/menu/LinkMenuItem.js +8 -8
  1457. package/lib/modules/menu/PageMenuItem.js +8 -8
  1458. package/lib/modules/menu/UploadMenuItem.js +8 -8
  1459. package/lib/modules/menu/menuItemInitializer.js +8 -8
  1460. package/lib/modules/page/BlockInitializers.js +8 -8
  1461. package/lib/modules/variable/DeclareVariable.js +12 -10
  1462. package/lib/modules/variable/useVariable.js +8 -8
  1463. package/lib/powered-by/index.js +8 -8
  1464. package/lib/record-provider/index.js +28 -14
  1465. package/lib/route-switch/RouteSchemaComponent.js +8 -8
  1466. package/lib/route-switch/index.js +16 -21
  1467. package/lib/schema-component/antd/AntdSchemaComponentProvider.js +8 -8
  1468. package/lib/schema-component/antd/__builtins__/hooks/index.js +28 -33
  1469. package/lib/schema-component/antd/__builtins__/hooks/useConfig.js +8 -8
  1470. package/lib/schema-component/antd/__builtins__/hooks/usePrefixCls.js +9 -9
  1471. package/lib/schema-component/antd/__builtins__/hooks/useToken.js +8 -8
  1472. package/lib/schema-component/antd/__builtins__/index.js +36 -41
  1473. package/lib/schema-component/antd/__builtins__/loading.js +10 -10
  1474. package/lib/schema-component/antd/__builtins__/portal.js +11 -9
  1475. package/lib/schema-component/antd/__builtins__/render.js +14 -15
  1476. package/lib/schema-component/antd/__builtins__/style.js +12 -10
  1477. package/lib/schema-component/antd/action/Action.Area.js +24 -18
  1478. package/lib/schema-component/antd/action/Action.Area.style.js +8 -8
  1479. package/lib/schema-component/antd/action/Action.Container.js +13 -11
  1480. package/lib/schema-component/antd/action/Action.Designer.js +78 -44
  1481. package/lib/schema-component/antd/action/Action.Drawer.js +17 -17
  1482. package/lib/schema-component/antd/action/Action.Drawer.style.js +8 -8
  1483. package/lib/schema-component/antd/action/Action.Link.js +10 -14
  1484. package/lib/schema-component/antd/action/Action.Modal.js +19 -19
  1485. package/lib/schema-component/antd/action/Action.Modal.style.js +8 -8
  1486. package/lib/schema-component/antd/action/Action.Page.js +13 -11
  1487. package/lib/schema-component/antd/action/Action.Popover.js +2 -3
  1488. package/lib/schema-component/antd/action/Action.Sheet.js +15 -17
  1489. package/lib/schema-component/antd/action/Action.js +23 -25
  1490. package/lib/schema-component/antd/action/Action.style.js +10 -10
  1491. package/lib/schema-component/antd/action/ActionBar.js +16 -16
  1492. package/lib/schema-component/antd/action/context.js +12 -10
  1493. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfAction.js +8 -8
  1494. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.js +8 -8
  1495. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfModal.js +8 -8
  1496. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.js +8 -8
  1497. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.js +8 -8
  1498. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForModal.js +8 -8
  1499. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForPopover.js +8 -8
  1500. package/lib/schema-component/antd/action/hooks.js +31 -27
  1501. package/lib/schema-component/antd/action/index.js +72 -77
  1502. package/lib/schema-component/antd/action/types.js +3 -4
  1503. package/lib/schema-component/antd/action/utils.js +15 -11
  1504. package/lib/schema-component/antd/appends-tree-select/AppendsTreeSelect.js +12 -15
  1505. package/lib/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.js +12 -15
  1506. package/lib/schema-component/antd/appends-tree-select/index.js +22 -27
  1507. package/lib/schema-component/antd/association-cascader/AssociationCascader.js +18 -15
  1508. package/lib/schema-component/antd/association-cascader/index.js +16 -21
  1509. package/lib/schema-component/antd/association-field/AssociationFieldProvider.js +17 -20
  1510. package/lib/schema-component/antd/association-field/AssociationSelect.js +22 -22
  1511. package/lib/schema-component/antd/association-field/Editable.js +23 -29
  1512. package/lib/schema-component/antd/association-field/FileManager.js +14 -16
  1513. package/lib/schema-component/antd/association-field/InternalCascadeSelect.js +56 -61
  1514. package/lib/schema-component/antd/association-field/InternalCascader.js +56 -59
  1515. package/lib/schema-component/antd/association-field/InternalDrawerSubTable.js +10 -10
  1516. package/lib/schema-component/antd/association-field/InternalNester.js +11 -15
  1517. package/lib/schema-component/antd/association-field/InternalPicker.js +14 -16
  1518. package/lib/schema-component/antd/association-field/InternalPopoverNester.js +9 -9
  1519. package/lib/schema-component/antd/association-field/InternalSubTable.js +12 -16
  1520. package/lib/schema-component/antd/association-field/InternalTag.js +13 -17
  1521. package/lib/schema-component/antd/association-field/InternalViewer.js +24 -26
  1522. package/lib/schema-component/antd/association-field/Nester.js +12 -16
  1523. package/lib/schema-component/antd/association-field/ReadPretty.js +8 -8
  1524. package/lib/schema-component/antd/association-field/SubTable.js +10 -10
  1525. package/lib/schema-component/antd/association-field/SubTabs/InternalCollapse.js +32 -32
  1526. package/lib/schema-component/antd/association-field/SubTabs/hook.js +10 -14
  1527. package/lib/schema-component/antd/association-field/SubTabs/index.js +16 -21
  1528. package/lib/schema-component/antd/association-field/SubTabs/styles.js +9 -9
  1529. package/lib/schema-component/antd/association-field/components/CreateRecordAction.js +10 -14
  1530. package/lib/schema-component/antd/association-field/context.js +8 -8
  1531. package/lib/schema-component/antd/association-field/hooks.js +28 -22
  1532. package/lib/schema-component/antd/association-field/index.js +40 -44
  1533. package/lib/schema-component/antd/association-field/schema.js +9 -11
  1534. package/lib/schema-component/antd/association-field/util.js +29 -19
  1535. package/lib/schema-component/antd/association-filter/ActionBarAssociationFilterAction.js +10 -10
  1536. package/lib/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.js +9 -9
  1537. package/lib/schema-component/antd/association-filter/AssociationFilter.Initializer.js +10 -10
  1538. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.Designer.js +17 -21
  1539. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.js +13 -17
  1540. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.style.js +10 -10
  1541. package/lib/schema-component/antd/association-filter/AssociationFilter.js +12 -14
  1542. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDelete.js +8 -8
  1543. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.js +9 -9
  1544. package/lib/schema-component/antd/association-filter/utilts.js +9 -11
  1545. package/lib/schema-component/antd/association-select/AssociationSelect.js +36 -38
  1546. package/lib/schema-component/antd/association-select/ReadPretty.js +10 -14
  1547. package/lib/schema-component/antd/association-select/index.js +16 -21
  1548. package/lib/schema-component/antd/association-select/useServiceOptions.js +8 -8
  1549. package/lib/schema-component/antd/auto-complete/AutoComplete.js +9 -9
  1550. package/lib/schema-component/antd/auto-complete/index.js +16 -21
  1551. package/lib/schema-component/antd/block-item/BlockItem.js +10 -14
  1552. package/lib/schema-component/antd/block-item/BlockToolbar.js +34 -28
  1553. package/lib/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.js +12 -16
  1554. package/lib/schema-component/antd/block-item/index.js +16 -21
  1555. package/lib/schema-component/antd/block-item/useBlockToolbar.js +19 -17
  1556. package/lib/schema-component/antd/card-item/CardItem.js +10 -14
  1557. package/lib/schema-component/antd/card-item/index.js +16 -21
  1558. package/lib/schema-component/antd/card-item/style.js +10 -10
  1559. package/lib/schema-component/antd/cascader/Cascader.js +13 -11
  1560. package/lib/schema-component/antd/cascader/ReadPretty.js +8 -8
  1561. package/lib/schema-component/antd/cascader/defaultFieldNames.js +9 -11
  1562. package/lib/schema-component/antd/cascader/index.js +16 -21
  1563. package/lib/schema-component/antd/checkbox/Checkbox.js +23 -21
  1564. package/lib/schema-component/antd/checkbox/index.js +16 -21
  1565. package/lib/schema-component/antd/collection-select/CollectionSelect.js +19 -15
  1566. package/lib/schema-component/antd/collection-select/index.js +16 -21
  1567. package/lib/schema-component/antd/color-picker/ColorPicker.js +15 -17
  1568. package/lib/schema-component/antd/color-picker/ReadPretty.js +11 -15
  1569. package/lib/schema-component/antd/color-picker/index.js +16 -21
  1570. package/lib/schema-component/antd/color-picker/util.js +17 -11
  1571. package/lib/schema-component/antd/color-select/ColorSelect.js +12 -10
  1572. package/lib/schema-component/antd/color-select/index.js +16 -21
  1573. package/lib/schema-component/antd/cron/Cron.js +15 -17
  1574. package/lib/schema-component/antd/cron/CronSet.js +14 -18
  1575. package/lib/schema-component/antd/cron/index.js +22 -27
  1576. package/lib/schema-component/antd/custom-cascader/CustomCascader.js +14 -12
  1577. package/lib/schema-component/antd/custom-cascader/ReadPretty.js +8 -8
  1578. package/lib/schema-component/antd/custom-cascader/defaultFieldNames.js +9 -11
  1579. package/lib/schema-component/antd/custom-cascader/index.js +16 -21
  1580. package/lib/schema-component/antd/date-picker/DatePicker.js +21 -22
  1581. package/lib/schema-component/antd/date-picker/ReadPretty.js +12 -16
  1582. package/lib/schema-component/antd/date-picker/index.js +16 -21
  1583. package/lib/schema-component/antd/date-picker/util.js +17 -11
  1584. package/lib/schema-component/antd/details/Details.js +11 -15
  1585. package/lib/schema-component/antd/details/index.js +16 -21
  1586. package/lib/schema-component/antd/error-fallback/ErrorFallback.js +8 -8
  1587. package/lib/schema-component/antd/error-fallback/index.js +16 -21
  1588. package/lib/schema-component/antd/expand-action/Expand.Action.Design.js +9 -9
  1589. package/lib/schema-component/antd/expand-action/Expand.Action.js +10 -10
  1590. package/lib/schema-component/antd/expand-action/index.js +8 -8
  1591. package/lib/schema-component/antd/filter/DynamicComponent.js +12 -16
  1592. package/lib/schema-component/antd/filter/Filter.Action.Designer.js +19 -15
  1593. package/lib/schema-component/antd/filter/Filter.js +8 -8
  1594. package/lib/schema-component/antd/filter/FilterAction.js +10 -8
  1595. package/lib/schema-component/antd/filter/FilterGroup.js +8 -8
  1596. package/lib/schema-component/antd/filter/FilterItem.js +8 -8
  1597. package/lib/schema-component/antd/filter/FilterItems.js +9 -9
  1598. package/lib/schema-component/antd/filter/SaveDefaultValue.js +9 -9
  1599. package/lib/schema-component/antd/filter/context.js +13 -9
  1600. package/lib/schema-component/antd/filter/index.js +28 -33
  1601. package/lib/schema-component/antd/filter/useFilterActionProps.js +43 -33
  1602. package/lib/schema-component/antd/filter/useOperators.js +11 -11
  1603. package/lib/schema-component/antd/filter/useValues.js +15 -19
  1604. package/lib/schema-component/antd/filter/utils.js +9 -11
  1605. package/lib/schema-component/antd/form/Form.Designer.js +8 -8
  1606. package/lib/schema-component/antd/form/Form.Settings.js +8 -8
  1607. package/lib/schema-component/antd/form/Form.js +8 -8
  1608. package/lib/schema-component/antd/form/index.js +22 -27
  1609. package/lib/schema-component/antd/form-dialog/index.js +22 -24
  1610. package/lib/schema-component/antd/form-item/FormItem.FilterFormDesigner.js +8 -8
  1611. package/lib/schema-component/antd/form-item/FormItem.FilterFormSettings.js +12 -16
  1612. package/lib/schema-component/antd/form-item/FormItem.Settings.js +67 -49
  1613. package/lib/schema-component/antd/form-item/FormItem.js +14 -16
  1614. package/lib/schema-component/antd/form-item/SchemaSettingOptions.js +61 -43
  1615. package/lib/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.js +14 -18
  1616. package/lib/schema-component/antd/form-item/hooks/useParseDefaultValue.js +12 -16
  1617. package/lib/schema-component/antd/form-item/hooks/useSpecialCase.js +24 -18
  1618. package/lib/schema-component/antd/form-item/index.js +34 -39
  1619. package/lib/schema-component/antd/form-item/utils.js +12 -14
  1620. package/lib/schema-component/antd/form-tab/index.js +21 -23
  1621. package/lib/schema-component/antd/form-v2/Form.Designer.js +14 -10
  1622. package/lib/schema-component/antd/form-v2/Form.FilterDesigner.js +8 -8
  1623. package/lib/schema-component/antd/form-v2/Form.Settings.js +20 -16
  1624. package/lib/schema-component/antd/form-v2/Form.js +18 -18
  1625. package/lib/schema-component/antd/form-v2/FormField.js +9 -9
  1626. package/lib/schema-component/antd/form-v2/Templates.js +17 -19
  1627. package/lib/schema-component/antd/form-v2/index.js +50 -54
  1628. package/lib/schema-component/antd/form-v2/utils.js +23 -25
  1629. package/lib/schema-component/antd/grid/Block.js +8 -8
  1630. package/lib/schema-component/antd/grid/Grid.js +34 -36
  1631. package/lib/schema-component/antd/grid/Grid.style.js +10 -10
  1632. package/lib/schema-component/antd/grid/index.js +22 -27
  1633. package/lib/schema-component/antd/grid-card/GridCard.Decorator.js +21 -19
  1634. package/lib/schema-component/antd/grid-card/GridCard.Decorator.style.js +10 -10
  1635. package/lib/schema-component/antd/grid-card/GridCard.Designer.js +14 -18
  1636. package/lib/schema-component/antd/grid-card/GridCard.Item.js +10 -10
  1637. package/lib/schema-component/antd/grid-card/GridCard.js +12 -16
  1638. package/lib/schema-component/antd/grid-card/hooks.js +16 -18
  1639. package/lib/schema-component/antd/grid-card/index.js +16 -21
  1640. package/lib/schema-component/antd/grid-card/options.js +24 -26
  1641. package/lib/schema-component/antd/icon-picker/IconFilterInput.js +11 -15
  1642. package/lib/schema-component/antd/icon-picker/IconList.js +8 -8
  1643. package/lib/schema-component/antd/icon-picker/IconPicker.js +14 -12
  1644. package/lib/schema-component/antd/icon-picker/index.js +16 -21
  1645. package/lib/schema-component/antd/index.js +693 -697
  1646. package/lib/schema-component/antd/input/EllipsisWithTooltip.js +9 -9
  1647. package/lib/schema-component/antd/input/Input.js +14 -10
  1648. package/lib/schema-component/antd/input/Json.js +10 -14
  1649. package/lib/schema-component/antd/input/ReadPretty.js +18 -22
  1650. package/lib/schema-component/antd/input/index.js +40 -45
  1651. package/lib/schema-component/antd/input/shared.js +9 -11
  1652. package/lib/schema-component/antd/input-number/InputNumber.js +15 -13
  1653. package/lib/schema-component/antd/input-number/ReadPretty.js +26 -19
  1654. package/lib/schema-component/antd/input-number/index.js +16 -21
  1655. package/lib/schema-component/antd/list/List.Decorator.js +19 -17
  1656. package/lib/schema-component/antd/list/List.Designer.js +14 -18
  1657. package/lib/schema-component/antd/list/List.Item.js +10 -14
  1658. package/lib/schema-component/antd/list/List.js +13 -17
  1659. package/lib/schema-component/antd/list/List.style.js +10 -10
  1660. package/lib/schema-component/antd/list/hooks.js +9 -11
  1661. package/lib/schema-component/antd/list/index.js +16 -21
  1662. package/lib/schema-component/antd/markdown/Markdown.Void.Designer.js +8 -8
  1663. package/lib/schema-component/antd/markdown/Markdown.Void.js +13 -18
  1664. package/lib/schema-component/antd/markdown/Markdown.js +14 -10
  1665. package/lib/schema-component/antd/markdown/index.js +16 -21
  1666. package/lib/schema-component/antd/markdown/style.js +9 -9
  1667. package/lib/schema-component/antd/markdown/util.js +15 -15
  1668. package/lib/schema-component/antd/media-card/MediaCard.js +8 -8
  1669. package/lib/schema-component/antd/media-card/index.js +16 -21
  1670. package/lib/schema-component/antd/media-card/style.js +8 -8
  1671. package/lib/schema-component/antd/menu/AdminMenu.js +8 -8
  1672. package/lib/schema-component/antd/menu/AdminMenu.style.js +8 -8
  1673. package/lib/schema-component/antd/menu/Menu.Designer.js +12 -10
  1674. package/lib/schema-component/antd/menu/Menu.js +36 -40
  1675. package/lib/schema-component/antd/menu/Menu.styles.js +9 -9
  1676. package/lib/schema-component/antd/menu/MenuAdd.js +8 -8
  1677. package/lib/schema-component/antd/menu/MenuItemInitializers/index.js +8 -8
  1678. package/lib/schema-component/antd/menu/MenuSearchAdd.js +10 -14
  1679. package/lib/schema-component/antd/menu/MenuSearchAdd.style.js +9 -9
  1680. package/lib/schema-component/antd/menu/index.js +28 -33
  1681. package/lib/schema-component/antd/menu/locale.js +8 -8
  1682. package/lib/schema-component/antd/menu/tools.js +10 -12
  1683. package/lib/schema-component/antd/menu/util.js +13 -9
  1684. package/lib/schema-component/antd/nanoIDInput/NanoIDInput.js +8 -8
  1685. package/lib/schema-component/antd/nanoIDInput/index.js +16 -21
  1686. package/lib/schema-component/antd/page/FixedBlock.js +20 -18
  1687. package/lib/schema-component/antd/page/FixedBlockDesignerItem.js +10 -10
  1688. package/lib/schema-component/antd/page/Page.Settings.js +14 -14
  1689. package/lib/schema-component/antd/page/Page.js +15 -19
  1690. package/lib/schema-component/antd/page/Page.style.js +8 -8
  1691. package/lib/schema-component/antd/page/PageDesigner.js +8 -8
  1692. package/lib/schema-component/antd/page/PageTab.Settings.js +8 -8
  1693. package/lib/schema-component/antd/page/PageTabDesigner.js +8 -8
  1694. package/lib/schema-component/antd/page/hooks/index.js +16 -21
  1695. package/lib/schema-component/antd/page/hooks/useIsBlockInPage.js +8 -8
  1696. package/lib/schema-component/antd/page/hooks/useShareActions.js +13 -20
  1697. package/lib/schema-component/antd/page/index.js +47 -52
  1698. package/lib/schema-component/antd/page/style.js +10 -8
  1699. package/lib/schema-component/antd/pagination/index.js +8 -8
  1700. package/lib/schema-component/antd/password/Password.js +14 -12
  1701. package/lib/schema-component/antd/password/PasswordStrength.js +8 -8
  1702. package/lib/schema-component/antd/password/index.js +16 -21
  1703. package/lib/schema-component/antd/password/utils.js +11 -13
  1704. package/lib/schema-component/antd/percent/Percent.js +8 -8
  1705. package/lib/schema-component/antd/percent/index.js +16 -21
  1706. package/lib/schema-component/antd/popover/Popover.js +10 -10
  1707. package/lib/schema-component/antd/popover/index.js +16 -21
  1708. package/lib/schema-component/antd/preview/Preview.js +24 -24
  1709. package/lib/schema-component/antd/preview/index.js +16 -21
  1710. package/lib/schema-component/antd/quick-edit/QuickEdit.js +14 -16
  1711. package/lib/schema-component/antd/quick-edit/index.js +16 -21
  1712. package/lib/schema-component/antd/radio/Radio.js +13 -11
  1713. package/lib/schema-component/antd/radio/index.js +16 -21
  1714. package/lib/schema-component/antd/record-picker/InputRecordPicker.js +16 -10
  1715. package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +12 -12
  1716. package/lib/schema-component/antd/record-picker/RecordPicker.js +8 -8
  1717. package/lib/schema-component/antd/record-picker/index.js +56 -60
  1718. package/lib/schema-component/antd/record-picker/useFieldNames.js +9 -9
  1719. package/lib/schema-component/antd/record-picker/util.js +17 -17
  1720. package/lib/schema-component/antd/remote-select/ReadPretty.js +8 -8
  1721. package/lib/schema-component/antd/remote-select/RemoteSelect.js +46 -50
  1722. package/lib/schema-component/antd/remote-select/index.js +16 -21
  1723. package/lib/schema-component/antd/remote-select/shared.js +8 -8
  1724. package/lib/schema-component/antd/rich-text/RichText.js +10 -14
  1725. package/lib/schema-component/antd/rich-text/index.js +16 -21
  1726. package/lib/schema-component/antd/rich-text/style.js +8 -8
  1727. package/lib/schema-component/antd/scroll-area/ScrollArea.js +13 -11
  1728. package/lib/schema-component/antd/scroll-area/index.js +16 -21
  1729. package/lib/schema-component/antd/select/FormulaSelect.js +15 -15
  1730. package/lib/schema-component/antd/select/ReadPretty.js +9 -9
  1731. package/lib/schema-component/antd/select/Select.js +22 -24
  1732. package/lib/schema-component/antd/select/index.js +23 -28
  1733. package/lib/schema-component/antd/select/utils.js +12 -10
  1734. package/lib/schema-component/antd/slider/index.js +17 -22
  1735. package/lib/schema-component/antd/slider/slider.js +13 -11
  1736. package/lib/schema-component/antd/space/index.js +16 -18
  1737. package/lib/schema-component/antd/table/Table.Array.Designer.js +8 -8
  1738. package/lib/schema-component/antd/table/Table.Array.js +16 -20
  1739. package/lib/schema-component/antd/table/Table.Column.ActionBar.js +12 -10
  1740. package/lib/schema-component/antd/table/Table.Column.Decorator.js +12 -10
  1741. package/lib/schema-component/antd/table/Table.Column.Designer.js +19 -23
  1742. package/lib/schema-component/antd/table/Table.Column.js +8 -8
  1743. package/lib/schema-component/antd/table/Table.Designer.js +8 -8
  1744. package/lib/schema-component/antd/table/Table.RowActionDesigner.js +8 -8
  1745. package/lib/schema-component/antd/table/Table.RowSelection.js +8 -8
  1746. package/lib/schema-component/antd/table/Table.Void.Designer.js +19 -19
  1747. package/lib/schema-component/antd/table/Table.Void.js +19 -19
  1748. package/lib/schema-component/antd/table/index.js +8 -8
  1749. package/lib/schema-component/antd/table-v2/Table.ActionColumnDesigner.js +8 -8
  1750. package/lib/schema-component/antd/table-v2/Table.Column.ActionBar.js +12 -10
  1751. package/lib/schema-component/antd/table-v2/Table.Column.Decorator.js +12 -10
  1752. package/lib/schema-component/antd/table-v2/Table.Column.Designer.js +36 -36
  1753. package/lib/schema-component/antd/table-v2/Table.Column.js +8 -8
  1754. package/lib/schema-component/antd/table-v2/Table.Designer.js +8 -8
  1755. package/lib/schema-component/antd/table-v2/Table.Index.js +8 -8
  1756. package/lib/schema-component/antd/table-v2/Table.js +31 -38
  1757. package/lib/schema-component/antd/table-v2/Table.styles.js +9 -9
  1758. package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +27 -25
  1759. package/lib/schema-component/antd/table-v2/TableField.js +9 -9
  1760. package/lib/schema-component/antd/table-v2/TableSelector.js +8 -8
  1761. package/lib/schema-component/antd/table-v2/TableSelectorDesigner.js +18 -22
  1762. package/lib/schema-component/antd/table-v2/components/ColumnFieldProvider.js +8 -8
  1763. package/lib/schema-component/antd/table-v2/index.js +64 -68
  1764. package/lib/schema-component/antd/table-v2/utils.js +16 -18
  1765. package/lib/schema-component/antd/tabs/Tabs.Designer.js +9 -10
  1766. package/lib/schema-component/antd/tabs/Tabs.js +10 -14
  1767. package/lib/schema-component/antd/tabs/context.js +12 -14
  1768. package/lib/schema-component/antd/tabs/index.js +23 -28
  1769. package/lib/schema-component/antd/time-picker/ReadPretty.js +11 -15
  1770. package/lib/schema-component/antd/time-picker/TimePicker.js +12 -10
  1771. package/lib/schema-component/antd/time-picker/index.js +16 -21
  1772. package/lib/schema-component/antd/tracking-link/index.js +9 -9
  1773. package/lib/schema-component/antd/tree/Tree.js +13 -13
  1774. package/lib/schema-component/antd/tree/index.js +8 -8
  1775. package/lib/schema-component/antd/tree-select/ReadPretty.js +17 -23
  1776. package/lib/schema-component/antd/tree-select/TreeSelect.js +14 -12
  1777. package/lib/schema-component/antd/tree-select/index.js +16 -21
  1778. package/lib/schema-component/antd/unixTimestamp/UnixTimestamp.js +10 -14
  1779. package/lib/schema-component/antd/unixTimestamp/index.js +16 -21
  1780. package/lib/schema-component/antd/upload/ReadPretty.js +18 -20
  1781. package/lib/schema-component/antd/upload/Upload.js +26 -26
  1782. package/lib/schema-component/antd/upload/index.js +16 -21
  1783. package/lib/schema-component/antd/upload/placeholder.js +9 -11
  1784. package/lib/schema-component/antd/upload/shared.js +60 -26
  1785. package/lib/schema-component/antd/upload/style.js +8 -8
  1786. package/lib/schema-component/antd/variable/CodeMirror.js +9 -9
  1787. package/lib/schema-component/antd/variable/Input.js +16 -23
  1788. package/lib/schema-component/antd/variable/JSONInput.js +8 -8
  1789. package/lib/schema-component/antd/variable/RawTextArea.js +10 -10
  1790. package/lib/schema-component/antd/variable/TextArea.js +25 -33
  1791. package/lib/schema-component/antd/variable/TextAreaWithGlobalScope.js +12 -10
  1792. package/lib/schema-component/antd/variable/Variable.js +17 -11
  1793. package/lib/schema-component/antd/variable/VariableSelect.js +13 -17
  1794. package/lib/schema-component/antd/variable/VariableSelect.style.js +10 -10
  1795. package/lib/schema-component/antd/variable/XButton.js +8 -8
  1796. package/lib/schema-component/antd/variable/index.js +25 -29
  1797. package/lib/schema-component/antd/variable/style.js +8 -8
  1798. package/lib/schema-component/common/dnd-context/index.js +22 -22
  1799. package/lib/schema-component/common/index.js +22 -27
  1800. package/lib/schema-component/common/infinite-scroll/infinite-scroll.js +10 -14
  1801. package/lib/schema-component/common/infinite-scroll/style.js +10 -10
  1802. package/lib/schema-component/common/sortable-item/DragHandleMenu.js +8 -8
  1803. package/lib/schema-component/common/sortable-item/DragHandleMenu.style.js +9 -9
  1804. package/lib/schema-component/common/sortable-item/DragHandlePageTab.js +8 -8
  1805. package/lib/schema-component/common/sortable-item/DragHandlePageTab.style.js +8 -8
  1806. package/lib/schema-component/common/sortable-item/SortableItem.js +27 -21
  1807. package/lib/schema-component/common/sortable-item/index.js +16 -21
  1808. package/lib/schema-component/common/utils/logic.js +14 -16
  1809. package/lib/schema-component/common/utils/uitls.js +27 -25
  1810. package/lib/schema-component/context.js +8 -8
  1811. package/lib/schema-component/core/DesignableSwitch.js +8 -8
  1812. package/lib/schema-component/core/FormProvider.js +8 -8
  1813. package/lib/schema-component/core/RemoteSchemaComponent.js +8 -8
  1814. package/lib/schema-component/core/SchemaComponent.js +10 -10
  1815. package/lib/schema-component/core/SchemaComponentOptions.js +10 -8
  1816. package/lib/schema-component/core/SchemaComponentPlugin.js +8 -8
  1817. package/lib/schema-component/core/SchemaComponentProvider.js +8 -8
  1818. package/lib/schema-component/core/index.js +52 -57
  1819. package/lib/schema-component/hooks/index.js +82 -87
  1820. package/lib/schema-component/hooks/useAttach.js +8 -8
  1821. package/lib/schema-component/hooks/useCompile.js +8 -8
  1822. package/lib/schema-component/hooks/useComponent.js +8 -8
  1823. package/lib/schema-component/hooks/useDesignable.js +37 -41
  1824. package/lib/schema-component/hooks/useDesigner.js +8 -8
  1825. package/lib/schema-component/hooks/useFieldComponentOptions.js +9 -9
  1826. package/lib/schema-component/hooks/useFieldModeOptions.js +9 -9
  1827. package/lib/schema-component/hooks/useFieldProps.js +8 -8
  1828. package/lib/schema-component/hooks/useFieldTitle.js +10 -10
  1829. package/lib/schema-component/hooks/useProps.js +9 -11
  1830. package/lib/schema-component/hooks/useSchemaComponentContext.js +8 -8
  1831. package/lib/schema-component/hooks/useTableSize.js +11 -11
  1832. package/lib/schema-component/index.js +48 -53
  1833. package/lib/schema-component/types.js +14 -4
  1834. package/lib/schema-initializer/SchemaInitializerPlugin.js +8 -8
  1835. package/lib/schema-initializer/buttons/CustomFormItemInitializers.js +8 -8
  1836. package/lib/schema-initializer/buttons/FormItemInitializers.js +25 -17
  1837. package/lib/schema-initializer/buttons/RecordBlockInitializers.js +12 -10
  1838. package/lib/schema-initializer/buttons/SubTableActionInitializers.js +8 -8
  1839. package/lib/schema-initializer/buttons/TabPaneInitializers.js +24 -12
  1840. package/lib/schema-initializer/buttons/index.js +46 -51
  1841. package/lib/schema-initializer/components/CreateRecordAction.js +23 -23
  1842. package/lib/schema-initializer/components/DeletedField.js +8 -8
  1843. package/lib/schema-initializer/components/assigned-field/AssignedField.js +15 -17
  1844. package/lib/schema-initializer/components/assigned-field/index.js +16 -21
  1845. package/lib/schema-initializer/components/index.js +22 -27
  1846. package/lib/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.js +8 -8
  1847. package/lib/schema-initializer/index.js +119 -123
  1848. package/lib/schema-initializer/items/ActionInitializer.js +8 -8
  1849. package/lib/schema-initializer/items/BlockInitializer.js +14 -12
  1850. package/lib/schema-initializer/items/CreateFilterActionInitializer.js +8 -8
  1851. package/lib/schema-initializer/items/CreateResetActionInitializer.js +8 -8
  1852. package/lib/schema-initializer/items/CustomFilterFormItemInitializer.js +32 -26
  1853. package/lib/schema-initializer/items/CustomizeActionInitializer.js +8 -8
  1854. package/lib/schema-initializer/items/DataBlockInitializer.js +19 -19
  1855. package/lib/schema-initializer/items/DeleteEventActionInitializer.js +8 -8
  1856. package/lib/schema-initializer/items/FilterBlockInitializer.js +8 -8
  1857. package/lib/schema-initializer/items/G2PlotInitializer.js +8 -8
  1858. package/lib/schema-initializer/items/InitializerWithSwitch.js +10 -10
  1859. package/lib/schema-initializer/items/RecordAssociationBlockInitializer.js +10 -8
  1860. package/lib/schema-initializer/items/RecordAssociationDetailsBlockInitializer.js +12 -10
  1861. package/lib/schema-initializer/items/RecordAssociationFormBlockInitializer.js +12 -10
  1862. package/lib/schema-initializer/items/RecordAssociationGridCardBlockInitializer.js +10 -8
  1863. package/lib/schema-initializer/items/RecordAssociationListBlockInitializer.js +10 -8
  1864. package/lib/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.js +12 -10
  1865. package/lib/schema-initializer/items/SelectActionInitializer.js +8 -8
  1866. package/lib/schema-initializer/items/SubmitActionInitializer.js +8 -8
  1867. package/lib/schema-initializer/items/TableActionColumnInitializer.js +8 -8
  1868. package/lib/schema-initializer/items/index.js +148 -153
  1869. package/lib/schema-initializer/style.js +8 -8
  1870. package/lib/schema-initializer/utils.js +174 -135
  1871. package/lib/schema-items/GeneralSchemaItems.js +16 -20
  1872. package/lib/schema-items/GeneralSettings.js +14 -14
  1873. package/lib/schema-items/OpenModeSchemaItems.js +16 -14
  1874. package/lib/schema-items/index.js +22 -27
  1875. package/lib/schema-settings/DataTemplates/FormDataTemplates.js +20 -20
  1876. package/lib/schema-settings/DataTemplates/TreeLabel.js +8 -8
  1877. package/lib/schema-settings/DataTemplates/components/AsDefaultTemplate.js +13 -17
  1878. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.js +26 -28
  1879. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.style.js +8 -8
  1880. package/lib/schema-settings/DataTemplates/components/Designer.js +15 -17
  1881. package/lib/schema-settings/DataTemplates/hooks/useCollectionState.js +28 -30
  1882. package/lib/schema-settings/DataTemplates/index.js +16 -21
  1883. package/lib/schema-settings/DataTemplates/utils.js +18 -22
  1884. package/lib/schema-settings/DateFormat/ExpiresRadio.js +15 -17
  1885. package/lib/schema-settings/EditCustomDefaultValue.js +11 -9
  1886. package/lib/schema-settings/EditFormulaTitleField.js +19 -15
  1887. package/lib/schema-settings/EnableChildCollections/DynamicComponent.js +8 -8
  1888. package/lib/schema-settings/EnableChildCollections/index.js +10 -10
  1889. package/lib/schema-settings/GeneralSchemaDesigner.js +18 -20
  1890. package/lib/schema-settings/LinkageRules/DynamicComponent.js +12 -16
  1891. package/lib/schema-settings/LinkageRules/LinkageRuleAction.js +14 -16
  1892. package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.js +11 -9
  1893. package/lib/schema-settings/LinkageRules/ValueDynamicComponent.js +10 -14
  1894. package/lib/schema-settings/LinkageRules/Variables.js +9 -9
  1895. package/lib/schema-settings/LinkageRules/action-hooks.js +10 -10
  1896. package/lib/schema-settings/LinkageRules/components/EnableLinkage.js +12 -16
  1897. package/lib/schema-settings/LinkageRules/components/LinkageHeader.js +25 -27
  1898. package/lib/schema-settings/LinkageRules/components/LinkageHeader.style.js +8 -8
  1899. package/lib/schema-settings/LinkageRules/context.js +14 -10
  1900. package/lib/schema-settings/LinkageRules/index.js +8 -8
  1901. package/lib/schema-settings/LinkageRules/type.js +9 -11
  1902. package/lib/schema-settings/LinkageRules/useValues.js +10 -10
  1903. package/lib/schema-settings/SchemaSettingCollection.js +9 -9
  1904. package/lib/schema-settings/SchemaSettingComponent.js +8 -8
  1905. package/lib/schema-settings/SchemaSettings.js +94 -46
  1906. package/lib/schema-settings/SchemaSettingsDataScope.js +10 -10
  1907. package/lib/schema-settings/SchemaSettingsDateFormat.js +12 -12
  1908. package/lib/schema-settings/SchemaSettingsDefaultValue.js +13 -17
  1909. package/lib/schema-settings/SchemaSettingsNumberFormat.js +8 -8
  1910. package/lib/schema-settings/SchemaSettingsPlugin.js +8 -8
  1911. package/lib/schema-settings/SchemaSettingsSortingRule.js +13 -17
  1912. package/lib/schema-settings/VariableInput/VariableInput.js +16 -16
  1913. package/lib/schema-settings/VariableInput/hooks/index.js +28 -33
  1914. package/lib/schema-settings/VariableInput/hooks/useBaseVariable.js +17 -19
  1915. package/lib/schema-settings/VariableInput/hooks/useBlockCollection.js +9 -9
  1916. package/lib/schema-settings/VariableInput/hooks/useContextAssociationFields.js +13 -11
  1917. package/lib/schema-settings/VariableInput/hooks/useDateVariable.js +10 -10
  1918. package/lib/schema-settings/VariableInput/hooks/useFilterVariable.js +13 -13
  1919. package/lib/schema-settings/VariableInput/hooks/useFormVariable.js +10 -8
  1920. package/lib/schema-settings/VariableInput/hooks/useIterationVariable.js +10 -8
  1921. package/lib/schema-settings/VariableInput/hooks/useParentRecordVariable.js +12 -10
  1922. package/lib/schema-settings/VariableInput/hooks/usePopupVariable.js +8 -8
  1923. package/lib/schema-settings/VariableInput/hooks/useRecordVariable.js +14 -16
  1924. package/lib/schema-settings/VariableInput/hooks/useRoleVariable.js +11 -9
  1925. package/lib/schema-settings/VariableInput/hooks/useUserVariable.js +13 -11
  1926. package/lib/schema-settings/VariableInput/hooks/useVariableOptions.js +9 -9
  1927. package/lib/schema-settings/VariableInput/index.js +24 -29
  1928. package/lib/schema-settings/VariableInput/type.js +3 -4
  1929. package/lib/schema-settings/VariableInput/utils/formatVariableScop.js +9 -11
  1930. package/lib/schema-settings/filter-form/FormFilterScope.js +8 -8
  1931. package/lib/schema-settings/filter-form/context.js +17 -11
  1932. package/lib/schema-settings/hooks/useFilterFormCustomProps.js +8 -8
  1933. package/lib/schema-settings/hooks/useGetAriaLabelOfDesigner.js +8 -8
  1934. package/lib/schema-settings/hooks/useIsAllowToSetDefaultValue.js +16 -16
  1935. package/lib/schema-settings/hooks/useIsShowMultipleSwitch.js +10 -10
  1936. package/lib/schema-settings/hooks/useParseDataScopeFilter.js +8 -8
  1937. package/lib/schema-settings/index.js +125 -130
  1938. package/lib/schema-settings/isPatternDisabled.js +10 -12
  1939. package/lib/schema-settings/styles.js +8 -8
  1940. package/lib/schema-settings/types.js +3 -4
  1941. package/lib/schema-settings/utils/createModalSettingsItem.js +10 -14
  1942. package/lib/schema-settings/utils/createSelectSettingsItem.js +10 -14
  1943. package/lib/schema-settings/utils/createSwitchSettingsItem.js +10 -14
  1944. package/lib/schema-settings/utils/createTextSettingsItem.js +8 -8
  1945. package/lib/schema-settings/utils/index.js +34 -39
  1946. package/lib/schema-settings/utils/util.js +16 -16
  1947. package/lib/schema-templates/BlockTemplate.js +12 -10
  1948. package/lib/schema-templates/BlockTemplateDetails.js +11 -11
  1949. package/lib/schema-templates/BlockTemplatePage.js +10 -8
  1950. package/lib/schema-templates/SchemaTemplateManagerProvider.js +23 -13
  1951. package/lib/schema-templates/collections/uiSchemaTemplates.js +9 -11
  1952. package/lib/schema-templates/index.js +34 -39
  1953. package/lib/schema-templates/schemas/CollectionTitle.js +8 -8
  1954. package/lib/schema-templates/schemas/uiSchemaTemplates.js +8 -8
  1955. package/lib/schema-templates/useSchemaTemplateManager.js +10 -10
  1956. package/lib/style/css-variable/CSSVariableProvider.js +13 -11
  1957. package/lib/style/css-variable/index.js +10 -14
  1958. package/lib/style/index.js +24 -12
  1959. package/lib/style/theme/AntdAppProvider.js +10 -10
  1960. package/lib/style/theme/defaultTheme.js +9 -11
  1961. package/lib/style/theme/index.js +95 -99
  1962. package/lib/style/theme/type.js +3 -4
  1963. package/lib/style/useToken.js +8 -8
  1964. package/lib/testUtils/index.js +16 -21
  1965. package/lib/testUtils/mockAPIClient.js +27 -25
  1966. package/lib/user/ChangePassword.js +8 -8
  1967. package/lib/user/CurrentUser.js +16 -12
  1968. package/lib/user/CurrentUserProvider.js +22 -14
  1969. package/lib/user/CurrentUserSettingsMenuProvider.js +15 -13
  1970. package/lib/user/EditProfile.js +9 -9
  1971. package/lib/user/LanguageSettings.js +12 -16
  1972. package/lib/user/SwitchRole.js +8 -8
  1973. package/lib/user/VerificationCode.js +8 -8
  1974. package/lib/user/index.js +28 -33
  1975. package/lib/variables/VariablesProvider.js +24 -26
  1976. package/lib/variables/constants.js +9 -11
  1977. package/lib/variables/hooks/useBuiltinVariables.js +10 -10
  1978. package/lib/variables/hooks/useContextVariable.js +14 -14
  1979. package/lib/variables/hooks/useLocalVariables.js +11 -11
  1980. package/lib/variables/hooks/useVariables.js +10 -10
  1981. package/lib/variables/index.js +79 -83
  1982. package/lib/variables/types.js +3 -4
  1983. package/lib/variables/utils/filterEmptyValues.js +9 -11
  1984. package/lib/variables/utils/getAction.js +9 -11
  1985. package/lib/variables/utils/getPath.js +8 -8
  1986. package/lib/variables/utils/getVariableName.js +10 -14
  1987. package/lib/variables/utils/hasRequested.js +18 -20
  1988. package/lib/variables/utils/isVariable.js +12 -14
  1989. package/lib/variables/utils/transformVariableValue.js +10 -14
  1990. package/lib/variables/utils/uniq.js +10 -14
  1991. package/package.json +7 -7
  1992. package/es/api-client/__tests__/APIClient.test.mjs +0 -55
  1993. package/es/api-client/demos/demo1.mjs +0 -32
  1994. package/es/api-client/demos/demo2.mjs +0 -31
  1995. package/es/api-client/demos/demo3.mjs +0 -74
  1996. package/es/application/__tests__/Application.test.mjs +0 -481
  1997. package/es/application/__tests__/Plugin.test.mjs +0 -197
  1998. package/es/application/__tests__/PluginSettingsManager.test.mjs +0 -156
  1999. package/es/application/__tests__/RouterManager.test.mjs +0 -311
  2000. package/es/application/__tests__/SchemaInitializer.test.mjs +0 -163
  2001. package/es/application/__tests__/SchemaToolbar.test.mjs +0 -143
  2002. package/es/application/__tests__/hoc/withDynamicSchemaProps.test.mjs +0 -187
  2003. package/es/application/__tests__/hooks.test.mjs +0 -85
  2004. package/es/application/__tests__/utils/remotePlugins.test.mjs +0 -318
  2005. package/es/application/__tests__/utils.test.mjs +0 -99
  2006. package/es/application/demos/demo1.mjs +0 -110
  2007. package/es/application/demos/demo2.mjs +0 -126
  2008. package/es/application/demos/demo3.mjs +0 -11
  2009. package/es/collection-manager/demos/demo2.mjs +0 -106
  2010. package/es/collection-manager/demos/demo3.mjs +0 -76
  2011. package/es/collection-manager/demos/demo4.mjs +0 -168
  2012. package/es/collection-manager/demos/demo5.mjs +0 -152
  2013. package/es/collection-manager/interfaces/__tests__/json.mjs +0 -40
  2014. package/es/data-source/__tests__/collection/AssociationProvider.test.mjs +0 -113
  2015. package/es/data-source/__tests__/collection/Collection.test.mjs +0 -297
  2016. package/es/data-source/__tests__/collection/CollectionManager.test.mjs +0 -297
  2017. package/es/data-source/__tests__/collection/CollectionManagerProvider.test.mjs +0 -114
  2018. package/es/data-source/__tests__/collection/CollectionProvider.test.mjs +0 -106
  2019. package/es/data-source/__tests__/collection/ExtendCollectionsProvider.test.mjs +0 -87
  2020. package/es/data-source/__tests__/collection-field/CollectionField.test.mjs +0 -67
  2021. package/es/data-source/__tests__/collection-field/CollectionFieldProvider.test.mjs +0 -51
  2022. package/es/data-source/__tests__/collection-field-interface/CollectionFieldInterfaceManager.test.mjs +0 -162
  2023. package/es/data-source/__tests__/collection-record/CollectionRecord.test.mjs +0 -21
  2024. package/es/data-source/__tests__/collection-record/CollectionRecordProvider.test.mjs +0 -253
  2025. package/es/data-source/__tests__/collection-record/isNewRecord.test.mjs +0 -45
  2026. package/es/data-source/__tests__/collection-template/CollectionTemplateManager.test.mjs +0 -123
  2027. package/es/data-source/__tests__/components/CollectionDeletedPlaceholder.test.mjs +0 -43
  2028. package/es/data-source/__tests__/data-block/DataBlockProvider.test.mjs +0 -114
  2029. package/es/data-source/__tests__/data-block/data-block-demos/association-table-list-and-parent-record.mjs +0 -88
  2030. package/es/data-source/__tests__/data-block/data-block-demos/association-table-list-and-source-id.mjs +0 -139
  2031. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-create.mjs +0 -109
  2032. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-get-and-update.mjs +0 -174
  2033. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-record-and-update.mjs +0 -138
  2034. package/es/data-source/__tests__/data-block/data-block-demos/collection-table-list.mjs +0 -94
  2035. package/es/data-source/__tests__/data-block/data-block-demos/createApp.mjs +0 -55
  2036. package/es/data-source/__tests__/data-source/CollectionDataSourceProvider.test.mjs +0 -35
  2037. package/es/data-source/__tests__/data-source/DataSource.test.mjs +0 -75
  2038. package/es/data-source/__tests__/data-source/DataSourceManager.test.mjs +0 -166
  2039. package/es/data-source/__tests__/data-source/DataSourceManagerProvider.test.mjs +0 -30
  2040. package/es/data-source/__tests__/data-source/DataSourceProvider.test.mjs +0 -79
  2041. package/es/data-source/__tests__/utils.test.mjs +0 -55
  2042. package/es/env.d.mjs +0 -0
  2043. package/es/filter-provider/__tests__/transformToFilter.mjs +0 -65
  2044. package/es/filter-provider/__tests__/useFilter.mjs +0 -41
  2045. package/es/filter-provider/__tests__/utiles.test.mjs +0 -265
  2046. package/es/flag-provider/__tests__/flag-provider.test.mjs +0 -19
  2047. package/es/icon/__tests__/icon.test.mjs +0 -25
  2048. package/es/icon/demos/antd-icon.mjs +0 -7
  2049. package/es/icon/demos/custom-icon.mjs +0 -16
  2050. package/es/icon/demos/iconfont.mjs +0 -10
  2051. package/es/icon/demos/register-icon.mjs +0 -23
  2052. package/es/modules/actions/disassociate/__e2e__/disassociate.test.mjs +0 -39
  2053. package/es/modules/actions/disassociate/__e2e__/templatesOfPage.mjs +0 -383
  2054. package/es/modules/blocks/data-blocks/details-multi/__e2e__/schemaInitializer.test.mjs +0 -112
  2055. package/es/modules/blocks/data-blocks/details-multi/__e2e__/schemaSettings.test.mjs +0 -72
  2056. package/es/modules/blocks/data-blocks/details-multi/__e2e__/templatesOfBug.mjs +0 -0
  2057. package/es/modules/blocks/data-blocks/details-multi/__tests__/createDetailsBlockWithPagingUISchema.test.mjs +0 -14
  2058. package/es/modules/blocks/data-blocks/details-single/__e2e__/schemaInitializer.test.mjs +0 -98
  2059. package/es/modules/blocks/data-blocks/details-single/__e2e__/schemaSettings.test.mjs +0 -24
  2060. package/es/modules/blocks/data-blocks/details-single/__e2e__/templatesOfBug.mjs +0 -0
  2061. package/es/modules/blocks/data-blocks/details-single/__tests__/createDetailsBlockWithoutPagingUISchema.test.mjs +0 -14
  2062. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/associationForm.test.mjs +0 -14
  2063. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/dragAndDrop.test.mjs +0 -26
  2064. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadAssociationFields.test.mjs +0 -168
  2065. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadVariables.test.mjs +0 -28
  2066. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/schemaInitializer.test.mjs +0 -141
  2067. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/schemaSettings.test.mjs +0 -1254
  2068. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/templatesOfBug.mjs +0 -6002
  2069. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaInitializer.test.mjs +0 -16
  2070. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaSettings.test.mjs +0 -212
  2071. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/templatesOfBug.mjs +0 -0
  2072. package/es/modules/blocks/data-blocks/form/__tests__/createCreateFormBlockUISchema.test.mjs +0 -19
  2073. package/es/modules/blocks/data-blocks/form/__tests__/createEditFormBlockUISchema.test.mjs +0 -18
  2074. package/es/modules/blocks/data-blocks/grid-card/__e2e__/schemaInitializer.test.mjs +0 -220
  2075. package/es/modules/blocks/data-blocks/grid-card/__e2e__/schemaSettings.test.mjs +0 -48
  2076. package/es/modules/blocks/data-blocks/grid-card/__e2e__/templatesOfBug.mjs +0 -0
  2077. package/es/modules/blocks/data-blocks/grid-card/__tests__/createGridCardBlockSchema.test.mjs +0 -26
  2078. package/es/modules/blocks/data-blocks/list/__e2e__/schemaInitializer.test.mjs +0 -211
  2079. package/es/modules/blocks/data-blocks/list/__e2e__/schemaSettings.test.mjs +0 -23
  2080. package/es/modules/blocks/data-blocks/list/__e2e__/templatesOfBug.mjs +0 -0
  2081. package/es/modules/blocks/data-blocks/list/__tests__/createListBlockSchema.test.mjs +0 -24
  2082. package/es/modules/blocks/data-blocks/table/__e2e__/actions/duplicate.test.mjs +0 -9
  2083. package/es/modules/blocks/data-blocks/table/__e2e__/actions/filter.test.mjs +0 -33
  2084. package/es/modules/blocks/data-blocks/table/__e2e__/checkboxForTableRow.test.mjs +0 -19
  2085. package/es/modules/blocks/data-blocks/table/__e2e__/dragAndDrop.test.mjs +0 -31
  2086. package/es/modules/blocks/data-blocks/table/__e2e__/schemaInitializer.test.mjs +0 -419
  2087. package/es/modules/blocks/data-blocks/table/__e2e__/schemaSettings.test.mjs +0 -869
  2088. package/es/modules/blocks/data-blocks/table/__e2e__/templatesOfBug.mjs +0 -934
  2089. package/es/modules/blocks/data-blocks/table/__e2e__/tree/schemaSettings.test.mjs +0 -42
  2090. package/es/modules/blocks/data-blocks/table/__tests__/createTableBLockSchema.test.mjs +0 -16
  2091. package/es/modules/blocks/data-blocks/table-selector/__e2e__/schemaInitializer.test.mjs +0 -159
  2092. package/es/modules/blocks/data-blocks/table-selector/__e2e__/schemaSettings.test.mjs +0 -146
  2093. package/es/modules/blocks/data-blocks/table-selector/__e2e__/templatesOfBug.mjs +0 -692
  2094. package/es/modules/blocks/data-blocks/table-selector/__e2e__/utils.mjs +0 -12
  2095. package/es/modules/blocks/data-blocks/table-selector/__tests__/createTableSelectorSchema.test.mjs +0 -14
  2096. package/es/modules/blocks/filter-blocks/collapse/__e2e__/schemaInitializer.test.mjs +0 -59
  2097. package/es/modules/blocks/filter-blocks/collapse/__e2e__/schemaSettings.test.mjs +0 -62
  2098. package/es/modules/blocks/filter-blocks/collapse/__e2e__/templatesOfBug.mjs +0 -0
  2099. package/es/modules/blocks/filter-blocks/collapse/__tests__/createCollapseBlockSchema.test.mjs +0 -40
  2100. package/es/modules/blocks/filter-blocks/form/__e2e__/schemaInitializer.test.mjs +0 -115
  2101. package/es/modules/blocks/filter-blocks/form/__e2e__/schemaSettings.test.mjs +0 -98
  2102. package/es/modules/blocks/filter-blocks/form/__e2e__/templatesOfBug.mjs +0 -0
  2103. package/es/modules/blocks/filter-blocks/form/__tests__/createFilterFormBlockSchema.test.mjs +0 -23
  2104. package/es/modules/blocks/other-blocks/markdown/__e2e__/schemaInitializer.test.mjs +0 -10
  2105. package/es/modules/blocks/other-blocks/markdown/__e2e__/schemaSettings.test.mjs +0 -33
  2106. package/es/modules/blocks/other-blocks/markdown/__e2e__/templatesOfBug.mjs +0 -0
  2107. package/es/modules/dialog/__e2e__/schemaInitializer.test.mjs +0 -388
  2108. package/es/modules/dialog/__e2e__/schemaSettings.test.mjs +0 -59
  2109. package/es/modules/dialog/__e2e__/templatesOfBug.mjs +0 -2122
  2110. package/es/modules/dialog/__e2e__/zIndex.test.mjs +0 -35
  2111. package/es/modules/fields/component/DatePicker/__e2e__/schemaSettings.test.mjs +0 -74
  2112. package/es/modules/fields/component/DatePicker/__e2e__/utils.mjs +0 -323
  2113. package/es/modules/menu/__e2e__/dragAndDrop.test.mjs +0 -27
  2114. package/es/modules/menu/__e2e__/schemaInitializer.test.mjs +0 -101
  2115. package/es/modules/menu/__e2e__/schemaSettings.test.mjs +0 -347
  2116. package/es/modules/menu/__e2e__/templatesOfBug.mjs +0 -0
  2117. package/es/modules/page/__e2e__/blockInitializers.test.mjs +0 -17
  2118. package/es/modules/page/__e2e__/dragAndDrop.test.mjs +0 -16
  2119. package/es/modules/page/__e2e__/schemaInitailizer.test.mjs +0 -15
  2120. package/es/modules/page/__e2e__/schemaSettings.test.mjs +0 -134
  2121. package/es/modules/page/__e2e__/templatesOfBug.mjs +0 -0
  2122. package/es/modules/plugin-manager/__e2e__/pluginManager.test.mjs +0 -113
  2123. package/es/modules/plugin-manager/__e2e__/templatesOfBug.mjs +0 -0
  2124. package/es/modules/user-center/__e2e__/settings.test.mjs +0 -12
  2125. package/es/schema-component/antd/action/__tests__/action.test.mjs +0 -116
  2126. package/es/schema-component/antd/action/demos/demo1.mjs +0 -70
  2127. package/es/schema-component/antd/action/demos/demo2.mjs +0 -75
  2128. package/es/schema-component/antd/action/demos/demo3.mjs +0 -127
  2129. package/es/schema-component/antd/action/demos/demo4.mjs +0 -58
  2130. package/es/schema-component/antd/action/demos/demo5.mjs +0 -211
  2131. package/es/schema-component/antd/action/demos/demo6.mjs +0 -95
  2132. package/es/schema-component/antd/association-select/__tests__/association-select.test.mjs +0 -16
  2133. package/es/schema-component/antd/association-select/demos/demo1.mjs +0 -55
  2134. package/es/schema-component/antd/block-item/__tests__/block-item.test.mjs +0 -14
  2135. package/es/schema-component/antd/block-item/demos/demo1.mjs +0 -60
  2136. package/es/schema-component/antd/card-item/__tests__/card-item.test.mjs +0 -11
  2137. package/es/schema-component/antd/card-item/demos/demo1.mjs +0 -31
  2138. package/es/schema-component/antd/cascader/__tests__/cascader.test.mjs +0 -29
  2139. package/es/schema-component/antd/cascader/demos/demo1.mjs +0 -82
  2140. package/es/schema-component/antd/cascader/demos/demo2.mjs +0 -115
  2141. package/es/schema-component/antd/checkbox/__tests__/checkbox.test.mjs +0 -40
  2142. package/es/schema-component/antd/checkbox/demos/checkbox.group.mjs +0 -54
  2143. package/es/schema-component/antd/checkbox/demos/checkbox.mjs +0 -40
  2144. package/es/schema-component/antd/collection-select/__tests__/collection-select.test.mjs +0 -16
  2145. package/es/schema-component/antd/collection-select/demos/demo1.mjs +0 -36
  2146. package/es/schema-component/antd/color-picker/demos/demo1.mjs +0 -49
  2147. package/es/schema-component/antd/color-select/__tests__/color-select.test.mjs +0 -16
  2148. package/es/schema-component/antd/color-select/demos/demo1.mjs +0 -40
  2149. package/es/schema-component/antd/cron/__tests__/cron-set.test.mjs +0 -30
  2150. package/es/schema-component/antd/cron/demos/demo1.mjs +0 -32
  2151. package/es/schema-component/antd/cron/demos/demo2.mjs +0 -51
  2152. package/es/schema-component/antd/date-picker/__tests__/date-picker.test.mjs +0 -178
  2153. package/es/schema-component/antd/date-picker/__tests__/getDateRanges.test.mjs +0 -110
  2154. package/es/schema-component/antd/date-picker/__tests__/mapDatePicker.test.mjs +0 -200
  2155. package/es/schema-component/antd/date-picker/__tests__/mapRangePicker.test.mjs +0 -59
  2156. package/es/schema-component/antd/date-picker/__tests__/util.test.mjs +0 -166
  2157. package/es/schema-component/antd/date-picker/demos/demo1.mjs +0 -57
  2158. package/es/schema-component/antd/date-picker/demos/demo10.mjs +0 -61
  2159. package/es/schema-component/antd/date-picker/demos/demo11.mjs +0 -65
  2160. package/es/schema-component/antd/date-picker/demos/demo2.mjs +0 -60
  2161. package/es/schema-component/antd/date-picker/demos/demo3.mjs +0 -58
  2162. package/es/schema-component/antd/date-picker/demos/demo4.mjs +0 -72
  2163. package/es/schema-component/antd/date-picker/demos/demo5.mjs +0 -71
  2164. package/es/schema-component/antd/date-picker/demos/demo6.mjs +0 -71
  2165. package/es/schema-component/antd/date-picker/demos/demo7.mjs +0 -61
  2166. package/es/schema-component/antd/date-picker/demos/demo8.mjs +0 -61
  2167. package/es/schema-component/antd/date-picker/demos/demo9.mjs +0 -61
  2168. package/es/schema-component/antd/details/__tests__/details.test.mjs +0 -10
  2169. package/es/schema-component/antd/details/demos/demo1.mjs +0 -42
  2170. package/es/schema-component/antd/error-fallback/__tests__/error-fallback.test.mjs +0 -17
  2171. package/es/schema-component/antd/error-fallback/demos/demo1.mjs +0 -13
  2172. package/es/schema-component/antd/filter/__tests__/filter.test.mjs +0 -113
  2173. package/es/schema-component/antd/filter/demos/demo2.mjs +0 -129
  2174. package/es/schema-component/antd/filter/demos/demo3.mjs +0 -196
  2175. package/es/schema-component/antd/filter/demos/demo4.mjs +0 -184
  2176. package/es/schema-component/antd/filter/demos/demo5.mjs +0 -131
  2177. package/es/schema-component/antd/filter/demos/demo6.mjs +0 -118
  2178. package/es/schema-component/antd/form/__tests__/form.test.mjs +0 -113
  2179. package/es/schema-component/antd/form/demos/apiClient.mjs +0 -17
  2180. package/es/schema-component/antd/form/demos/demo1.mjs +0 -73
  2181. package/es/schema-component/antd/form/demos/demo2.mjs +0 -73
  2182. package/es/schema-component/antd/form/demos/demo3.mjs +0 -72
  2183. package/es/schema-component/antd/form/demos/demo4.mjs +0 -80
  2184. package/es/schema-component/antd/form/demos/demo5.mjs +0 -114
  2185. package/es/schema-component/antd/form/demos/demo6.mjs +0 -71
  2186. package/es/schema-component/antd/form/demos/demo7.mjs +0 -75
  2187. package/es/schema-component/antd/form/demos/demo8.mjs +0 -86
  2188. package/es/schema-component/antd/form-item/__tests__/form-item.test.mjs +0 -12
  2189. package/es/schema-component/antd/form-item/__tests__/hooks/useSpecialCase.test.mjs +0 -27
  2190. package/es/schema-component/antd/form-item/__tests__/utils.test.mjs +0 -65
  2191. package/es/schema-component/antd/form-item/demos/demo1.mjs +0 -37
  2192. package/es/schema-component/antd/form-v2/__tests__/form-v2.test.mjs +0 -47
  2193. package/es/schema-component/antd/form-v2/demos/collections.mjs +0 -1565
  2194. package/es/schema-component/antd/form-v2/demos/demo1.mjs +0 -108
  2195. package/es/schema-component/antd/form-v2/demos/demo2.mjs +0 -131
  2196. package/es/schema-component/antd/form-v2/demos/demo3.mjs +0 -117
  2197. package/es/schema-component/antd/grid/__tests__/grid.test.mjs +0 -26
  2198. package/es/schema-component/antd/grid/demos/demo1.mjs +0 -194
  2199. package/es/schema-component/antd/grid/demos/demo2.mjs +0 -97
  2200. package/es/schema-component/antd/grid/demos/demo3.mjs +0 -83
  2201. package/es/schema-component/antd/grid-card/__tests__/grid-card.test.mjs +0 -9
  2202. package/es/schema-component/antd/grid-card/demos/demo1.mjs +0 -6
  2203. package/es/schema-component/antd/icon-picker/__tests__/icon-picker.test.mjs +0 -25
  2204. package/es/schema-component/antd/icon-picker/demos/icon-picker.mjs +0 -40
  2205. package/es/schema-component/antd/input/__tests__/Input.test.mjs +0 -115
  2206. package/es/schema-component/antd/input/demos/input.mjs +0 -40
  2207. package/es/schema-component/antd/input/demos/json.mjs +0 -46
  2208. package/es/schema-component/antd/input/demos/textarea.mjs +0 -68
  2209. package/es/schema-component/antd/input/demos/url.mjs +0 -42
  2210. package/es/schema-component/antd/input-number/__tests__/input-number.test.mjs +0 -116
  2211. package/es/schema-component/antd/input-number/demos/addonBefore&addonAfter.mjs +0 -48
  2212. package/es/schema-component/antd/input-number/demos/highPrecisionDecimals.mjs +0 -50
  2213. package/es/schema-component/antd/input-number/demos/inputNumber.mjs +0 -40
  2214. package/es/schema-component/antd/list/__tests__/list.test.mjs +0 -9
  2215. package/es/schema-component/antd/list/demos/demo1.mjs +0 -6
  2216. package/es/schema-component/antd/markdown/__tests__/markdown.test.mjs +0 -27
  2217. package/es/schema-component/antd/markdown/demos/demo1.mjs +0 -40
  2218. package/es/schema-component/antd/markdown/demos/demo2.mjs +0 -51
  2219. package/es/schema-component/antd/menu/__tests__/menu.test.mjs +0 -38
  2220. package/es/schema-component/antd/menu/demos/demo1.mjs +0 -93
  2221. package/es/schema-component/antd/menu/demos/demo2.mjs +0 -96
  2222. package/es/schema-component/antd/menu/demos/demo3.mjs +0 -135
  2223. package/es/schema-component/antd/page/__tests__/page.test.mjs +0 -18
  2224. package/es/schema-component/antd/page/demos/demo1.mjs +0 -38
  2225. package/es/schema-component/antd/password/__tests__/password.test.mjs +0 -28
  2226. package/es/schema-component/antd/password/__tests__/utils.test.mjs +0 -21
  2227. package/es/schema-component/antd/password/demos/demo1.mjs +0 -40
  2228. package/es/schema-component/antd/password/demos/demo2.mjs +0 -43
  2229. package/es/schema-component/antd/percent/__tests__/percent.test.mjs +0 -16
  2230. package/es/schema-component/antd/percent/demos/percent.mjs +0 -40
  2231. package/es/schema-component/antd/preview/__tests__/preview.test.mjs +0 -11
  2232. package/es/schema-component/antd/preview/demos/demo1.mjs +0 -81
  2233. package/es/schema-component/antd/radio/__tests__/radio.test.mjs +0 -43
  2234. package/es/schema-component/antd/radio/demos/demo1.mjs +0 -40
  2235. package/es/schema-component/antd/radio/demos/demo2.mjs +0 -52
  2236. package/es/schema-component/antd/radio/demos/demo3.mjs +0 -54
  2237. package/es/schema-component/antd/record-picker/__tests__/record-picker.test.mjs +0 -27
  2238. package/es/schema-component/antd/record-picker/demos/demo1.mjs +0 -175
  2239. package/es/schema-component/antd/record-picker/demos/mockData.mjs +0 -211
  2240. package/es/schema-component/antd/remote-select/__tests__/remote-select.test.mjs +0 -16
  2241. package/es/schema-component/antd/remote-select/demos/demo1.mjs +0 -55
  2242. package/es/schema-component/antd/rich-text/__tests__/rich-text.test.mjs +0 -13
  2243. package/es/schema-component/antd/rich-text/demos/demo1.mjs +0 -41
  2244. package/es/schema-component/antd/select/__tests__/select.test.mjs +0 -41
  2245. package/es/schema-component/antd/select/__tests__/utils.test.mjs +0 -129
  2246. package/es/schema-component/antd/select/demos/demo1.mjs +0 -72
  2247. package/es/schema-component/antd/select/demos/demo2.mjs +0 -76
  2248. package/es/schema-component/antd/select/demos/demo3.mjs +0 -84
  2249. package/es/schema-component/antd/table/__tests__/table.test.mjs +0 -21
  2250. package/es/schema-component/antd/table/demos/demo1.mjs +0 -63
  2251. package/es/schema-component/antd/table/demos/demo2.mjs +0 -63
  2252. package/es/schema-component/antd/table/demos/demo3.mjs +0 -63
  2253. package/es/schema-component/antd/table/demos/demo4.mjs +0 -217
  2254. package/es/schema-component/antd/table-v2/__tests__/table-v2.test.mjs +0 -13
  2255. package/es/schema-component/antd/table-v2/demos/collections.mjs +0 -1560
  2256. package/es/schema-component/antd/table-v2/demos/demo1.mjs +0 -220
  2257. package/es/schema-component/antd/table-v2/demos/demo2.mjs +0 -117
  2258. package/es/schema-component/antd/tabs/__tests__/tabs.test.mjs +0 -14
  2259. package/es/schema-component/antd/tabs/demos/demo1.mjs +0 -67
  2260. package/es/schema-component/antd/time-picker/__tests__/time-picker.test.mjs +0 -45
  2261. package/es/schema-component/antd/time-picker/demos/demo1.mjs +0 -40
  2262. package/es/schema-component/antd/time-picker/demos/demo2.mjs +0 -40
  2263. package/es/schema-component/antd/tree-select/__tests__/tree-select.test.mjs +0 -14
  2264. package/es/schema-component/antd/tree-select/demos/demo1.mjs +0 -84
  2265. package/es/schema-component/antd/upload/__tests__/upload.test.mjs +0 -13
  2266. package/es/schema-component/antd/upload/demos/apiClient.mjs +0 -43
  2267. package/es/schema-component/antd/upload/demos/demo1.mjs +0 -48
  2268. package/es/schema-component/antd/upload/demos/demo2.mjs +0 -115
  2269. package/es/schema-component/antd/upload/type.d.mjs +0 -1
  2270. package/es/schema-component/antd/variable/__tests__/variable.test.mjs +0 -45
  2271. package/es/schema-component/antd/variable/demos/demo1.mjs +0 -44
  2272. package/es/schema-component/antd/variable/demos/demo2.mjs +0 -44
  2273. package/es/schema-component/antd/variable/demos/demo3.mjs +0 -44
  2274. package/es/schema-component/demos/demo1.mjs +0 -89
  2275. package/es/schema-component/demos/demo2.mjs +0 -23
  2276. package/es/schema-component/demos/demo3.mjs +0 -24
  2277. package/es/schema-component/demos/demo4.mjs +0 -24
  2278. package/es/schema-component/hooks/__tests__/designable.test.mjs +0 -548
  2279. package/es/schema-component/hooks/__tests__/splitWrapSchema.test.mjs +0 -89
  2280. package/es/schema-initializer/demos/basic.mjs +0 -62
  2281. package/es/schema-initializer/demos/build-type.mjs +0 -83
  2282. package/es/schema-initializer/demos/custom-button.mjs +0 -94
  2283. package/es/schema-initializer/demos/custom-items-component.mjs +0 -100
  2284. package/es/schema-initializer/demos/dynamic-visible-children.mjs +0 -81
  2285. package/es/schema-initializer/demos/insert-schema-action.mjs +0 -92
  2286. package/es/schema-initializer/demos/insert-schema-basic.mjs +0 -112
  2287. package/es/schema-initializer/demos/insert-schema-form-item.mjs +0 -136
  2288. package/es/schema-initializer/demos/nested-items.mjs +0 -148
  2289. package/es/schema-settings/demos/basic.mjs +0 -60
  2290. package/es/schema-settings/demos/built-type.mjs +0 -142
  2291. package/es/schema-settings/demos/custom-component.mjs +0 -42
  2292. package/es/schema-settings/demos/demo3.mjs +0 -100
  2293. package/es/schema-settings/demos/schema-basic.mjs +0 -64
  2294. package/es/user/__tests__/current-user-settings-menu-provider.test.mjs +0 -36
  2295. package/es/variables/__tests__/useVariables.test.mjs +0 -406
  2296. package/es/variables/__tests__/utils/filterEmptyValues.test.mjs +0 -46
  2297. package/es/variables/__tests__/utils/getPath.test.mjs +0 -4
  2298. package/es/variables/__tests__/utils/getVariableName.test.mjs +0 -4
  2299. package/es/variables/__tests__/utils/isVariable.test.mjs +0 -22
  2300. package/es/variables/__tests__/utils/transformVariableValue.test.mjs +0 -136
  2301. package/es/variables/__tests__/utils/uniq.test.mjs +0 -77
  2302. package/lib/api-client/__tests__/APIClient.test.js +0 -90
  2303. package/lib/api-client/demos/demo1.js +0 -80
  2304. package/lib/api-client/demos/demo2.js +0 -79
  2305. package/lib/api-client/demos/demo3.js +0 -122
  2306. package/lib/application/__tests__/Application.test.js +0 -517
  2307. package/lib/application/__tests__/Plugin.test.js +0 -233
  2308. package/lib/application/__tests__/PluginSettingsManager.test.js +0 -192
  2309. package/lib/application/__tests__/RouterManager.test.js +0 -347
  2310. package/lib/application/__tests__/SchemaInitializer.test.js +0 -170
  2311. package/lib/application/__tests__/SchemaToolbar.test.js +0 -150
  2312. package/lib/application/__tests__/hoc/withDynamicSchemaProps.test.js +0 -194
  2313. package/lib/application/__tests__/hooks.test.js +0 -92
  2314. package/lib/application/__tests__/utils/remotePlugins.test.js +0 -325
  2315. package/lib/application/__tests__/utils.test.js +0 -106
  2316. package/lib/application/demos/demo1.js +0 -144
  2317. package/lib/application/demos/demo2.js +0 -160
  2318. package/lib/application/demos/demo3.js +0 -46
  2319. package/lib/collection-manager/demos/demo2.js +0 -140
  2320. package/lib/collection-manager/demos/demo3.js +0 -124
  2321. package/lib/collection-manager/demos/demo4.js +0 -202
  2322. package/lib/collection-manager/demos/demo5.js +0 -186
  2323. package/lib/collection-manager/interfaces/__tests__/json.js +0 -47
  2324. package/lib/data-source/__tests__/collection/AssociationProvider.test.js +0 -120
  2325. package/lib/data-source/__tests__/collection/Collection.test.js +0 -304
  2326. package/lib/data-source/__tests__/collection/CollectionManager.test.js +0 -304
  2327. package/lib/data-source/__tests__/collection/CollectionManagerProvider.test.js +0 -121
  2328. package/lib/data-source/__tests__/collection/CollectionProvider.test.js +0 -113
  2329. package/lib/data-source/__tests__/collection/ExtendCollectionsProvider.test.js +0 -94
  2330. package/lib/data-source/__tests__/collection-field/CollectionField.test.js +0 -74
  2331. package/lib/data-source/__tests__/collection-field/CollectionFieldProvider.test.js +0 -58
  2332. package/lib/data-source/__tests__/collection-field-interface/CollectionFieldInterfaceManager.test.js +0 -169
  2333. package/lib/data-source/__tests__/collection-record/CollectionRecord.test.js +0 -28
  2334. package/lib/data-source/__tests__/collection-record/CollectionRecordProvider.test.js +0 -260
  2335. package/lib/data-source/__tests__/collection-record/isNewRecord.test.js +0 -52
  2336. package/lib/data-source/__tests__/collection-template/CollectionTemplateManager.test.js +0 -130
  2337. package/lib/data-source/__tests__/components/CollectionDeletedPlaceholder.test.js +0 -50
  2338. package/lib/data-source/__tests__/data-block/DataBlockProvider.test.js +0 -154
  2339. package/lib/data-source/__tests__/data-block/data-block-demos/association-table-list-and-parent-record.js +0 -122
  2340. package/lib/data-source/__tests__/data-block/data-block-demos/association-table-list-and-source-id.js +0 -187
  2341. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-create.js +0 -143
  2342. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-get-and-update.js +0 -222
  2343. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-record-and-update.js +0 -172
  2344. package/lib/data-source/__tests__/data-block/data-block-demos/collection-table-list.js +0 -128
  2345. package/lib/data-source/__tests__/data-block/data-block-demos/createApp.js +0 -103
  2346. package/lib/data-source/__tests__/data-source/CollectionDataSourceProvider.test.js +0 -42
  2347. package/lib/data-source/__tests__/data-source/DataSource.test.js +0 -82
  2348. package/lib/data-source/__tests__/data-source/DataSourceManager.test.js +0 -173
  2349. package/lib/data-source/__tests__/data-source/DataSourceManagerProvider.test.js +0 -37
  2350. package/lib/data-source/__tests__/data-source/DataSourceProvider.test.js +0 -86
  2351. package/lib/data-source/__tests__/utils.test.js +0 -62
  2352. package/lib/env.d.js +0 -6
  2353. package/lib/filter-provider/__tests__/transformToFilter.js +0 -72
  2354. package/lib/filter-provider/__tests__/useFilter.js +0 -48
  2355. package/lib/filter-provider/__tests__/utiles.test.js +0 -272
  2356. package/lib/flag-provider/__tests__/flag-provider.test.js +0 -26
  2357. package/lib/icon/__tests__/icon.test.js +0 -63
  2358. package/lib/icon/demos/antd-icon.js +0 -41
  2359. package/lib/icon/demos/custom-icon.js +0 -50
  2360. package/lib/icon/demos/iconfont.js +0 -44
  2361. package/lib/icon/demos/register-icon.js +0 -57
  2362. package/lib/modules/actions/disassociate/__e2e__/disassociate.test.js +0 -46
  2363. package/lib/modules/actions/disassociate/__e2e__/templatesOfPage.js +0 -419
  2364. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/schemaInitializer.test.js +0 -119
  2365. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/schemaSettings.test.js +0 -79
  2366. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/templatesOfBug.js +0 -6
  2367. package/lib/modules/blocks/data-blocks/details-multi/__tests__/createDetailsBlockWithPagingUISchema.test.js +0 -21
  2368. package/lib/modules/blocks/data-blocks/details-single/__e2e__/schemaInitializer.test.js +0 -105
  2369. package/lib/modules/blocks/data-blocks/details-single/__e2e__/schemaSettings.test.js +0 -31
  2370. package/lib/modules/blocks/data-blocks/details-single/__e2e__/templatesOfBug.js +0 -6
  2371. package/lib/modules/blocks/data-blocks/details-single/__tests__/createDetailsBlockWithoutPagingUISchema.test.js +0 -21
  2372. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/associationForm.test.js +0 -21
  2373. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/dragAndDrop.test.js +0 -33
  2374. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadAssociationFields.test.js +0 -175
  2375. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadVariables.test.js +0 -35
  2376. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/schemaInitializer.test.js +0 -148
  2377. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/schemaSettings.test.js +0 -1261
  2378. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/templatesOfBug.js +0 -6047
  2379. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaInitializer.test.js +0 -23
  2380. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaSettings.test.js +0 -219
  2381. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/templatesOfBug.js +0 -6
  2382. package/lib/modules/blocks/data-blocks/form/__tests__/createCreateFormBlockUISchema.test.js +0 -26
  2383. package/lib/modules/blocks/data-blocks/form/__tests__/createEditFormBlockUISchema.test.js +0 -25
  2384. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/schemaInitializer.test.js +0 -227
  2385. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/schemaSettings.test.js +0 -55
  2386. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/templatesOfBug.js +0 -6
  2387. package/lib/modules/blocks/data-blocks/grid-card/__tests__/createGridCardBlockSchema.test.js +0 -33
  2388. package/lib/modules/blocks/data-blocks/list/__e2e__/schemaInitializer.test.js +0 -218
  2389. package/lib/modules/blocks/data-blocks/list/__e2e__/schemaSettings.test.js +0 -30
  2390. package/lib/modules/blocks/data-blocks/list/__e2e__/templatesOfBug.js +0 -6
  2391. package/lib/modules/blocks/data-blocks/list/__tests__/createListBlockSchema.test.js +0 -31
  2392. package/lib/modules/blocks/data-blocks/table/__e2e__/actions/duplicate.test.js +0 -16
  2393. package/lib/modules/blocks/data-blocks/table/__e2e__/actions/filter.test.js +0 -40
  2394. package/lib/modules/blocks/data-blocks/table/__e2e__/checkboxForTableRow.test.js +0 -26
  2395. package/lib/modules/blocks/data-blocks/table/__e2e__/dragAndDrop.test.js +0 -38
  2396. package/lib/modules/blocks/data-blocks/table/__e2e__/schemaInitializer.test.js +0 -426
  2397. package/lib/modules/blocks/data-blocks/table/__e2e__/schemaSettings.test.js +0 -876
  2398. package/lib/modules/blocks/data-blocks/table/__e2e__/templatesOfBug.js +0 -979
  2399. package/lib/modules/blocks/data-blocks/table/__e2e__/tree/schemaSettings.test.js +0 -49
  2400. package/lib/modules/blocks/data-blocks/table/__tests__/createTableBLockSchema.test.js +0 -23
  2401. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/schemaInitializer.test.js +0 -166
  2402. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/schemaSettings.test.js +0 -153
  2403. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/templatesOfBug.js +0 -728
  2404. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/utils.js +0 -46
  2405. package/lib/modules/blocks/data-blocks/table-selector/__tests__/createTableSelectorSchema.test.js +0 -21
  2406. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/schemaInitializer.test.js +0 -66
  2407. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/schemaSettings.test.js +0 -69
  2408. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/templatesOfBug.js +0 -6
  2409. package/lib/modules/blocks/filter-blocks/collapse/__tests__/createCollapseBlockSchema.test.js +0 -47
  2410. package/lib/modules/blocks/filter-blocks/form/__e2e__/schemaInitializer.test.js +0 -122
  2411. package/lib/modules/blocks/filter-blocks/form/__e2e__/schemaSettings.test.js +0 -105
  2412. package/lib/modules/blocks/filter-blocks/form/__e2e__/templatesOfBug.js +0 -6
  2413. package/lib/modules/blocks/filter-blocks/form/__tests__/createFilterFormBlockSchema.test.js +0 -30
  2414. package/lib/modules/blocks/other-blocks/markdown/__e2e__/schemaInitializer.test.js +0 -17
  2415. package/lib/modules/blocks/other-blocks/markdown/__e2e__/schemaSettings.test.js +0 -40
  2416. package/lib/modules/blocks/other-blocks/markdown/__e2e__/templatesOfBug.js +0 -6
  2417. package/lib/modules/dialog/__e2e__/schemaInitializer.test.js +0 -395
  2418. package/lib/modules/dialog/__e2e__/schemaSettings.test.js +0 -66
  2419. package/lib/modules/dialog/__e2e__/templatesOfBug.js +0 -2161
  2420. package/lib/modules/dialog/__e2e__/zIndex.test.js +0 -42
  2421. package/lib/modules/fields/component/DatePicker/__e2e__/schemaSettings.test.js +0 -109
  2422. package/lib/modules/fields/component/DatePicker/__e2e__/utils.js +0 -358
  2423. package/lib/modules/menu/__e2e__/dragAndDrop.test.js +0 -34
  2424. package/lib/modules/menu/__e2e__/schemaInitializer.test.js +0 -108
  2425. package/lib/modules/menu/__e2e__/schemaSettings.test.js +0 -354
  2426. package/lib/modules/menu/__e2e__/templatesOfBug.js +0 -6
  2427. package/lib/modules/page/__e2e__/blockInitializers.test.js +0 -24
  2428. package/lib/modules/page/__e2e__/dragAndDrop.test.js +0 -23
  2429. package/lib/modules/page/__e2e__/schemaInitailizer.test.js +0 -22
  2430. package/lib/modules/page/__e2e__/schemaSettings.test.js +0 -141
  2431. package/lib/modules/page/__e2e__/templatesOfBug.js +0 -6
  2432. package/lib/modules/plugin-manager/__e2e__/pluginManager.test.js +0 -120
  2433. package/lib/modules/plugin-manager/__e2e__/templatesOfBug.js +0 -6
  2434. package/lib/modules/user-center/__e2e__/settings.test.js +0 -19
  2435. package/lib/schema-component/antd/action/__tests__/action.test.js +0 -154
  2436. package/lib/schema-component/antd/action/demos/demo1.js +0 -104
  2437. package/lib/schema-component/antd/action/demos/demo2.js +0 -109
  2438. package/lib/schema-component/antd/action/demos/demo3.js +0 -175
  2439. package/lib/schema-component/antd/action/demos/demo4.js +0 -92
  2440. package/lib/schema-component/antd/action/demos/demo5.js +0 -245
  2441. package/lib/schema-component/antd/action/demos/demo6.js +0 -129
  2442. package/lib/schema-component/antd/association-select/__tests__/association-select.test.js +0 -51
  2443. package/lib/schema-component/antd/association-select/demos/demo1.js +0 -89
  2444. package/lib/schema-component/antd/block-item/__tests__/block-item.test.js +0 -49
  2445. package/lib/schema-component/antd/block-item/demos/demo1.js +0 -94
  2446. package/lib/schema-component/antd/card-item/__tests__/card-item.test.js +0 -46
  2447. package/lib/schema-component/antd/card-item/demos/demo1.js +0 -65
  2448. package/lib/schema-component/antd/cascader/__tests__/cascader.test.js +0 -65
  2449. package/lib/schema-component/antd/cascader/demos/demo1.js +0 -116
  2450. package/lib/schema-component/antd/cascader/demos/demo2.js +0 -163
  2451. package/lib/schema-component/antd/checkbox/__tests__/checkbox.test.js +0 -76
  2452. package/lib/schema-component/antd/checkbox/demos/checkbox.group.js +0 -88
  2453. package/lib/schema-component/antd/checkbox/demos/checkbox.js +0 -74
  2454. package/lib/schema-component/antd/collection-select/__tests__/collection-select.test.js +0 -51
  2455. package/lib/schema-component/antd/collection-select/demos/demo1.js +0 -70
  2456. package/lib/schema-component/antd/color-picker/demos/demo1.js +0 -83
  2457. package/lib/schema-component/antd/color-select/__tests__/color-select.test.js +0 -51
  2458. package/lib/schema-component/antd/color-select/demos/demo1.js +0 -74
  2459. package/lib/schema-component/antd/cron/__tests__/cron-set.test.js +0 -66
  2460. package/lib/schema-component/antd/cron/demos/demo1.js +0 -66
  2461. package/lib/schema-component/antd/cron/demos/demo2.js +0 -85
  2462. package/lib/schema-component/antd/date-picker/__tests__/date-picker.test.js +0 -222
  2463. package/lib/schema-component/antd/date-picker/__tests__/getDateRanges.test.js +0 -145
  2464. package/lib/schema-component/antd/date-picker/__tests__/mapDatePicker.test.js +0 -235
  2465. package/lib/schema-component/antd/date-picker/__tests__/mapRangePicker.test.js +0 -94
  2466. package/lib/schema-component/antd/date-picker/__tests__/util.test.js +0 -201
  2467. package/lib/schema-component/antd/date-picker/demos/demo1.js +0 -91
  2468. package/lib/schema-component/antd/date-picker/demos/demo10.js +0 -95
  2469. package/lib/schema-component/antd/date-picker/demos/demo11.js +0 -99
  2470. package/lib/schema-component/antd/date-picker/demos/demo2.js +0 -94
  2471. package/lib/schema-component/antd/date-picker/demos/demo3.js +0 -92
  2472. package/lib/schema-component/antd/date-picker/demos/demo4.js +0 -120
  2473. package/lib/schema-component/antd/date-picker/demos/demo5.js +0 -119
  2474. package/lib/schema-component/antd/date-picker/demos/demo6.js +0 -119
  2475. package/lib/schema-component/antd/date-picker/demos/demo7.js +0 -95
  2476. package/lib/schema-component/antd/date-picker/demos/demo8.js +0 -95
  2477. package/lib/schema-component/antd/date-picker/demos/demo9.js +0 -95
  2478. package/lib/schema-component/antd/details/__tests__/details.test.js +0 -45
  2479. package/lib/schema-component/antd/details/demos/demo1.js +0 -76
  2480. package/lib/schema-component/antd/error-fallback/__tests__/error-fallback.test.js +0 -52
  2481. package/lib/schema-component/antd/error-fallback/demos/demo1.js +0 -47
  2482. package/lib/schema-component/antd/filter/__tests__/filter.test.js +0 -152
  2483. package/lib/schema-component/antd/filter/demos/demo2.js +0 -163
  2484. package/lib/schema-component/antd/filter/demos/demo3.js +0 -230
  2485. package/lib/schema-component/antd/filter/demos/demo4.js +0 -218
  2486. package/lib/schema-component/antd/filter/demos/demo5.js +0 -165
  2487. package/lib/schema-component/antd/filter/demos/demo6.js +0 -152
  2488. package/lib/schema-component/antd/form/__tests__/form.test.js +0 -155
  2489. package/lib/schema-component/antd/form/demos/apiClient.js +0 -65
  2490. package/lib/schema-component/antd/form/demos/demo1.js +0 -107
  2491. package/lib/schema-component/antd/form/demos/demo2.js +0 -107
  2492. package/lib/schema-component/antd/form/demos/demo3.js +0 -106
  2493. package/lib/schema-component/antd/form/demos/demo4.js +0 -114
  2494. package/lib/schema-component/antd/form/demos/demo5.js +0 -148
  2495. package/lib/schema-component/antd/form/demos/demo6.js +0 -105
  2496. package/lib/schema-component/antd/form/demos/demo7.js +0 -109
  2497. package/lib/schema-component/antd/form/demos/demo8.js +0 -120
  2498. package/lib/schema-component/antd/form-item/__tests__/form-item.test.js +0 -47
  2499. package/lib/schema-component/antd/form-item/__tests__/hooks/useSpecialCase.test.js +0 -34
  2500. package/lib/schema-component/antd/form-item/__tests__/utils.test.js +0 -72
  2501. package/lib/schema-component/antd/form-item/demos/demo1.js +0 -71
  2502. package/lib/schema-component/antd/form-v2/__tests__/form-v2.test.js +0 -84
  2503. package/lib/schema-component/antd/form-v2/demos/collections.js +0 -1601
  2504. package/lib/schema-component/antd/form-v2/demos/demo1.js +0 -156
  2505. package/lib/schema-component/antd/form-v2/demos/demo2.js +0 -179
  2506. package/lib/schema-component/antd/form-v2/demos/demo3.js +0 -165
  2507. package/lib/schema-component/antd/grid/__tests__/grid.test.js +0 -63
  2508. package/lib/schema-component/antd/grid/demos/demo1.js +0 -228
  2509. package/lib/schema-component/antd/grid/demos/demo2.js +0 -131
  2510. package/lib/schema-component/antd/grid/demos/demo3.js +0 -118
  2511. package/lib/schema-component/antd/grid-card/__tests__/grid-card.test.js +0 -44
  2512. package/lib/schema-component/antd/grid-card/demos/demo1.js +0 -40
  2513. package/lib/schema-component/antd/icon-picker/__tests__/icon-picker.test.js +0 -60
  2514. package/lib/schema-component/antd/icon-picker/demos/icon-picker.js +0 -74
  2515. package/lib/schema-component/antd/input/__tests__/Input.test.js +0 -153
  2516. package/lib/schema-component/antd/input/demos/input.js +0 -74
  2517. package/lib/schema-component/antd/input/demos/json.js +0 -80
  2518. package/lib/schema-component/antd/input/demos/textarea.js +0 -102
  2519. package/lib/schema-component/antd/input/demos/url.js +0 -76
  2520. package/lib/schema-component/antd/input-number/__tests__/input-number.test.js +0 -153
  2521. package/lib/schema-component/antd/input-number/demos/addonBefore&addonAfter.js +0 -82
  2522. package/lib/schema-component/antd/input-number/demos/highPrecisionDecimals.js +0 -84
  2523. package/lib/schema-component/antd/input-number/demos/inputNumber.js +0 -74
  2524. package/lib/schema-component/antd/list/__tests__/list.test.js +0 -44
  2525. package/lib/schema-component/antd/list/demos/demo1.js +0 -40
  2526. package/lib/schema-component/antd/markdown/__tests__/markdown.test.js +0 -63
  2527. package/lib/schema-component/antd/markdown/demos/demo1.js +0 -74
  2528. package/lib/schema-component/antd/markdown/demos/demo2.js +0 -85
  2529. package/lib/schema-component/antd/menu/__tests__/menu.test.js +0 -75
  2530. package/lib/schema-component/antd/menu/demos/demo1.js +0 -127
  2531. package/lib/schema-component/antd/menu/demos/demo2.js +0 -130
  2532. package/lib/schema-component/antd/menu/demos/demo3.js +0 -169
  2533. package/lib/schema-component/antd/page/__tests__/page.test.js +0 -53
  2534. package/lib/schema-component/antd/page/demos/demo1.js +0 -72
  2535. package/lib/schema-component/antd/password/__tests__/password.test.js +0 -64
  2536. package/lib/schema-component/antd/password/__tests__/utils.test.js +0 -28
  2537. package/lib/schema-component/antd/password/demos/demo1.js +0 -74
  2538. package/lib/schema-component/antd/password/demos/demo2.js +0 -77
  2539. package/lib/schema-component/antd/percent/__tests__/percent.test.js +0 -51
  2540. package/lib/schema-component/antd/percent/demos/percent.js +0 -74
  2541. package/lib/schema-component/antd/preview/__tests__/preview.test.js +0 -46
  2542. package/lib/schema-component/antd/preview/demos/demo1.js +0 -129
  2543. package/lib/schema-component/antd/radio/__tests__/radio.test.js +0 -80
  2544. package/lib/schema-component/antd/radio/demos/demo1.js +0 -74
  2545. package/lib/schema-component/antd/radio/demos/demo2.js +0 -86
  2546. package/lib/schema-component/antd/radio/demos/demo3.js +0 -88
  2547. package/lib/schema-component/antd/record-picker/__tests__/record-picker.test.js +0 -62
  2548. package/lib/schema-component/antd/record-picker/demos/demo1.js +0 -223
  2549. package/lib/schema-component/antd/record-picker/demos/mockData.js +0 -247
  2550. package/lib/schema-component/antd/remote-select/__tests__/remote-select.test.js +0 -51
  2551. package/lib/schema-component/antd/remote-select/demos/demo1.js +0 -89
  2552. package/lib/schema-component/antd/rich-text/__tests__/rich-text.test.js +0 -48
  2553. package/lib/schema-component/antd/rich-text/demos/demo1.js +0 -75
  2554. package/lib/schema-component/antd/select/__tests__/select.test.js +0 -78
  2555. package/lib/schema-component/antd/select/__tests__/utils.test.js +0 -136
  2556. package/lib/schema-component/antd/select/demos/demo1.js +0 -106
  2557. package/lib/schema-component/antd/select/demos/demo2.js +0 -110
  2558. package/lib/schema-component/antd/select/demos/demo3.js +0 -118
  2559. package/lib/schema-component/antd/table/__tests__/table.test.js +0 -59
  2560. package/lib/schema-component/antd/table/demos/demo1.js +0 -97
  2561. package/lib/schema-component/antd/table/demos/demo2.js +0 -97
  2562. package/lib/schema-component/antd/table/demos/demo3.js +0 -97
  2563. package/lib/schema-component/antd/table/demos/demo4.js +0 -251
  2564. package/lib/schema-component/antd/table-v2/__tests__/table-v2.test.js +0 -49
  2565. package/lib/schema-component/antd/table-v2/demos/collections.js +0 -1596
  2566. package/lib/schema-component/antd/table-v2/demos/demo1.js +0 -268
  2567. package/lib/schema-component/antd/table-v2/demos/demo2.js +0 -151
  2568. package/lib/schema-component/antd/tabs/__tests__/tabs.test.js +0 -49
  2569. package/lib/schema-component/antd/tabs/demos/demo1.js +0 -101
  2570. package/lib/schema-component/antd/time-picker/__tests__/time-picker.test.js +0 -81
  2571. package/lib/schema-component/antd/time-picker/demos/demo1.js +0 -74
  2572. package/lib/schema-component/antd/time-picker/demos/demo2.js +0 -74
  2573. package/lib/schema-component/antd/tree-select/__tests__/tree-select.test.js +0 -49
  2574. package/lib/schema-component/antd/tree-select/demos/demo1.js +0 -118
  2575. package/lib/schema-component/antd/upload/__tests__/upload.test.js +0 -49
  2576. package/lib/schema-component/antd/upload/demos/apiClient.js +0 -77
  2577. package/lib/schema-component/antd/upload/demos/demo1.js +0 -96
  2578. package/lib/schema-component/antd/upload/demos/demo2.js +0 -163
  2579. package/lib/schema-component/antd/upload/type.d.js +0 -8
  2580. package/lib/schema-component/antd/variable/__tests__/variable.test.js +0 -82
  2581. package/lib/schema-component/antd/variable/demos/demo1.js +0 -78
  2582. package/lib/schema-component/antd/variable/demos/demo2.js +0 -78
  2583. package/lib/schema-component/antd/variable/demos/demo3.js +0 -78
  2584. package/lib/schema-component/demos/demo1.js +0 -123
  2585. package/lib/schema-component/demos/demo2.js +0 -57
  2586. package/lib/schema-component/demos/demo3.js +0 -58
  2587. package/lib/schema-component/demos/demo4.js +0 -58
  2588. package/lib/schema-component/hooks/__tests__/designable.test.js +0 -555
  2589. package/lib/schema-component/hooks/__tests__/splitWrapSchema.test.js +0 -96
  2590. package/lib/schema-initializer/demos/basic.js +0 -96
  2591. package/lib/schema-initializer/demos/build-type.js +0 -117
  2592. package/lib/schema-initializer/demos/custom-button.js +0 -128
  2593. package/lib/schema-initializer/demos/custom-items-component.js +0 -134
  2594. package/lib/schema-initializer/demos/dynamic-visible-children.js +0 -115
  2595. package/lib/schema-initializer/demos/insert-schema-action.js +0 -126
  2596. package/lib/schema-initializer/demos/insert-schema-basic.js +0 -146
  2597. package/lib/schema-initializer/demos/insert-schema-form-item.js +0 -170
  2598. package/lib/schema-initializer/demos/nested-items.js +0 -182
  2599. package/lib/schema-settings/demos/basic.js +0 -94
  2600. package/lib/schema-settings/demos/built-type.js +0 -176
  2601. package/lib/schema-settings/demos/custom-component.js +0 -76
  2602. package/lib/schema-settings/demos/demo3.js +0 -134
  2603. package/lib/schema-settings/demos/schema-basic.js +0 -98
  2604. package/lib/user/__tests__/current-user-settings-menu-provider.test.js +0 -43
  2605. package/lib/variables/__tests__/useVariables.test.js +0 -442
  2606. package/lib/variables/__tests__/utils/filterEmptyValues.test.js +0 -53
  2607. package/lib/variables/__tests__/utils/getPath.test.js +0 -11
  2608. package/lib/variables/__tests__/utils/getVariableName.test.js +0 -11
  2609. package/lib/variables/__tests__/utils/isVariable.test.js +0 -29
  2610. package/lib/variables/__tests__/utils/transformVariableValue.test.js +0 -143
  2611. package/lib/variables/__tests__/utils/uniq.test.js +0 -84
@@ -33,7 +33,7 @@ var __webpack_modules__ = {
33
33
  "./cascader": function(module) {
34
34
  module.exports = require("./cascader/index.js");
35
35
  },
36
- "./checkbox?15ca": function(module) {
36
+ "./checkbox?50e0": function(module) {
37
37
  module.exports = require("./checkbox/index.js");
38
38
  },
39
39
  "./collection-select": function(module) {
@@ -93,13 +93,13 @@ var __webpack_modules__ = {
93
93
  "./input-number": function(module) {
94
94
  module.exports = require("./input-number/index.js");
95
95
  },
96
- "./input?b1cc": function(module) {
96
+ "./input?f1fb": function(module) {
97
97
  module.exports = require("./input/index.js");
98
98
  },
99
99
  "./list": function(module) {
100
100
  module.exports = require("./list/index.js");
101
101
  },
102
- "./markdown?ce72": function(module) {
102
+ "./markdown?b483": function(module) {
103
103
  module.exports = require("./markdown/index.js");
104
104
  },
105
105
  "./media-card": function(module) {
@@ -117,10 +117,10 @@ var __webpack_modules__ = {
117
117
  "./pagination": function(module) {
118
118
  module.exports = require("./pagination/index.js");
119
119
  },
120
- "./password?65b8": function(module) {
120
+ "./password?1dd4": function(module) {
121
121
  module.exports = require("./password/index.js");
122
122
  },
123
- "./percent?afe4": function(module) {
123
+ "./percent?cbe6": function(module) {
124
124
  module.exports = require("./percent/index.js");
125
125
  },
126
126
  "./popover": function(module) {
@@ -147,10 +147,10 @@ var __webpack_modules__ = {
147
147
  "./scroll-area": function(module) {
148
148
  module.exports = require("./scroll-area/index.js");
149
149
  },
150
- "./select?8344": function(module) {
150
+ "./select?f8d4": function(module) {
151
151
  module.exports = require("./select/index.js");
152
152
  },
153
- "./slider?80c3": function(module) {
153
+ "./slider?d661": function(module) {
154
154
  module.exports = require("./slider/index.js");
155
155
  },
156
156
  "./space": function(module) {
@@ -174,10 +174,10 @@ var __webpack_modules__ = {
174
174
  "./tree-select": function(module) {
175
175
  module.exports = require("./tree-select/index.js");
176
176
  },
177
- "./tree?6051": function(module) {
177
+ "./tree?941a": function(module) {
178
178
  module.exports = require("./tree/index.js");
179
179
  },
180
- "./unixTimestamp?5844": function(module) {
180
+ "./unixTimestamp?a42f": function(module) {
181
181
  module.exports = require("./unixTimestamp/index.js");
182
182
  },
183
183
  "./upload": function(module) {
@@ -204,12 +204,8 @@ function __webpack_require__(moduleId) {
204
204
  return module.exports;
205
205
  }
206
206
  (()=>{
207
- __webpack_require__.n = function(module) {
208
- var getter = module && module.__esModule ? function() {
209
- return module['default'];
210
- } : function() {
211
- return module;
212
- };
207
+ __webpack_require__.n = (module)=>{
208
+ var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
213
209
  __webpack_require__.d(getter, {
214
210
  a: getter
215
211
  });
@@ -217,7 +213,7 @@ function __webpack_require__(moduleId) {
217
213
  };
218
214
  })();
219
215
  (()=>{
220
- __webpack_require__.d = function(exports1, definition) {
216
+ __webpack_require__.d = (exports1, definition)=>{
221
217
  for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
222
218
  enumerable: true,
223
219
  get: definition[key]
@@ -225,12 +221,10 @@ function __webpack_require__(moduleId) {
225
221
  };
226
222
  })();
227
223
  (()=>{
228
- __webpack_require__.o = function(obj, prop) {
229
- return Object.prototype.hasOwnProperty.call(obj, prop);
230
- };
224
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
231
225
  })();
232
226
  (()=>{
233
- __webpack_require__.r = function(exports1) {
227
+ __webpack_require__.r = (exports1)=>{
234
228
  if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
235
229
  value: 'Module'
236
230
  });
@@ -240,684 +234,686 @@ function __webpack_require__(moduleId) {
240
234
  };
241
235
  })();
242
236
  var __webpack_exports__ = {};
243
- __webpack_require__.r(__webpack_exports__);
244
- __webpack_require__.d(__webpack_exports__, {
245
- CodeMirror: function() {
246
- return _tachybase_components__WEBPACK_IMPORTED_MODULE_63__.CodeMirror;
247
- },
248
- PageHeader: function() {
249
- return _ant_design_pro_layout__WEBPACK_IMPORTED_MODULE_62__.PageHeader;
250
- },
251
- genStyleHook: function() {
252
- return _builtins___WEBPACK_IMPORTED_MODULE_2__.genStyleHook;
253
- }
254
- });
255
- __webpack_require__("./index.less");
256
- var _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("./AntdSchemaComponentProvider");
257
- var __WEBPACK_REEXPORT_OBJECT__ = {};
258
- for(var __WEBPACK_IMPORT_KEY__ in _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__)if ([
259
- "default",
260
- "CodeMirror",
261
- "genStyleHook",
262
- "PageHeader"
263
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
264
- return _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__[key];
265
- }).bind(0, __WEBPACK_IMPORT_KEY__);
266
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
267
- var _builtins___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("./__builtins__");
268
- var _action__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("./action");
269
- var __WEBPACK_REEXPORT_OBJECT__ = {};
270
- for(var __WEBPACK_IMPORT_KEY__ in _action__WEBPACK_IMPORTED_MODULE_3__)if ([
271
- "PageHeader",
272
- "CodeMirror",
273
- "genStyleHook",
274
- "default"
275
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
276
- return _action__WEBPACK_IMPORTED_MODULE_3__[key];
277
- }).bind(0, __WEBPACK_IMPORT_KEY__);
278
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
279
- var _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("./appends-tree-select");
280
- var __WEBPACK_REEXPORT_OBJECT__ = {};
281
- for(var __WEBPACK_IMPORT_KEY__ in _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__)if ([
282
- "PageHeader",
283
- "CodeMirror",
284
- "genStyleHook",
285
- "default"
286
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
287
- return _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__[key];
288
- }).bind(0, __WEBPACK_IMPORT_KEY__);
289
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
290
- var _association_cascader__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("./association-cascader");
291
- var __WEBPACK_REEXPORT_OBJECT__ = {};
292
- for(var __WEBPACK_IMPORT_KEY__ in _association_cascader__WEBPACK_IMPORTED_MODULE_5__)if ([
293
- "PageHeader",
294
- "CodeMirror",
295
- "genStyleHook",
296
- "default"
297
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
298
- return _association_cascader__WEBPACK_IMPORTED_MODULE_5__[key];
299
- }).bind(0, __WEBPACK_IMPORT_KEY__);
300
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
301
- var _association_field__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__("./association-field");
302
- var __WEBPACK_REEXPORT_OBJECT__ = {};
303
- for(var __WEBPACK_IMPORT_KEY__ in _association_field__WEBPACK_IMPORTED_MODULE_6__)if ([
304
- "PageHeader",
305
- "CodeMirror",
306
- "genStyleHook",
307
- "default"
308
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
309
- return _association_field__WEBPACK_IMPORTED_MODULE_6__[key];
310
- }).bind(0, __WEBPACK_IMPORT_KEY__);
311
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
312
- var _association_select__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__("./association-select");
313
- var __WEBPACK_REEXPORT_OBJECT__ = {};
314
- for(var __WEBPACK_IMPORT_KEY__ in _association_select__WEBPACK_IMPORTED_MODULE_7__)if ([
315
- "PageHeader",
316
- "CodeMirror",
317
- "genStyleHook",
318
- "default"
319
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
320
- return _association_select__WEBPACK_IMPORTED_MODULE_7__[key];
321
- }).bind(0, __WEBPACK_IMPORT_KEY__);
322
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
323
- var _auto_complete__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__("./auto-complete");
324
- var __WEBPACK_REEXPORT_OBJECT__ = {};
325
- for(var __WEBPACK_IMPORT_KEY__ in _auto_complete__WEBPACK_IMPORTED_MODULE_8__)if ([
326
- "PageHeader",
327
- "CodeMirror",
328
- "genStyleHook",
329
- "default"
330
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
331
- return _auto_complete__WEBPACK_IMPORTED_MODULE_8__[key];
332
- }).bind(0, __WEBPACK_IMPORT_KEY__);
333
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
334
- var _block_item__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__("./block-item");
335
- var __WEBPACK_REEXPORT_OBJECT__ = {};
336
- for(var __WEBPACK_IMPORT_KEY__ in _block_item__WEBPACK_IMPORTED_MODULE_9__)if ([
337
- "PageHeader",
338
- "CodeMirror",
339
- "genStyleHook",
340
- "default"
341
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
342
- return _block_item__WEBPACK_IMPORTED_MODULE_9__[key];
343
- }).bind(0, __WEBPACK_IMPORT_KEY__);
344
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
345
- var _card_item__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__("./card-item");
346
- var __WEBPACK_REEXPORT_OBJECT__ = {};
347
- for(var __WEBPACK_IMPORT_KEY__ in _card_item__WEBPACK_IMPORTED_MODULE_10__)if ([
348
- "PageHeader",
349
- "CodeMirror",
350
- "genStyleHook",
351
- "default"
352
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
353
- return _card_item__WEBPACK_IMPORTED_MODULE_10__[key];
354
- }).bind(0, __WEBPACK_IMPORT_KEY__);
355
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
356
- var _cascader__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__("./cascader");
357
- var __WEBPACK_REEXPORT_OBJECT__ = {};
358
- for(var __WEBPACK_IMPORT_KEY__ in _cascader__WEBPACK_IMPORTED_MODULE_11__)if ([
359
- "PageHeader",
360
- "CodeMirror",
361
- "genStyleHook",
362
- "default"
363
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
364
- return _cascader__WEBPACK_IMPORTED_MODULE_11__[key];
365
- }).bind(0, __WEBPACK_IMPORT_KEY__);
366
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
367
- var _checkbox__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__("./checkbox?15ca");
368
- var __WEBPACK_REEXPORT_OBJECT__ = {};
369
- for(var __WEBPACK_IMPORT_KEY__ in _checkbox__WEBPACK_IMPORTED_MODULE_12__)if ([
370
- "PageHeader",
371
- "CodeMirror",
372
- "genStyleHook",
373
- "default"
374
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
375
- return _checkbox__WEBPACK_IMPORTED_MODULE_12__[key];
376
- }).bind(0, __WEBPACK_IMPORT_KEY__);
377
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
378
- var _collection_select__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__("./collection-select");
379
- var __WEBPACK_REEXPORT_OBJECT__ = {};
380
- for(var __WEBPACK_IMPORT_KEY__ in _collection_select__WEBPACK_IMPORTED_MODULE_13__)if ([
381
- "PageHeader",
382
- "CodeMirror",
383
- "genStyleHook",
384
- "default"
385
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
386
- return _collection_select__WEBPACK_IMPORTED_MODULE_13__[key];
387
- }).bind(0, __WEBPACK_IMPORT_KEY__);
388
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
389
- var _color_picker__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__("./color-picker");
390
- var __WEBPACK_REEXPORT_OBJECT__ = {};
391
- for(var __WEBPACK_IMPORT_KEY__ in _color_picker__WEBPACK_IMPORTED_MODULE_14__)if ([
392
- "PageHeader",
393
- "CodeMirror",
394
- "genStyleHook",
395
- "default"
396
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
397
- return _color_picker__WEBPACK_IMPORTED_MODULE_14__[key];
398
- }).bind(0, __WEBPACK_IMPORT_KEY__);
399
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
400
- var _color_select__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__("./color-select");
401
- var __WEBPACK_REEXPORT_OBJECT__ = {};
402
- for(var __WEBPACK_IMPORT_KEY__ in _color_select__WEBPACK_IMPORTED_MODULE_15__)if ([
403
- "PageHeader",
404
- "CodeMirror",
405
- "genStyleHook",
406
- "default"
407
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
408
- return _color_select__WEBPACK_IMPORTED_MODULE_15__[key];
409
- }).bind(0, __WEBPACK_IMPORT_KEY__);
410
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
411
- var _cron__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__("./cron");
412
- var __WEBPACK_REEXPORT_OBJECT__ = {};
413
- for(var __WEBPACK_IMPORT_KEY__ in _cron__WEBPACK_IMPORTED_MODULE_16__)if ([
414
- "PageHeader",
415
- "CodeMirror",
416
- "genStyleHook",
417
- "default"
418
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
419
- return _cron__WEBPACK_IMPORTED_MODULE_16__[key];
420
- }).bind(0, __WEBPACK_IMPORT_KEY__);
421
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
422
- var _slider__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__("./slider?80c3");
423
- var __WEBPACK_REEXPORT_OBJECT__ = {};
424
- for(var __WEBPACK_IMPORT_KEY__ in _slider__WEBPACK_IMPORTED_MODULE_17__)if ([
425
- "PageHeader",
426
- "CodeMirror",
427
- "genStyleHook",
428
- "default"
429
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
430
- return _slider__WEBPACK_IMPORTED_MODULE_17__[key];
431
- }).bind(0, __WEBPACK_IMPORT_KEY__);
432
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
433
- var _custom_cascader__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__("./custom-cascader");
434
- var __WEBPACK_REEXPORT_OBJECT__ = {};
435
- for(var __WEBPACK_IMPORT_KEY__ in _custom_cascader__WEBPACK_IMPORTED_MODULE_18__)if ([
436
- "PageHeader",
437
- "CodeMirror",
438
- "genStyleHook",
439
- "default"
440
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
441
- return _custom_cascader__WEBPACK_IMPORTED_MODULE_18__[key];
442
- }).bind(0, __WEBPACK_IMPORT_KEY__);
443
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
444
- var _date_picker__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__("./date-picker");
445
- var __WEBPACK_REEXPORT_OBJECT__ = {};
446
- for(var __WEBPACK_IMPORT_KEY__ in _date_picker__WEBPACK_IMPORTED_MODULE_19__)if ([
447
- "PageHeader",
448
- "CodeMirror",
449
- "genStyleHook",
450
- "default"
451
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
452
- return _date_picker__WEBPACK_IMPORTED_MODULE_19__[key];
453
- }).bind(0, __WEBPACK_IMPORT_KEY__);
454
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
455
- var _details__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__("./details");
456
- var __WEBPACK_REEXPORT_OBJECT__ = {};
457
- for(var __WEBPACK_IMPORT_KEY__ in _details__WEBPACK_IMPORTED_MODULE_20__)if ([
458
- "PageHeader",
459
- "CodeMirror",
460
- "genStyleHook",
461
- "default"
462
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
463
- return _details__WEBPACK_IMPORTED_MODULE_20__[key];
464
- }).bind(0, __WEBPACK_IMPORT_KEY__);
465
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
466
- var _expand_action__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__("./expand-action");
467
- var __WEBPACK_REEXPORT_OBJECT__ = {};
468
- for(var __WEBPACK_IMPORT_KEY__ in _expand_action__WEBPACK_IMPORTED_MODULE_21__)if ([
469
- "PageHeader",
470
- "CodeMirror",
471
- "genStyleHook",
472
- "default"
473
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
474
- return _expand_action__WEBPACK_IMPORTED_MODULE_21__[key];
475
- }).bind(0, __WEBPACK_IMPORT_KEY__);
476
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
477
- var _filter__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__("./filter");
478
- var __WEBPACK_REEXPORT_OBJECT__ = {};
479
- for(var __WEBPACK_IMPORT_KEY__ in _filter__WEBPACK_IMPORTED_MODULE_22__)if ([
480
- "PageHeader",
481
- "CodeMirror",
482
- "genStyleHook",
483
- "default"
484
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
485
- return _filter__WEBPACK_IMPORTED_MODULE_22__[key];
486
- }).bind(0, __WEBPACK_IMPORT_KEY__);
487
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
488
- var _form__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__("./form");
489
- var __WEBPACK_REEXPORT_OBJECT__ = {};
490
- for(var __WEBPACK_IMPORT_KEY__ in _form__WEBPACK_IMPORTED_MODULE_23__)if ([
491
- "PageHeader",
492
- "CodeMirror",
493
- "genStyleHook",
494
- "default"
495
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
496
- return _form__WEBPACK_IMPORTED_MODULE_23__[key];
497
- }).bind(0, __WEBPACK_IMPORT_KEY__);
498
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
499
- var _form_dialog__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__("./form-dialog");
500
- var __WEBPACK_REEXPORT_OBJECT__ = {};
501
- for(var __WEBPACK_IMPORT_KEY__ in _form_dialog__WEBPACK_IMPORTED_MODULE_24__)if ([
502
- "PageHeader",
503
- "CodeMirror",
504
- "genStyleHook",
505
- "default"
506
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
507
- return _form_dialog__WEBPACK_IMPORTED_MODULE_24__[key];
508
- }).bind(0, __WEBPACK_IMPORT_KEY__);
509
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
510
- var _form_item__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__("./form-item");
511
- var __WEBPACK_REEXPORT_OBJECT__ = {};
512
- for(var __WEBPACK_IMPORT_KEY__ in _form_item__WEBPACK_IMPORTED_MODULE_25__)if ([
513
- "PageHeader",
514
- "CodeMirror",
515
- "genStyleHook",
516
- "default"
517
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
518
- return _form_item__WEBPACK_IMPORTED_MODULE_25__[key];
519
- }).bind(0, __WEBPACK_IMPORT_KEY__);
520
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
521
- var _form_tab__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__("./form-tab");
522
- var __WEBPACK_REEXPORT_OBJECT__ = {};
523
- for(var __WEBPACK_IMPORT_KEY__ in _form_tab__WEBPACK_IMPORTED_MODULE_26__)if ([
524
- "PageHeader",
525
- "CodeMirror",
526
- "genStyleHook",
527
- "default"
528
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
529
- return _form_tab__WEBPACK_IMPORTED_MODULE_26__[key];
530
- }).bind(0, __WEBPACK_IMPORT_KEY__);
531
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
532
- var _form_v2__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__("./form-v2");
533
- var __WEBPACK_REEXPORT_OBJECT__ = {};
534
- for(var __WEBPACK_IMPORT_KEY__ in _form_v2__WEBPACK_IMPORTED_MODULE_27__)if ([
535
- "PageHeader",
536
- "CodeMirror",
537
- "genStyleHook",
538
- "default"
539
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
540
- return _form_v2__WEBPACK_IMPORTED_MODULE_27__[key];
541
- }).bind(0, __WEBPACK_IMPORT_KEY__);
542
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
543
- var _grid__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__("./grid");
544
- var __WEBPACK_REEXPORT_OBJECT__ = {};
545
- for(var __WEBPACK_IMPORT_KEY__ in _grid__WEBPACK_IMPORTED_MODULE_28__)if ([
546
- "PageHeader",
547
- "CodeMirror",
548
- "genStyleHook",
549
- "default"
550
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
551
- return _grid__WEBPACK_IMPORTED_MODULE_28__[key];
552
- }).bind(0, __WEBPACK_IMPORT_KEY__);
553
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
554
- var _grid_card__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__("./grid-card");
555
- var __WEBPACK_REEXPORT_OBJECT__ = {};
556
- for(var __WEBPACK_IMPORT_KEY__ in _grid_card__WEBPACK_IMPORTED_MODULE_29__)if ([
557
- "PageHeader",
558
- "CodeMirror",
559
- "genStyleHook",
560
- "default"
561
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
562
- return _grid_card__WEBPACK_IMPORTED_MODULE_29__[key];
563
- }).bind(0, __WEBPACK_IMPORT_KEY__);
564
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
565
- var _icon_picker__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__("./icon-picker");
566
- var __WEBPACK_REEXPORT_OBJECT__ = {};
567
- for(var __WEBPACK_IMPORT_KEY__ in _icon_picker__WEBPACK_IMPORTED_MODULE_30__)if ([
568
- "PageHeader",
569
- "CodeMirror",
570
- "genStyleHook",
571
- "default"
572
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
573
- return _icon_picker__WEBPACK_IMPORTED_MODULE_30__[key];
574
- }).bind(0, __WEBPACK_IMPORT_KEY__);
575
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
576
- var _input__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__("./input?b1cc");
577
- var __WEBPACK_REEXPORT_OBJECT__ = {};
578
- for(var __WEBPACK_IMPORT_KEY__ in _input__WEBPACK_IMPORTED_MODULE_31__)if ([
579
- "PageHeader",
580
- "CodeMirror",
581
- "genStyleHook",
582
- "default"
583
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
584
- return _input__WEBPACK_IMPORTED_MODULE_31__[key];
585
- }).bind(0, __WEBPACK_IMPORT_KEY__);
586
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
587
- var _input_number__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__("./input-number");
588
- var __WEBPACK_REEXPORT_OBJECT__ = {};
589
- for(var __WEBPACK_IMPORT_KEY__ in _input_number__WEBPACK_IMPORTED_MODULE_32__)if ([
590
- "PageHeader",
591
- "CodeMirror",
592
- "genStyleHook",
593
- "default"
594
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
595
- return _input_number__WEBPACK_IMPORTED_MODULE_32__[key];
596
- }).bind(0, __WEBPACK_IMPORT_KEY__);
597
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
598
- var _list__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__("./list");
599
- var __WEBPACK_REEXPORT_OBJECT__ = {};
600
- for(var __WEBPACK_IMPORT_KEY__ in _list__WEBPACK_IMPORTED_MODULE_33__)if ([
601
- "PageHeader",
602
- "CodeMirror",
603
- "genStyleHook",
604
- "default"
605
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
606
- return _list__WEBPACK_IMPORTED_MODULE_33__[key];
607
- }).bind(0, __WEBPACK_IMPORT_KEY__);
608
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
609
- var _markdown__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__("./markdown?ce72");
610
- var __WEBPACK_REEXPORT_OBJECT__ = {};
611
- for(var __WEBPACK_IMPORT_KEY__ in _markdown__WEBPACK_IMPORTED_MODULE_34__)if ([
612
- "PageHeader",
613
- "CodeMirror",
614
- "genStyleHook",
615
- "default"
616
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
617
- return _markdown__WEBPACK_IMPORTED_MODULE_34__[key];
618
- }).bind(0, __WEBPACK_IMPORT_KEY__);
619
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
620
- var _menu__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__("./menu");
621
- var __WEBPACK_REEXPORT_OBJECT__ = {};
622
- for(var __WEBPACK_IMPORT_KEY__ in _menu__WEBPACK_IMPORTED_MODULE_35__)if ([
623
- "PageHeader",
624
- "CodeMirror",
625
- "genStyleHook",
626
- "default"
627
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
628
- return _menu__WEBPACK_IMPORTED_MODULE_35__[key];
629
- }).bind(0, __WEBPACK_IMPORT_KEY__);
630
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
631
- var _nanoIDInput__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__("./nanoIDInput");
632
- var __WEBPACK_REEXPORT_OBJECT__ = {};
633
- for(var __WEBPACK_IMPORT_KEY__ in _nanoIDInput__WEBPACK_IMPORTED_MODULE_36__)if ([
634
- "PageHeader",
635
- "CodeMirror",
636
- "genStyleHook",
637
- "default"
638
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
639
- return _nanoIDInput__WEBPACK_IMPORTED_MODULE_36__[key];
640
- }).bind(0, __WEBPACK_IMPORT_KEY__);
641
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
642
- var _page__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__("./page");
643
- var __WEBPACK_REEXPORT_OBJECT__ = {};
644
- for(var __WEBPACK_IMPORT_KEY__ in _page__WEBPACK_IMPORTED_MODULE_37__)if ([
645
- "PageHeader",
646
- "CodeMirror",
647
- "genStyleHook",
648
- "default"
649
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
650
- return _page__WEBPACK_IMPORTED_MODULE_37__[key];
651
- }).bind(0, __WEBPACK_IMPORT_KEY__);
652
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
653
- var _pagination__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__("./pagination");
654
- var __WEBPACK_REEXPORT_OBJECT__ = {};
655
- for(var __WEBPACK_IMPORT_KEY__ in _pagination__WEBPACK_IMPORTED_MODULE_38__)if ([
656
- "PageHeader",
657
- "CodeMirror",
658
- "genStyleHook",
659
- "default"
660
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
661
- return _pagination__WEBPACK_IMPORTED_MODULE_38__[key];
662
- }).bind(0, __WEBPACK_IMPORT_KEY__);
663
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
664
- var _password__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__("./password?65b8");
665
- var __WEBPACK_REEXPORT_OBJECT__ = {};
666
- for(var __WEBPACK_IMPORT_KEY__ in _password__WEBPACK_IMPORTED_MODULE_39__)if ([
667
- "PageHeader",
668
- "CodeMirror",
669
- "genStyleHook",
670
- "default"
671
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
672
- return _password__WEBPACK_IMPORTED_MODULE_39__[key];
673
- }).bind(0, __WEBPACK_IMPORT_KEY__);
674
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
675
- var _percent__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__("./percent?afe4");
676
- var __WEBPACK_REEXPORT_OBJECT__ = {};
677
- for(var __WEBPACK_IMPORT_KEY__ in _percent__WEBPACK_IMPORTED_MODULE_40__)if ([
678
- "PageHeader",
679
- "CodeMirror",
680
- "genStyleHook",
681
- "default"
682
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
683
- return _percent__WEBPACK_IMPORTED_MODULE_40__[key];
684
- }).bind(0, __WEBPACK_IMPORT_KEY__);
685
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
686
- var _popover__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__("./popover");
687
- var __WEBPACK_REEXPORT_OBJECT__ = {};
688
- for(var __WEBPACK_IMPORT_KEY__ in _popover__WEBPACK_IMPORTED_MODULE_41__)if ([
689
- "PageHeader",
690
- "CodeMirror",
691
- "genStyleHook",
692
- "default"
693
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
694
- return _popover__WEBPACK_IMPORTED_MODULE_41__[key];
695
- }).bind(0, __WEBPACK_IMPORT_KEY__);
696
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
697
- var _preview__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__("./preview");
698
- var __WEBPACK_REEXPORT_OBJECT__ = {};
699
- for(var __WEBPACK_IMPORT_KEY__ in _preview__WEBPACK_IMPORTED_MODULE_42__)if ([
700
- "PageHeader",
701
- "CodeMirror",
702
- "genStyleHook",
703
- "default"
704
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
705
- return _preview__WEBPACK_IMPORTED_MODULE_42__[key];
706
- }).bind(0, __WEBPACK_IMPORT_KEY__);
707
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
708
- var _quick_edit__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__("./quick-edit");
709
- var __WEBPACK_REEXPORT_OBJECT__ = {};
710
- for(var __WEBPACK_IMPORT_KEY__ in _quick_edit__WEBPACK_IMPORTED_MODULE_43__)if ([
711
- "PageHeader",
712
- "CodeMirror",
713
- "genStyleHook",
714
- "default"
715
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
716
- return _quick_edit__WEBPACK_IMPORTED_MODULE_43__[key];
717
- }).bind(0, __WEBPACK_IMPORT_KEY__);
718
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
719
- var _radio__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__("./radio");
720
- var __WEBPACK_REEXPORT_OBJECT__ = {};
721
- for(var __WEBPACK_IMPORT_KEY__ in _radio__WEBPACK_IMPORTED_MODULE_44__)if ([
722
- "PageHeader",
723
- "CodeMirror",
724
- "genStyleHook",
725
- "default"
726
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
727
- return _radio__WEBPACK_IMPORTED_MODULE_44__[key];
728
- }).bind(0, __WEBPACK_IMPORT_KEY__);
729
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
730
- var _record_picker__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__("./record-picker");
731
- var __WEBPACK_REEXPORT_OBJECT__ = {};
732
- for(var __WEBPACK_IMPORT_KEY__ in _record_picker__WEBPACK_IMPORTED_MODULE_45__)if ([
733
- "PageHeader",
734
- "CodeMirror",
735
- "genStyleHook",
736
- "default"
737
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
738
- return _record_picker__WEBPACK_IMPORTED_MODULE_45__[key];
739
- }).bind(0, __WEBPACK_IMPORT_KEY__);
740
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
741
- var _remote_select__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__("./remote-select");
742
- var __WEBPACK_REEXPORT_OBJECT__ = {};
743
- for(var __WEBPACK_IMPORT_KEY__ in _remote_select__WEBPACK_IMPORTED_MODULE_46__)if ([
744
- "PageHeader",
745
- "CodeMirror",
746
- "genStyleHook",
747
- "default"
748
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
749
- return _remote_select__WEBPACK_IMPORTED_MODULE_46__[key];
750
- }).bind(0, __WEBPACK_IMPORT_KEY__);
751
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
752
- var _rich_text__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__("./rich-text");
753
- var __WEBPACK_REEXPORT_OBJECT__ = {};
754
- for(var __WEBPACK_IMPORT_KEY__ in _rich_text__WEBPACK_IMPORTED_MODULE_47__)if ([
755
- "PageHeader",
756
- "CodeMirror",
757
- "genStyleHook",
758
- "default"
759
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
760
- return _rich_text__WEBPACK_IMPORTED_MODULE_47__[key];
761
- }).bind(0, __WEBPACK_IMPORT_KEY__);
762
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
763
- var _scroll_area__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__("./scroll-area");
764
- var __WEBPACK_REEXPORT_OBJECT__ = {};
765
- for(var __WEBPACK_IMPORT_KEY__ in _scroll_area__WEBPACK_IMPORTED_MODULE_48__)if ([
766
- "PageHeader",
767
- "CodeMirror",
768
- "genStyleHook",
769
- "default"
770
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
771
- return _scroll_area__WEBPACK_IMPORTED_MODULE_48__[key];
772
- }).bind(0, __WEBPACK_IMPORT_KEY__);
773
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
774
- var _select__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__("./select?8344");
775
- var __WEBPACK_REEXPORT_OBJECT__ = {};
776
- for(var __WEBPACK_IMPORT_KEY__ in _select__WEBPACK_IMPORTED_MODULE_49__)if ([
777
- "PageHeader",
778
- "CodeMirror",
779
- "genStyleHook",
780
- "default"
781
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
782
- return _select__WEBPACK_IMPORTED_MODULE_49__[key];
783
- }).bind(0, __WEBPACK_IMPORT_KEY__);
784
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
785
- var _space__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__("./space");
786
- var __WEBPACK_REEXPORT_OBJECT__ = {};
787
- for(var __WEBPACK_IMPORT_KEY__ in _space__WEBPACK_IMPORTED_MODULE_50__)if ([
788
- "PageHeader",
789
- "CodeMirror",
790
- "genStyleHook",
791
- "default"
792
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
793
- return _space__WEBPACK_IMPORTED_MODULE_50__[key];
794
- }).bind(0, __WEBPACK_IMPORT_KEY__);
795
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
796
- var _table__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__("./table");
797
- var __WEBPACK_REEXPORT_OBJECT__ = {};
798
- for(var __WEBPACK_IMPORT_KEY__ in _table__WEBPACK_IMPORTED_MODULE_51__)if ([
799
- "PageHeader",
800
- "CodeMirror",
801
- "genStyleHook",
802
- "default"
803
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
804
- return _table__WEBPACK_IMPORTED_MODULE_51__[key];
805
- }).bind(0, __WEBPACK_IMPORT_KEY__);
806
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
807
- var _table_v2__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__("./table-v2");
808
- var __WEBPACK_REEXPORT_OBJECT__ = {};
809
- for(var __WEBPACK_IMPORT_KEY__ in _table_v2__WEBPACK_IMPORTED_MODULE_52__)if ([
810
- "PageHeader",
811
- "CodeMirror",
812
- "genStyleHook",
813
- "default"
814
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
815
- return _table_v2__WEBPACK_IMPORTED_MODULE_52__[key];
816
- }).bind(0, __WEBPACK_IMPORT_KEY__);
817
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
818
- var _tabs__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__("./tabs");
819
- var __WEBPACK_REEXPORT_OBJECT__ = {};
820
- for(var __WEBPACK_IMPORT_KEY__ in _tabs__WEBPACK_IMPORTED_MODULE_53__)if ([
821
- "PageHeader",
822
- "CodeMirror",
823
- "genStyleHook",
824
- "default"
825
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
826
- return _tabs__WEBPACK_IMPORTED_MODULE_53__[key];
827
- }).bind(0, __WEBPACK_IMPORT_KEY__);
828
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
829
- var _time_picker__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__("./time-picker");
830
- var __WEBPACK_REEXPORT_OBJECT__ = {};
831
- for(var __WEBPACK_IMPORT_KEY__ in _time_picker__WEBPACK_IMPORTED_MODULE_54__)if ([
832
- "PageHeader",
833
- "CodeMirror",
834
- "genStyleHook",
835
- "default"
836
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
837
- return _time_picker__WEBPACK_IMPORTED_MODULE_54__[key];
838
- }).bind(0, __WEBPACK_IMPORT_KEY__);
839
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
840
- var _tree_select__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__("./tree-select");
841
- var __WEBPACK_REEXPORT_OBJECT__ = {};
842
- for(var __WEBPACK_IMPORT_KEY__ in _tree_select__WEBPACK_IMPORTED_MODULE_55__)if ([
843
- "PageHeader",
844
- "CodeMirror",
845
- "genStyleHook",
846
- "default"
847
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
848
- return _tree_select__WEBPACK_IMPORTED_MODULE_55__[key];
849
- }).bind(0, __WEBPACK_IMPORT_KEY__);
850
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
851
- var _tree__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__("./tree?6051");
852
- var __WEBPACK_REEXPORT_OBJECT__ = {};
853
- for(var __WEBPACK_IMPORT_KEY__ in _tree__WEBPACK_IMPORTED_MODULE_56__)if ([
854
- "PageHeader",
855
- "CodeMirror",
856
- "genStyleHook",
857
- "default"
858
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
859
- return _tree__WEBPACK_IMPORTED_MODULE_56__[key];
860
- }).bind(0, __WEBPACK_IMPORT_KEY__);
861
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
862
- var _unixTimestamp__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__("./unixTimestamp?5844");
863
- var __WEBPACK_REEXPORT_OBJECT__ = {};
864
- for(var __WEBPACK_IMPORT_KEY__ in _unixTimestamp__WEBPACK_IMPORTED_MODULE_57__)if ([
865
- "PageHeader",
866
- "CodeMirror",
867
- "genStyleHook",
868
- "default"
869
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
870
- return _unixTimestamp__WEBPACK_IMPORTED_MODULE_57__[key];
871
- }).bind(0, __WEBPACK_IMPORT_KEY__);
872
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
873
- var _upload__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__("./upload");
874
- var __WEBPACK_REEXPORT_OBJECT__ = {};
875
- for(var __WEBPACK_IMPORT_KEY__ in _upload__WEBPACK_IMPORTED_MODULE_58__)if ([
876
- "PageHeader",
877
- "CodeMirror",
878
- "genStyleHook",
879
- "default"
880
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
881
- return _upload__WEBPACK_IMPORTED_MODULE_58__[key];
882
- }).bind(0, __WEBPACK_IMPORT_KEY__);
883
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
884
- var _variable__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__("./variable");
885
- var __WEBPACK_REEXPORT_OBJECT__ = {};
886
- for(var __WEBPACK_IMPORT_KEY__ in _variable__WEBPACK_IMPORTED_MODULE_59__)if ([
887
- "PageHeader",
888
- "CodeMirror",
889
- "genStyleHook",
890
- "default"
891
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
892
- return _variable__WEBPACK_IMPORTED_MODULE_59__[key];
893
- }).bind(0, __WEBPACK_IMPORT_KEY__);
894
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
895
- var _media_card__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__("./media-card");
896
- var __WEBPACK_REEXPORT_OBJECT__ = {};
897
- for(var __WEBPACK_IMPORT_KEY__ in _media_card__WEBPACK_IMPORTED_MODULE_60__)if ([
898
- "PageHeader",
237
+ (()=>{
238
+ __webpack_require__.r(__webpack_exports__);
239
+ __webpack_require__.d(__webpack_exports__, {
240
+ CodeMirror: ()=>_tachybase_components__WEBPACK_IMPORTED_MODULE_63__.CodeMirror,
241
+ PageHeader: ()=>_ant_design_pro_layout__WEBPACK_IMPORTED_MODULE_62__.PageHeader,
242
+ genStyleHook: ()=>_builtins___WEBPACK_IMPORTED_MODULE_2__.genStyleHook
243
+ });
244
+ __webpack_require__("./index.less");
245
+ var _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("./AntdSchemaComponentProvider");
246
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
247
+ for(var __WEBPACK_IMPORT_KEY__ in _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__)if ([
248
+ "CodeMirror",
249
+ "default",
250
+ "PageHeader",
251
+ "genStyleHook"
252
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
253
+ return _AntdSchemaComponentProvider__WEBPACK_IMPORTED_MODULE_1__[key];
254
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
255
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
256
+ var _builtins___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("./__builtins__");
257
+ var _action__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("./action");
258
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
259
+ for(var __WEBPACK_IMPORT_KEY__ in _action__WEBPACK_IMPORTED_MODULE_3__)if ([
260
+ "CodeMirror",
261
+ "default",
262
+ "PageHeader",
263
+ "genStyleHook"
264
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
265
+ return _action__WEBPACK_IMPORTED_MODULE_3__[key];
266
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
267
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
268
+ var _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("./appends-tree-select");
269
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
270
+ for(var __WEBPACK_IMPORT_KEY__ in _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__)if ([
271
+ "CodeMirror",
272
+ "default",
273
+ "PageHeader",
274
+ "genStyleHook"
275
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
276
+ return _appends_tree_select__WEBPACK_IMPORTED_MODULE_4__[key];
277
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
278
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
279
+ var _association_cascader__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("./association-cascader");
280
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
281
+ for(var __WEBPACK_IMPORT_KEY__ in _association_cascader__WEBPACK_IMPORTED_MODULE_5__)if ([
282
+ "CodeMirror",
283
+ "default",
284
+ "PageHeader",
285
+ "genStyleHook"
286
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
287
+ return _association_cascader__WEBPACK_IMPORTED_MODULE_5__[key];
288
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
289
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
290
+ var _association_field__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__("./association-field");
291
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
292
+ for(var __WEBPACK_IMPORT_KEY__ in _association_field__WEBPACK_IMPORTED_MODULE_6__)if ([
293
+ "CodeMirror",
294
+ "default",
295
+ "PageHeader",
296
+ "genStyleHook"
297
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
298
+ return _association_field__WEBPACK_IMPORTED_MODULE_6__[key];
299
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
300
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
301
+ var _association_select__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__("./association-select");
302
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
303
+ for(var __WEBPACK_IMPORT_KEY__ in _association_select__WEBPACK_IMPORTED_MODULE_7__)if ([
304
+ "CodeMirror",
305
+ "default",
306
+ "PageHeader",
307
+ "genStyleHook"
308
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
309
+ return _association_select__WEBPACK_IMPORTED_MODULE_7__[key];
310
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
311
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
312
+ var _auto_complete__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__("./auto-complete");
313
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
314
+ for(var __WEBPACK_IMPORT_KEY__ in _auto_complete__WEBPACK_IMPORTED_MODULE_8__)if ([
315
+ "CodeMirror",
316
+ "default",
317
+ "PageHeader",
318
+ "genStyleHook"
319
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
320
+ return _auto_complete__WEBPACK_IMPORTED_MODULE_8__[key];
321
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
322
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
323
+ var _block_item__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__("./block-item");
324
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
325
+ for(var __WEBPACK_IMPORT_KEY__ in _block_item__WEBPACK_IMPORTED_MODULE_9__)if ([
326
+ "CodeMirror",
327
+ "default",
328
+ "PageHeader",
329
+ "genStyleHook"
330
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
331
+ return _block_item__WEBPACK_IMPORTED_MODULE_9__[key];
332
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
333
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
334
+ var _card_item__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__("./card-item");
335
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
336
+ for(var __WEBPACK_IMPORT_KEY__ in _card_item__WEBPACK_IMPORTED_MODULE_10__)if ([
337
+ "CodeMirror",
338
+ "default",
339
+ "PageHeader",
340
+ "genStyleHook"
341
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
342
+ return _card_item__WEBPACK_IMPORTED_MODULE_10__[key];
343
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
344
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
345
+ var _cascader__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__("./cascader");
346
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
347
+ for(var __WEBPACK_IMPORT_KEY__ in _cascader__WEBPACK_IMPORTED_MODULE_11__)if ([
348
+ "CodeMirror",
349
+ "default",
350
+ "PageHeader",
351
+ "genStyleHook"
352
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
353
+ return _cascader__WEBPACK_IMPORTED_MODULE_11__[key];
354
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
355
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
356
+ var _checkbox__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__("./checkbox?50e0");
357
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
358
+ for(var __WEBPACK_IMPORT_KEY__ in _checkbox__WEBPACK_IMPORTED_MODULE_12__)if ([
359
+ "CodeMirror",
360
+ "default",
361
+ "PageHeader",
362
+ "genStyleHook"
363
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
364
+ return _checkbox__WEBPACK_IMPORTED_MODULE_12__[key];
365
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
366
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
367
+ var _collection_select__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__("./collection-select");
368
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
369
+ for(var __WEBPACK_IMPORT_KEY__ in _collection_select__WEBPACK_IMPORTED_MODULE_13__)if ([
370
+ "CodeMirror",
371
+ "default",
372
+ "PageHeader",
373
+ "genStyleHook"
374
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
375
+ return _collection_select__WEBPACK_IMPORTED_MODULE_13__[key];
376
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
377
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
378
+ var _color_picker__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__("./color-picker");
379
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
380
+ for(var __WEBPACK_IMPORT_KEY__ in _color_picker__WEBPACK_IMPORTED_MODULE_14__)if ([
381
+ "CodeMirror",
382
+ "default",
383
+ "PageHeader",
384
+ "genStyleHook"
385
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
386
+ return _color_picker__WEBPACK_IMPORTED_MODULE_14__[key];
387
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
388
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
389
+ var _color_select__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__("./color-select");
390
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
391
+ for(var __WEBPACK_IMPORT_KEY__ in _color_select__WEBPACK_IMPORTED_MODULE_15__)if ([
392
+ "CodeMirror",
393
+ "default",
394
+ "PageHeader",
395
+ "genStyleHook"
396
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
397
+ return _color_select__WEBPACK_IMPORTED_MODULE_15__[key];
398
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
399
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
400
+ var _cron__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__("./cron");
401
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
402
+ for(var __WEBPACK_IMPORT_KEY__ in _cron__WEBPACK_IMPORTED_MODULE_16__)if ([
403
+ "CodeMirror",
404
+ "default",
405
+ "PageHeader",
406
+ "genStyleHook"
407
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
408
+ return _cron__WEBPACK_IMPORTED_MODULE_16__[key];
409
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
410
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
411
+ var _slider__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__("./slider?d661");
412
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
413
+ for(var __WEBPACK_IMPORT_KEY__ in _slider__WEBPACK_IMPORTED_MODULE_17__)if ([
414
+ "CodeMirror",
415
+ "default",
416
+ "PageHeader",
417
+ "genStyleHook"
418
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
419
+ return _slider__WEBPACK_IMPORTED_MODULE_17__[key];
420
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
421
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
422
+ var _custom_cascader__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__("./custom-cascader");
423
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
424
+ for(var __WEBPACK_IMPORT_KEY__ in _custom_cascader__WEBPACK_IMPORTED_MODULE_18__)if ([
425
+ "CodeMirror",
426
+ "default",
427
+ "PageHeader",
428
+ "genStyleHook"
429
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
430
+ return _custom_cascader__WEBPACK_IMPORTED_MODULE_18__[key];
431
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
432
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
433
+ var _date_picker__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__("./date-picker");
434
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
435
+ for(var __WEBPACK_IMPORT_KEY__ in _date_picker__WEBPACK_IMPORTED_MODULE_19__)if ([
436
+ "CodeMirror",
437
+ "default",
438
+ "PageHeader",
439
+ "genStyleHook"
440
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
441
+ return _date_picker__WEBPACK_IMPORTED_MODULE_19__[key];
442
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
443
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
444
+ var _details__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__("./details");
445
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
446
+ for(var __WEBPACK_IMPORT_KEY__ in _details__WEBPACK_IMPORTED_MODULE_20__)if ([
447
+ "CodeMirror",
448
+ "default",
449
+ "PageHeader",
450
+ "genStyleHook"
451
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
452
+ return _details__WEBPACK_IMPORTED_MODULE_20__[key];
453
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
454
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
455
+ var _expand_action__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__("./expand-action");
456
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
457
+ for(var __WEBPACK_IMPORT_KEY__ in _expand_action__WEBPACK_IMPORTED_MODULE_21__)if ([
458
+ "CodeMirror",
459
+ "default",
460
+ "PageHeader",
461
+ "genStyleHook"
462
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
463
+ return _expand_action__WEBPACK_IMPORTED_MODULE_21__[key];
464
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
465
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
466
+ var _filter__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__("./filter");
467
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
468
+ for(var __WEBPACK_IMPORT_KEY__ in _filter__WEBPACK_IMPORTED_MODULE_22__)if ([
469
+ "CodeMirror",
470
+ "default",
471
+ "PageHeader",
472
+ "genStyleHook"
473
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
474
+ return _filter__WEBPACK_IMPORTED_MODULE_22__[key];
475
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
476
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
477
+ var _form__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__("./form");
478
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
479
+ for(var __WEBPACK_IMPORT_KEY__ in _form__WEBPACK_IMPORTED_MODULE_23__)if ([
480
+ "CodeMirror",
481
+ "default",
482
+ "PageHeader",
483
+ "genStyleHook"
484
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
485
+ return _form__WEBPACK_IMPORTED_MODULE_23__[key];
486
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
487
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
488
+ var _form_dialog__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__("./form-dialog");
489
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
490
+ for(var __WEBPACK_IMPORT_KEY__ in _form_dialog__WEBPACK_IMPORTED_MODULE_24__)if ([
491
+ "CodeMirror",
492
+ "default",
493
+ "PageHeader",
494
+ "genStyleHook"
495
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
496
+ return _form_dialog__WEBPACK_IMPORTED_MODULE_24__[key];
497
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
498
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
499
+ var _form_item__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__("./form-item");
500
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
501
+ for(var __WEBPACK_IMPORT_KEY__ in _form_item__WEBPACK_IMPORTED_MODULE_25__)if ([
502
+ "CodeMirror",
503
+ "default",
504
+ "PageHeader",
505
+ "genStyleHook"
506
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
507
+ return _form_item__WEBPACK_IMPORTED_MODULE_25__[key];
508
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
509
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
510
+ var _form_tab__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__("./form-tab");
511
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
512
+ for(var __WEBPACK_IMPORT_KEY__ in _form_tab__WEBPACK_IMPORTED_MODULE_26__)if ([
513
+ "CodeMirror",
514
+ "default",
515
+ "PageHeader",
516
+ "genStyleHook"
517
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
518
+ return _form_tab__WEBPACK_IMPORTED_MODULE_26__[key];
519
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
520
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
521
+ var _form_v2__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__("./form-v2");
522
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
523
+ for(var __WEBPACK_IMPORT_KEY__ in _form_v2__WEBPACK_IMPORTED_MODULE_27__)if ([
524
+ "CodeMirror",
525
+ "default",
526
+ "PageHeader",
527
+ "genStyleHook"
528
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
529
+ return _form_v2__WEBPACK_IMPORTED_MODULE_27__[key];
530
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
531
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
532
+ var _grid__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__("./grid");
533
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
534
+ for(var __WEBPACK_IMPORT_KEY__ in _grid__WEBPACK_IMPORTED_MODULE_28__)if ([
535
+ "CodeMirror",
536
+ "default",
537
+ "PageHeader",
538
+ "genStyleHook"
539
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
540
+ return _grid__WEBPACK_IMPORTED_MODULE_28__[key];
541
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
542
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
543
+ var _grid_card__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__("./grid-card");
544
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
545
+ for(var __WEBPACK_IMPORT_KEY__ in _grid_card__WEBPACK_IMPORTED_MODULE_29__)if ([
546
+ "CodeMirror",
547
+ "default",
548
+ "PageHeader",
549
+ "genStyleHook"
550
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
551
+ return _grid_card__WEBPACK_IMPORTED_MODULE_29__[key];
552
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
553
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
554
+ var _icon_picker__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__("./icon-picker");
555
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
556
+ for(var __WEBPACK_IMPORT_KEY__ in _icon_picker__WEBPACK_IMPORTED_MODULE_30__)if ([
557
+ "CodeMirror",
558
+ "default",
559
+ "PageHeader",
560
+ "genStyleHook"
561
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
562
+ return _icon_picker__WEBPACK_IMPORTED_MODULE_30__[key];
563
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
564
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
565
+ var _input__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__("./input?f1fb");
566
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
567
+ for(var __WEBPACK_IMPORT_KEY__ in _input__WEBPACK_IMPORTED_MODULE_31__)if ([
568
+ "CodeMirror",
569
+ "default",
570
+ "PageHeader",
571
+ "genStyleHook"
572
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
573
+ return _input__WEBPACK_IMPORTED_MODULE_31__[key];
574
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
575
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
576
+ var _input_number__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__("./input-number");
577
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
578
+ for(var __WEBPACK_IMPORT_KEY__ in _input_number__WEBPACK_IMPORTED_MODULE_32__)if ([
579
+ "CodeMirror",
580
+ "default",
581
+ "PageHeader",
582
+ "genStyleHook"
583
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
584
+ return _input_number__WEBPACK_IMPORTED_MODULE_32__[key];
585
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
586
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
587
+ var _list__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__("./list");
588
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
589
+ for(var __WEBPACK_IMPORT_KEY__ in _list__WEBPACK_IMPORTED_MODULE_33__)if ([
590
+ "CodeMirror",
591
+ "default",
592
+ "PageHeader",
593
+ "genStyleHook"
594
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
595
+ return _list__WEBPACK_IMPORTED_MODULE_33__[key];
596
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
597
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
598
+ var _markdown__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__("./markdown?b483");
599
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
600
+ for(var __WEBPACK_IMPORT_KEY__ in _markdown__WEBPACK_IMPORTED_MODULE_34__)if ([
601
+ "CodeMirror",
602
+ "default",
603
+ "PageHeader",
604
+ "genStyleHook"
605
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
606
+ return _markdown__WEBPACK_IMPORTED_MODULE_34__[key];
607
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
608
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
609
+ var _menu__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__("./menu");
610
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
611
+ for(var __WEBPACK_IMPORT_KEY__ in _menu__WEBPACK_IMPORTED_MODULE_35__)if ([
612
+ "CodeMirror",
613
+ "default",
614
+ "PageHeader",
615
+ "genStyleHook"
616
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
617
+ return _menu__WEBPACK_IMPORTED_MODULE_35__[key];
618
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
619
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
620
+ var _nanoIDInput__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__("./nanoIDInput");
621
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
622
+ for(var __WEBPACK_IMPORT_KEY__ in _nanoIDInput__WEBPACK_IMPORTED_MODULE_36__)if ([
623
+ "CodeMirror",
624
+ "default",
625
+ "PageHeader",
626
+ "genStyleHook"
627
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
628
+ return _nanoIDInput__WEBPACK_IMPORTED_MODULE_36__[key];
629
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
630
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
631
+ var _page__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__("./page");
632
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
633
+ for(var __WEBPACK_IMPORT_KEY__ in _page__WEBPACK_IMPORTED_MODULE_37__)if ([
634
+ "CodeMirror",
635
+ "default",
636
+ "PageHeader",
637
+ "genStyleHook"
638
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
639
+ return _page__WEBPACK_IMPORTED_MODULE_37__[key];
640
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
641
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
642
+ var _pagination__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__("./pagination");
643
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
644
+ for(var __WEBPACK_IMPORT_KEY__ in _pagination__WEBPACK_IMPORTED_MODULE_38__)if ([
645
+ "CodeMirror",
646
+ "default",
647
+ "PageHeader",
648
+ "genStyleHook"
649
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
650
+ return _pagination__WEBPACK_IMPORTED_MODULE_38__[key];
651
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
652
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
653
+ var _password__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__("./password?1dd4");
654
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
655
+ for(var __WEBPACK_IMPORT_KEY__ in _password__WEBPACK_IMPORTED_MODULE_39__)if ([
656
+ "CodeMirror",
657
+ "default",
658
+ "PageHeader",
659
+ "genStyleHook"
660
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
661
+ return _password__WEBPACK_IMPORTED_MODULE_39__[key];
662
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
663
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
664
+ var _percent__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__("./percent?cbe6");
665
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
666
+ for(var __WEBPACK_IMPORT_KEY__ in _percent__WEBPACK_IMPORTED_MODULE_40__)if ([
667
+ "CodeMirror",
668
+ "default",
669
+ "PageHeader",
670
+ "genStyleHook"
671
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
672
+ return _percent__WEBPACK_IMPORTED_MODULE_40__[key];
673
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
674
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
675
+ var _popover__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__("./popover");
676
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
677
+ for(var __WEBPACK_IMPORT_KEY__ in _popover__WEBPACK_IMPORTED_MODULE_41__)if ([
678
+ "CodeMirror",
679
+ "default",
680
+ "PageHeader",
681
+ "genStyleHook"
682
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
683
+ return _popover__WEBPACK_IMPORTED_MODULE_41__[key];
684
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
685
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
686
+ var _preview__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__("./preview");
687
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
688
+ for(var __WEBPACK_IMPORT_KEY__ in _preview__WEBPACK_IMPORTED_MODULE_42__)if ([
689
+ "CodeMirror",
690
+ "default",
691
+ "PageHeader",
692
+ "genStyleHook"
693
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
694
+ return _preview__WEBPACK_IMPORTED_MODULE_42__[key];
695
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
696
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
697
+ var _quick_edit__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__("./quick-edit");
698
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
699
+ for(var __WEBPACK_IMPORT_KEY__ in _quick_edit__WEBPACK_IMPORTED_MODULE_43__)if ([
700
+ "CodeMirror",
701
+ "default",
702
+ "PageHeader",
703
+ "genStyleHook"
704
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
705
+ return _quick_edit__WEBPACK_IMPORTED_MODULE_43__[key];
706
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
707
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
708
+ var _radio__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__("./radio");
709
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
710
+ for(var __WEBPACK_IMPORT_KEY__ in _radio__WEBPACK_IMPORTED_MODULE_44__)if ([
711
+ "CodeMirror",
712
+ "default",
713
+ "PageHeader",
714
+ "genStyleHook"
715
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
716
+ return _radio__WEBPACK_IMPORTED_MODULE_44__[key];
717
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
718
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
719
+ var _record_picker__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__("./record-picker");
720
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
721
+ for(var __WEBPACK_IMPORT_KEY__ in _record_picker__WEBPACK_IMPORTED_MODULE_45__)if ([
722
+ "CodeMirror",
723
+ "default",
724
+ "PageHeader",
725
+ "genStyleHook"
726
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
727
+ return _record_picker__WEBPACK_IMPORTED_MODULE_45__[key];
728
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
729
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
730
+ var _remote_select__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__("./remote-select");
731
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
732
+ for(var __WEBPACK_IMPORT_KEY__ in _remote_select__WEBPACK_IMPORTED_MODULE_46__)if ([
733
+ "CodeMirror",
734
+ "default",
735
+ "PageHeader",
736
+ "genStyleHook"
737
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
738
+ return _remote_select__WEBPACK_IMPORTED_MODULE_46__[key];
739
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
740
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
741
+ var _rich_text__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__("./rich-text");
742
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
743
+ for(var __WEBPACK_IMPORT_KEY__ in _rich_text__WEBPACK_IMPORTED_MODULE_47__)if ([
744
+ "CodeMirror",
745
+ "default",
746
+ "PageHeader",
747
+ "genStyleHook"
748
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
749
+ return _rich_text__WEBPACK_IMPORTED_MODULE_47__[key];
750
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
751
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
752
+ var _scroll_area__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__("./scroll-area");
753
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
754
+ for(var __WEBPACK_IMPORT_KEY__ in _scroll_area__WEBPACK_IMPORTED_MODULE_48__)if ([
755
+ "CodeMirror",
756
+ "default",
757
+ "PageHeader",
758
+ "genStyleHook"
759
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
760
+ return _scroll_area__WEBPACK_IMPORTED_MODULE_48__[key];
761
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
762
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
763
+ var _select__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__("./select?f8d4");
764
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
765
+ for(var __WEBPACK_IMPORT_KEY__ in _select__WEBPACK_IMPORTED_MODULE_49__)if ([
766
+ "CodeMirror",
767
+ "default",
768
+ "PageHeader",
769
+ "genStyleHook"
770
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
771
+ return _select__WEBPACK_IMPORTED_MODULE_49__[key];
772
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
773
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
774
+ var _space__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__("./space");
775
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
776
+ for(var __WEBPACK_IMPORT_KEY__ in _space__WEBPACK_IMPORTED_MODULE_50__)if ([
777
+ "CodeMirror",
778
+ "default",
779
+ "PageHeader",
780
+ "genStyleHook"
781
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
782
+ return _space__WEBPACK_IMPORTED_MODULE_50__[key];
783
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
784
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
785
+ var _table__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__("./table");
786
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
787
+ for(var __WEBPACK_IMPORT_KEY__ in _table__WEBPACK_IMPORTED_MODULE_51__)if ([
788
+ "CodeMirror",
789
+ "default",
790
+ "PageHeader",
791
+ "genStyleHook"
792
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
793
+ return _table__WEBPACK_IMPORTED_MODULE_51__[key];
794
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
795
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
796
+ var _table_v2__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__("./table-v2");
797
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
798
+ for(var __WEBPACK_IMPORT_KEY__ in _table_v2__WEBPACK_IMPORTED_MODULE_52__)if ([
799
+ "CodeMirror",
800
+ "default",
801
+ "PageHeader",
802
+ "genStyleHook"
803
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
804
+ return _table_v2__WEBPACK_IMPORTED_MODULE_52__[key];
805
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
806
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
807
+ var _tabs__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__("./tabs");
808
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
809
+ for(var __WEBPACK_IMPORT_KEY__ in _tabs__WEBPACK_IMPORTED_MODULE_53__)if ([
810
+ "CodeMirror",
811
+ "default",
812
+ "PageHeader",
813
+ "genStyleHook"
814
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
815
+ return _tabs__WEBPACK_IMPORTED_MODULE_53__[key];
816
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
817
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
818
+ var _time_picker__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__("./time-picker");
819
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
820
+ for(var __WEBPACK_IMPORT_KEY__ in _time_picker__WEBPACK_IMPORTED_MODULE_54__)if ([
821
+ "CodeMirror",
822
+ "default",
823
+ "PageHeader",
824
+ "genStyleHook"
825
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
826
+ return _time_picker__WEBPACK_IMPORTED_MODULE_54__[key];
827
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
828
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
829
+ var _tree_select__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__("./tree-select");
830
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
831
+ for(var __WEBPACK_IMPORT_KEY__ in _tree_select__WEBPACK_IMPORTED_MODULE_55__)if ([
832
+ "CodeMirror",
833
+ "default",
834
+ "PageHeader",
835
+ "genStyleHook"
836
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
837
+ return _tree_select__WEBPACK_IMPORTED_MODULE_55__[key];
838
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
839
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
840
+ var _tree__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__("./tree?941a");
841
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
842
+ for(var __WEBPACK_IMPORT_KEY__ in _tree__WEBPACK_IMPORTED_MODULE_56__)if ([
843
+ "CodeMirror",
844
+ "default",
845
+ "PageHeader",
846
+ "genStyleHook"
847
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
848
+ return _tree__WEBPACK_IMPORTED_MODULE_56__[key];
849
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
850
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
851
+ var _unixTimestamp__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__("./unixTimestamp?a42f");
852
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
853
+ for(var __WEBPACK_IMPORT_KEY__ in _unixTimestamp__WEBPACK_IMPORTED_MODULE_57__)if ([
854
+ "CodeMirror",
855
+ "default",
856
+ "PageHeader",
857
+ "genStyleHook"
858
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
859
+ return _unixTimestamp__WEBPACK_IMPORTED_MODULE_57__[key];
860
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
861
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
862
+ var _upload__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__("./upload");
863
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
864
+ for(var __WEBPACK_IMPORT_KEY__ in _upload__WEBPACK_IMPORTED_MODULE_58__)if ([
865
+ "CodeMirror",
866
+ "default",
867
+ "PageHeader",
868
+ "genStyleHook"
869
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
870
+ return _upload__WEBPACK_IMPORTED_MODULE_58__[key];
871
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
872
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
873
+ var _variable__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__("./variable");
874
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
875
+ for(var __WEBPACK_IMPORT_KEY__ in _variable__WEBPACK_IMPORTED_MODULE_59__)if ([
876
+ "CodeMirror",
877
+ "default",
878
+ "PageHeader",
879
+ "genStyleHook"
880
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
881
+ return _variable__WEBPACK_IMPORTED_MODULE_59__[key];
882
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
883
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
884
+ var _media_card__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__("./media-card");
885
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
886
+ for(var __WEBPACK_IMPORT_KEY__ in _media_card__WEBPACK_IMPORTED_MODULE_60__)if ([
887
+ "CodeMirror",
888
+ "default",
889
+ "PageHeader",
890
+ "genStyleHook"
891
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
892
+ return _media_card__WEBPACK_IMPORTED_MODULE_60__[key];
893
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
894
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
895
+ var _tracking_link__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__("./tracking-link");
896
+ var __WEBPACK_REEXPORT_OBJECT__ = {};
897
+ for(var __WEBPACK_IMPORT_KEY__ in _tracking_link__WEBPACK_IMPORTED_MODULE_61__)if ([
898
+ "CodeMirror",
899
+ "default",
900
+ "PageHeader",
901
+ "genStyleHook"
902
+ ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
903
+ return _tracking_link__WEBPACK_IMPORTED_MODULE_61__[key];
904
+ }).bind(0, __WEBPACK_IMPORT_KEY__);
905
+ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
906
+ var _ant_design_pro_layout__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__("@ant-design/pro-layout");
907
+ var _tachybase_components__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__("@tachybase/components");
908
+ })();
909
+ exports.CodeMirror = __webpack_exports__.CodeMirror;
910
+ exports.PageHeader = __webpack_exports__.PageHeader;
911
+ exports.genStyleHook = __webpack_exports__.genStyleHook;
912
+ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
899
913
  "CodeMirror",
900
- "genStyleHook",
901
- "default"
902
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
903
- return _media_card__WEBPACK_IMPORTED_MODULE_60__[key];
904
- }).bind(0, __WEBPACK_IMPORT_KEY__);
905
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
906
- var _tracking_link__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__("./tracking-link");
907
- var __WEBPACK_REEXPORT_OBJECT__ = {};
908
- for(var __WEBPACK_IMPORT_KEY__ in _tracking_link__WEBPACK_IMPORTED_MODULE_61__)if ([
909
914
  "PageHeader",
910
- "CodeMirror",
911
- "genStyleHook",
912
- "default"
913
- ].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
914
- return _tracking_link__WEBPACK_IMPORTED_MODULE_61__[key];
915
- }).bind(0, __WEBPACK_IMPORT_KEY__);
916
- __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
917
- var _ant_design_pro_layout__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__("@ant-design/pro-layout");
918
- var _tachybase_components__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__("@tachybase/components");
919
- var __webpack_export_target__ = exports;
920
- for(var __webpack_i__ in __webpack_exports__)__webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
921
- if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, '__esModule', {
915
+ "genStyleHook"
916
+ ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
917
+ Object.defineProperty(exports, '__esModule', {
922
918
  value: true
923
919
  });