@tachybase/client 0.23.8
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.
- package/.turbo/turbo-build.log +24 -0
- package/LICENSE +201 -0
- package/es/api-client/APIClient.d.ts +15 -0
- package/es/api-client/APIClientProvider.d.ts +7 -0
- package/es/api-client/context.d.ts +2 -0
- package/es/api-client/hooks/assign.d.ts +9 -0
- package/es/api-client/hooks/index.d.ts +3 -0
- package/es/api-client/hooks/useAPIClient.d.ts +1 -0
- package/es/api-client/hooks/useRequest.d.ts +22 -0
- package/es/api-client/hooks/useResource.d.ts +1 -0
- package/es/api-client/index.d.ts +4 -0
- package/es/application/AppSchemaComponentProvider.d.ts +3 -0
- package/es/application/Application.d.ts +108 -0
- package/es/application/AttachmentPreviewManager.d.ts +15 -0
- package/es/application/NoticesManager.d.ts +46 -0
- package/es/application/Plugin.d.ts +21 -0
- package/es/application/PluginContextMenu.d.ts +17 -0
- package/es/application/PluginManager.d.ts +38 -0
- package/es/application/RouterManager.d.ts +46 -0
- package/es/application/SystemSettingsManager.d.ts +54 -0
- package/es/application/UserSettingsManager.d.ts +54 -0
- package/es/application/WebSocketClient.d.ts +35 -0
- package/es/application/components/AppComponent.d.ts +6 -0
- package/es/application/components/BlankComponent.d.ts +4 -0
- package/es/application/components/MainComponent.d.ts +2 -0
- package/es/application/components/RouterContextCleaner.d.ts +4 -0
- package/es/application/components/defaultComponents.d.ts +9 -0
- package/es/application/components/index.d.ts +4 -0
- package/es/application/context.d.ts +2 -0
- package/es/application/hoc/index.d.ts +1 -0
- package/es/application/hoc/withDynamicSchemaProps.d.ts +7 -0
- package/es/application/hooks/index.d.ts +3 -0
- package/es/application/hooks/useApp.d.ts +2 -0
- package/es/application/hooks/usePlugin.d.ts +3 -0
- package/es/application/hooks/useRouter.d.ts +1 -0
- package/es/application/index.d.ts +15 -0
- package/es/application/schema-initializer/SchemaInitializer.d.ts +12 -0
- package/es/application/schema-initializer/SchemaInitializerManager.d.ts +24 -0
- package/es/application/schema-initializer/components/SchemaInitializerActionModal.d.ts +11 -0
- package/es/application/schema-initializer/components/SchemaInitializerButton.d.ts +7 -0
- package/es/application/schema-initializer/components/SchemaInitializerChildren.d.ts +6 -0
- package/es/application/schema-initializer/components/SchemaInitializerDivider.d.ts +2 -0
- package/es/application/schema-initializer/components/SchemaInitializerItem.d.ts +14 -0
- package/es/application/schema-initializer/components/SchemaInitializerItemGroup.d.ts +9 -0
- package/es/application/schema-initializer/components/SchemaInitializerItems.d.ts +8 -0
- package/es/application/schema-initializer/components/SchemaInitializerSelect.d.ts +11 -0
- package/es/application/schema-initializer/components/SchemaInitializerSubMenu.d.ts +17 -0
- package/es/application/schema-initializer/components/SchemaInitializerSwitch.d.ts +8 -0
- package/es/application/schema-initializer/components/index.d.ts +10 -0
- package/es/application/schema-initializer/components/style.d.ts +1 -0
- package/es/application/schema-initializer/context/index.d.ts +16 -0
- package/es/application/schema-initializer/hoc/index.d.ts +3 -0
- package/es/application/schema-initializer/hooks/index.d.ts +19 -0
- package/es/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.d.ts +10 -0
- package/es/application/schema-initializer/index.d.ts +7 -0
- package/es/application/schema-initializer/types.d.ts +80 -0
- package/es/application/schema-settings/SchemaSettings.d.ts +10 -0
- package/es/application/schema-settings/SchemaSettingsDefaults.d.ts +2 -0
- package/es/application/schema-settings/SchemaSettingsManager.d.ts +23 -0
- package/es/application/schema-settings/components/SchemaSettingsChildren.d.ts +7 -0
- package/es/application/schema-settings/components/SchemaSettingsIcon.d.ts +6 -0
- package/es/application/schema-settings/components/SchemaSettingsWrapper.d.ts +6 -0
- package/es/application/schema-settings/components/index.d.ts +2 -0
- package/es/application/schema-settings/context/index.d.ts +3 -0
- package/es/application/schema-settings/hooks/index.d.ts +18 -0
- package/es/application/schema-settings/index.d.ts +6 -0
- package/es/application/schema-settings/types.d.ts +62 -0
- package/es/application/schema-toolbar/context/index.d.ts +4 -0
- package/es/application/schema-toolbar/hooks/index.d.ts +9 -0
- package/es/application/schema-toolbar/index.d.ts +2 -0
- package/es/application/utils/globalDeps.d.ts +5 -0
- package/es/application/utils/index.d.ts +3 -0
- package/es/application/utils/remotePlugins.d.ts +36 -0
- package/es/async-data-provider/index.d.ts +18 -0
- package/es/block-provider/BlockProvider.d.ts +76 -0
- package/es/block-provider/DetailsBlockProvider.d.ts +15 -0
- package/es/block-provider/FilterFormBlockProvider.d.ts +2 -0
- package/es/block-provider/FormBlockProvider.d.ts +55 -0
- package/es/block-provider/FormFieldProvider.d.ts +8 -0
- package/es/block-provider/MobileProvider.d.ts +5 -0
- package/es/block-provider/PageLayout.d.ts +7 -0
- package/es/block-provider/TableBlockProvider.d.ts +5 -0
- package/es/block-provider/TableFieldProvider.d.ts +41 -0
- package/es/block-provider/TableSelectorProvider.d.ts +36 -0
- package/es/block-provider/TreeBlockProvider.d.ts +10 -0
- package/es/block-provider/hooks/index.d.ts +119 -0
- package/es/block-provider/hooks/useDataBlockSourceId.d.ts +15 -0
- package/es/block-provider/hooks/useFormActiveFields.d.ts +23 -0
- package/es/block-provider/hooks/useIsMobile.d.ts +1 -0
- package/es/block-provider/hooks/useParsedFilter.d.ts +5 -0
- package/es/block-provider/index.d.ts +11 -0
- package/es/built-in/acl/ACLProvider.d.ts +26 -0
- package/es/built-in/acl/ACLShortcut.d.ts +2 -0
- package/es/built-in/acl/Configuration/ConfigureCenter.d.ts +3 -0
- package/es/built-in/acl/Configuration/MenuConfigure.d.ts +2 -0
- package/es/built-in/acl/Configuration/MenuItemsProvider.d.ts +4 -0
- package/es/built-in/acl/Configuration/PermisionProvider.d.ts +4 -0
- package/es/built-in/acl/Configuration/RoleConfigure.d.ts +2 -0
- package/es/built-in/acl/Configuration/RoleTable.d.ts +3 -0
- package/es/built-in/acl/Configuration/RolesResourcesActions.d.ts +3 -0
- package/es/built-in/acl/Configuration/ScopeSelect.d.ts +3 -0
- package/es/built-in/acl/Configuration/StrategyActions.d.ts +2 -0
- package/es/built-in/acl/Configuration/index.d.ts +9 -0
- package/es/built-in/acl/Configuration/schemas/roles.d.ts +2 -0
- package/es/built-in/acl/Configuration/schemas/scopes.d.ts +11 -0
- package/es/built-in/acl/Configuration/schemas/useRoleResourceValues.d.ts +4 -0
- package/es/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.d.ts +3 -0
- package/es/built-in/acl/index.d.ts +7 -0
- package/es/built-in/acl/style.d.ts +1 -0
- package/es/built-in/admin-layout/AdminContent.d.ts +2 -0
- package/es/built-in/admin-layout/AdminTabs.d.ts +2 -0
- package/es/built-in/admin-layout/NoticeArea.d.ts +2 -0
- package/es/built-in/admin-layout/components/AddNewButton.d.ts +2 -0
- package/es/built-in/admin-layout/components/WelcomeCard.d.ts +2 -0
- package/es/built-in/admin-layout/index.d.ts +11 -0
- package/es/built-in/admin-layout/style.d.ts +14 -0
- package/es/built-in/assistant/Assistant.provider.d.ts +4 -0
- package/es/built-in/assistant/ai-chat/index.d.ts +8 -0
- package/es/built-in/assistant/calculator/AutoScalingText.d.ts +4 -0
- package/es/built-in/assistant/calculator/Calculator.d.ts +2 -0
- package/es/built-in/assistant/calculator/CalculatorDisplay.d.ts +5 -0
- package/es/built-in/assistant/calculator/CalculatorKey.d.ts +6 -0
- package/es/built-in/assistant/calculator/CalculatorProvider.d.ts +10 -0
- package/es/built-in/assistant/calculator/Draggable.d.ts +8 -0
- package/es/built-in/assistant/calculator/style.d.ts +3 -0
- package/es/built-in/assistant/index.d.ts +4 -0
- package/es/built-in/assistant/search-and-jump/index.d.ts +16 -0
- package/es/built-in/attachment-preview/index.d.ts +4 -0
- package/es/built-in/attachment-preview/interface.d.ts +11 -0
- package/es/built-in/attachment-preview/previewers/file-default.d.ts +8 -0
- package/es/built-in/attachment-preview/previewers/file-pdf.d.ts +9 -0
- package/es/built-in/attachment-preview/previewers/file-pdf.style.d.ts +5 -0
- package/es/built-in/attachment-preview/previewers/file-sheet.d.ts +20 -0
- package/es/built-in/attachment-preview/previewers/file-sheet.style.d.ts +5 -0
- package/es/built-in/attachment-preview/previewers/image-jpeg.d.ts +7 -0
- package/es/built-in/attachment-preview/previewers/image-png.d.ts +7 -0
- package/es/built-in/attachment-preview/previewers/image-svg.d.ts +7 -0
- package/es/built-in/attachment-preview/previewers/index.d.ts +6 -0
- package/es/built-in/block-schema-component/index.d.ts +6 -0
- package/es/built-in/built-in-collections/index.d.ts +6 -0
- package/es/built-in/context-menu/ContextMenu.provider.d.ts +4 -0
- package/es/built-in/context-menu/ContextMenuItemsProps.d.ts +46 -0
- package/es/built-in/context-menu/index.d.ts +5 -0
- package/es/built-in/context-menu/useContextMenu.d.ts +11 -0
- package/es/built-in/document-title/index.d.ts +19 -0
- package/es/built-in/dynamic-page/DynamicPage.d.ts +2 -0
- package/es/built-in/dynamic-page/index.d.ts +22 -0
- package/es/built-in/dynamic-page/style.d.ts +27 -0
- package/es/built-in/dynamic-page/utils.d.ts +28 -0
- package/es/built-in/index.d.ts +13 -0
- package/es/built-in/locale/LocalePlugin.d.ts +5 -0
- package/es/built-in/locale/loadConstrueLocale.d.ts +1 -0
- package/es/built-in/page-style/CustomAdminHeader.d.ts +2 -0
- package/es/built-in/page-style/PageStyle.provider.d.ts +11 -0
- package/es/built-in/page-style/TabContent.d.ts +7 -0
- package/es/built-in/page-style/TabHeader.d.ts +8 -0
- package/es/built-in/page-style/index.d.ts +4 -0
- package/es/built-in/page-style/usePageStyle.d.ts +1 -0
- package/es/built-in/page-style/useTabSettings.d.ts +10 -0
- package/es/built-in/pinned-list/PinnedPluginListProvider.d.ts +6 -0
- package/es/built-in/pinned-list/context.d.ts +3 -0
- package/es/built-in/pinned-list/index.d.ts +6 -0
- package/es/built-in/pm/PluginCard.d.ts +7 -0
- package/es/built-in/pm/PluginDetail.d.ts +8 -0
- package/es/built-in/pm/PluginDocument.d.ts +7 -0
- package/es/built-in/pm/PluginForm/form/PluginNpmForm.d.ts +10 -0
- package/es/built-in/pm/PluginForm/form/PluginUploadForm.d.ts +9 -0
- package/es/built-in/pm/PluginForm/form/PluginUrlForm.d.ts +9 -0
- package/es/built-in/pm/PluginForm/modal/PluginAddModal.d.ts +7 -0
- package/es/built-in/pm/PluginForm/modal/PluginUpgradeModal.d.ts +9 -0
- package/es/built-in/pm/PluginManager.d.ts +19 -0
- package/es/built-in/pm/index.d.ts +11 -0
- package/es/built-in/pm/style.d.ts +50 -0
- package/es/built-in/pm/types.d.ts +25 -0
- package/es/built-in/quick-access/Action.d.ts +2 -0
- package/es/built-in/quick-access/Block.d.ts +5 -0
- package/es/built-in/quick-access/CustomRequestActionSchemaInitializerItem.d.ts +4 -0
- package/es/built-in/quick-access/LinkActionSchemaInitializerItem.d.ts +4 -0
- package/es/built-in/quick-access/ModalActionSchemaInitializerItem.d.ts +2 -0
- package/es/built-in/quick-access/PopupActionSchemaInitializerItem.d.ts +4 -0
- package/es/built-in/quick-access/SchemaSettingsBlockTitleItem.d.ts +2 -0
- package/es/built-in/quick-access/blockInitializerItem.d.ts +2 -0
- package/es/built-in/quick-access/blockSchema.d.ts +2 -0
- package/es/built-in/quick-access/blockSettings.d.ts +6 -0
- package/es/built-in/quick-access/configureActions.d.ts +2 -0
- package/es/built-in/quick-access/index.d.ts +4 -0
- package/es/built-in/scroll-assistant/ScrollAssistant.provider.d.ts +4 -0
- package/es/built-in/scroll-assistant/ScrollAssistantStatus.provider.d.ts +8 -0
- package/es/built-in/scroll-assistant/index.d.ts +13 -0
- package/es/built-in/scroll-assistant/useJoystick.d.ts +1 -0
- package/es/built-in/setting-layout/AdminSettings.d.ts +3 -0
- package/es/built-in/setting-layout/SettingLayout.d.ts +8 -0
- package/es/built-in/setting-layout/SettingsCenterDropdown.d.ts +2 -0
- package/es/built-in/system-settings/SystemSettingsProvider.d.ts +7 -0
- package/es/built-in/system-settings/SystemSettingsShortcut.d.ts +2 -0
- package/es/built-in/system-settings/index.d.ts +6 -0
- package/es/built-in/system-version/SystemVersion.provider.d.ts +4 -0
- package/es/built-in/system-version/index.d.ts +4 -0
- package/es/built-in/user-settings/UserSettingsLayout.d.ts +2 -0
- package/es/built-in/user-settings/index.d.ts +4 -0
- package/es/built-in/user-settings/style.d.ts +50 -0
- package/es/collection-manager/CollectionHistoryProvider.d.ts +8 -0
- package/es/collection-manager/CollectionManagerProvider.d.ts +8 -0
- package/es/collection-manager/CollectionManagerSchemaComponentProvider.d.ts +2 -0
- package/es/collection-manager/CollectionProvider_deprecated.d.ts +12 -0
- package/es/collection-manager/Configuration/AddCollectionAction.d.ts +3 -0
- package/es/collection-manager/Configuration/AddFieldAction.d.ts +6 -0
- package/es/collection-manager/Configuration/AddSubFieldAction.d.ts +2 -0
- package/es/collection-manager/Configuration/DeleteCollectionAction.d.ts +18 -0
- package/es/collection-manager/Configuration/EditCollectionAction.d.ts +7 -0
- package/es/collection-manager/Configuration/EditFieldAction.d.ts +3 -0
- package/es/collection-manager/Configuration/EditSubFieldAction.d.ts +2 -0
- package/es/collection-manager/Configuration/ImportCollectionMetaAction.d.ts +2 -0
- package/es/collection-manager/Configuration/OverridingCollectionField.d.ts +3 -0
- package/es/collection-manager/Configuration/SyncFieldsAction.d.ts +3 -0
- package/es/collection-manager/Configuration/SyncSQLFieldsAction.d.ts +4 -0
- package/es/collection-manager/Configuration/ViewInheritedField.d.ts +3 -0
- package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +2 -0
- package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +2 -0
- package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +2 -0
- package/es/collection-manager/Configuration/components/FieldSummary.d.ts +5 -0
- package/es/collection-manager/Configuration/components/Summary.d.ts +6 -0
- package/es/collection-manager/Configuration/components/TemplateSummary.d.ts +7 -0
- package/es/collection-manager/Configuration/components/index.d.ts +9 -0
- package/es/collection-manager/Configuration/index.d.ts +18 -0
- package/es/collection-manager/Configuration/interfaces.d.ts +16 -0
- package/es/collection-manager/ResourceActionProvider.d.ts +37 -0
- package/es/collection-manager/action-hooks.d.ts +82 -0
- package/es/collection-manager/collectionPlugin.d.ts +7 -0
- package/es/collection-manager/context.d.ts +4 -0
- package/es/collection-manager/hooks/index.d.ts +4 -0
- package/es/collection-manager/hooks/useCollectionDataSource.d.ts +1 -0
- package/es/collection-manager/hooks/useCollectionField_deprecated.d.ts +4 -0
- package/es/collection-manager/hooks/useCollectionManager_deprecated.d.ts +54 -0
- package/es/collection-manager/hooks/useCollection_deprecated.d.ts +45 -0
- package/es/collection-manager/hooks/useDialect.d.ts +5 -0
- package/es/collection-manager/index.d.ts +21 -0
- package/es/collection-manager/interfaces/checkbox.d.ts +60 -0
- package/es/collection-manager/interfaces/checkboxGroup.d.ts +130 -0
- package/es/collection-manager/interfaces/chinaRegion.d.ts +102 -0
- package/es/collection-manager/interfaces/collection.d.ts +137 -0
- package/es/collection-manager/interfaces/color.d.ts +55 -0
- package/es/collection-manager/interfaces/components/index.d.ts +7 -0
- package/es/collection-manager/interfaces/createdAt.d.ts +70 -0
- package/es/collection-manager/interfaces/createdBy.d.ts +54 -0
- package/es/collection-manager/interfaces/datetime.d.ts +79 -0
- package/es/collection-manager/interfaces/email.d.ts +77 -0
- package/es/collection-manager/interfaces/icon.d.ts +36 -0
- package/es/collection-manager/interfaces/id.d.ts +62 -0
- package/es/collection-manager/interfaces/index.d.ts +39 -0
- package/es/collection-manager/interfaces/input.d.ts +170 -0
- package/es/collection-manager/interfaces/integer.d.ts +166 -0
- package/es/collection-manager/interfaces/json.d.ts +72 -0
- package/es/collection-manager/interfaces/linkTo.d.ts +82 -0
- package/es/collection-manager/interfaces/m2m.d.ts +275 -0
- package/es/collection-manager/interfaces/m2o.d.ts +222 -0
- package/es/collection-manager/interfaces/markdown.d.ts +88 -0
- package/es/collection-manager/interfaces/multipleSelect.d.ts +133 -0
- package/es/collection-manager/interfaces/nanoid.d.ts +69 -0
- package/es/collection-manager/interfaces/number.d.ts +133 -0
- package/es/collection-manager/interfaces/o2m.d.ts +252 -0
- package/es/collection-manager/interfaces/o2o.d.ts +658 -0
- package/es/collection-manager/interfaces/password.d.ts +84 -0
- package/es/collection-manager/interfaces/percent.d.ts +147 -0
- package/es/collection-manager/interfaces/phone.d.ts +75 -0
- package/es/collection-manager/interfaces/properties/index.d.ts +117 -0
- package/es/collection-manager/interfaces/properties/operators.d.ts +238 -0
- package/es/collection-manager/interfaces/radioGroup.d.ts +133 -0
- package/es/collection-manager/interfaces/richText.d.ts +90 -0
- package/es/collection-manager/interfaces/select.d.ts +138 -0
- package/es/collection-manager/interfaces/sort.d.ts +123 -0
- package/es/collection-manager/interfaces/subTable.d.ts +164 -0
- package/es/collection-manager/interfaces/tableoid.d.ts +51 -0
- package/es/collection-manager/interfaces/textarea.d.ts +90 -0
- package/es/collection-manager/interfaces/time.d.ts +67 -0
- package/es/collection-manager/interfaces/types.d.ts +30 -0
- package/es/collection-manager/interfaces/unixTimestamp.d.ts +71 -0
- package/es/collection-manager/interfaces/updatedAt.d.ts +70 -0
- package/es/collection-manager/interfaces/updatedBy.d.ts +54 -0
- package/es/collection-manager/interfaces/url.d.ts +58 -0
- package/es/collection-manager/interfaces/uuid.d.ts +56 -0
- package/es/collection-manager/mixins/InheritanceCollectionMixin.d.ts +33 -0
- package/es/collection-manager/sub-table.d.ts +20 -0
- package/es/collection-manager/templates/components/PresetFields.d.ts +2 -0
- package/es/collection-manager/templates/components/PreviewFields.d.ts +2 -0
- package/es/collection-manager/templates/components/PreviewTable.d.ts +2 -0
- package/es/collection-manager/templates/components/sql-collection/FieldsConfigure.d.ts +2 -0
- package/es/collection-manager/templates/components/sql-collection/PreviewTable.d.ts +2 -0
- package/es/collection-manager/templates/components/sql-collection/SQLInput.d.ts +4 -0
- package/es/collection-manager/templates/components/sql-collection/SQLRequestProvider.d.ts +5 -0
- package/es/collection-manager/templates/components/sql-collection/index.d.ts +4 -0
- package/es/collection-manager/templates/expression.d.ts +55 -0
- package/es/collection-manager/templates/general.d.ts +11 -0
- package/es/collection-manager/templates/import.d.ts +11 -0
- package/es/collection-manager/templates/index.d.ts +6 -0
- package/es/collection-manager/templates/properties/index.d.ts +59 -0
- package/es/collection-manager/templates/sql.d.ts +68 -0
- package/es/collection-manager/templates/tree.d.ts +75 -0
- package/es/collection-manager/templates/types.d.ts +57 -0
- package/es/collection-manager/templates/view.d.ts +114 -0
- package/es/collection-manager/types.d.ts +21 -0
- package/es/collection-manager/utils.d.ts +2 -0
- package/es/common/SelectWithTitle.d.ts +9 -0
- package/es/common/appInfo/CurrentAppInfoProvider.d.ts +12 -0
- package/es/common/appInfo/index.d.ts +1 -0
- package/es/common/index.d.ts +3 -0
- package/es/common/useFieldComponentName.d.ts +1 -0
- package/es/common/useNiceDropdownHeight.d.ts +5 -0
- package/es/data-source/collection/AssociationProvider.d.ts +14 -0
- package/es/data-source/collection/Collection.d.ts +125 -0
- package/es/data-source/collection/CollectionManager.d.ts +39 -0
- package/es/data-source/collection/CollectionManagerProvider.d.ts +12 -0
- package/es/data-source/collection/CollectionProvider.d.ts +11 -0
- package/es/data-source/collection/ExtendCollectionsProvider.d.ts +9 -0
- package/es/data-source/collection/index.d.ts +6 -0
- package/es/data-source/collection/utils.d.ts +50 -0
- package/es/data-source/collection-field/CollectionField.d.ts +11 -0
- package/es/data-source/collection-field/CollectionFieldProvider.d.ts +11 -0
- package/es/data-source/collection-field/index.d.ts +2 -0
- package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +51 -0
- package/es/data-source/collection-field-interface/CollectionFieldInterfaceManager.d.ts +29 -0
- package/es/data-source/collection-field-interface/index.d.ts +2 -0
- package/es/data-source/collection-record/CollectionRecord.d.ts +13 -0
- package/es/data-source/collection-record/CollectionRecordProvider.d.ts +14 -0
- package/es/data-source/collection-record/index.d.ts +2 -0
- package/es/data-source/collection-record/isNewRecord.d.ts +12 -0
- package/es/data-source/collection-template/CollectionTemplate.d.ts +62 -0
- package/es/data-source/collection-template/CollectionTemplateManager.d.ts +10 -0
- package/es/data-source/collection-template/index.d.ts +2 -0
- package/es/data-source/commonsSettingsItem/fieldComponent.d.ts +2 -0
- package/es/data-source/commonsSettingsItem/index.d.ts +1 -0
- package/es/data-source/components/CollectionDeletedPlaceholder.d.ts +10 -0
- package/es/data-source/components/DataSourceApplicationProvider.d.ts +11 -0
- package/es/data-source/components/index.d.ts +2 -0
- package/es/data-source/data-block/DataBlockProvider.d.ts +73 -0
- package/es/data-source/data-block/DataBlockRequestProvider.d.ts +9 -0
- package/es/data-source/data-block/DataBlockResourceProvider.d.ts +7 -0
- package/es/data-source/data-block/context/ConfigSetting.provider.d.ts +7 -0
- package/es/data-source/data-block/index.d.ts +4 -0
- package/es/data-source/data-source/DataSource.d.ts +41 -0
- package/es/data-source/data-source/DataSourceManager.d.ts +47 -0
- package/es/data-source/data-source/DataSourceManagerProvider.d.ts +9 -0
- package/es/data-source/data-source/DataSourceProvider.d.ts +10 -0
- package/es/data-source/data-source/index.d.ts +4 -0
- package/es/data-source/index.d.ts +10 -0
- package/es/data-source/utils.d.ts +4 -0
- package/es/filter-provider/FilterProvider.d.ts +82 -0
- package/es/filter-provider/index.d.ts +2 -0
- package/es/filter-provider/utils.d.ts +44 -0
- package/es/flag-provider/FlagProvider.d.ts +26 -0
- package/es/flag-provider/hooks/useFlag.d.ts +1 -0
- package/es/flag-provider/index.d.ts +2 -0
- package/es/hooks/index.d.ts +2 -0
- package/es/hooks/useAdminSchemaUid.d.ts +1 -0
- package/es/hooks/useMenuItem.d.ts +39 -0
- package/es/hooks/useViewport.d.ts +1 -0
- package/es/i18n/i18n.d.ts +3 -0
- package/es/i18n/index.d.ts +1 -0
- package/es/icon/Icon.d.ts +16 -0
- package/es/icon/index.d.ts +1 -0
- package/es/icon/preloaded.d.ts +10 -0
- package/es/index.css +1 -0
- package/es/index.d.ts +47 -0
- package/es/index.mjs +61137 -0
- package/es/locale/index.d.ts +272 -0
- package/es/md-CvgT1iV9.mjs +60 -0
- package/es/modules/actions/ActionSchemaToolbar.d.ts +2 -0
- package/es/modules/actions/add-child/CreateChildInitializer.d.ts +2 -0
- package/es/modules/actions/add-child/addChildActionSettings.d.ts +2 -0
- package/es/modules/actions/add-new/CreateActionInitializer.d.ts +2 -0
- package/es/modules/actions/add-new/addNewActionSettings.d.ts +2 -0
- package/es/modules/actions/add-new/createFormBlockInitializers.d.ts +2 -0
- package/es/modules/actions/add-record/CustomizeAddRecordActionInitializer.d.ts +2 -0
- package/es/modules/actions/add-record/customizeAddRecordActionSettings.d.ts +2 -0
- package/es/modules/actions/add-record/customizeCreateFormBlockInitializers.d.ts +2 -0
- package/es/modules/actions/bulk-destroy/BulkDestroyActionInitializer.d.ts +2 -0
- package/es/modules/actions/bulk-destroy/bulkDeleteActionSettings.d.ts +2 -0
- package/es/modules/actions/delete/DestroyActionInitializer.d.ts +2 -0
- package/es/modules/actions/delete/deleteActionSettings.d.ts +2 -0
- package/es/modules/actions/disassociate/DisassociateActionInitializer.d.ts +2 -0
- package/es/modules/actions/disassociate/disassociateActionSettings.d.ts +2 -0
- package/es/modules/actions/expand-collapse/ExpandableActionInitializer.d.ts +2 -0
- package/es/modules/actions/expand-collapse/expendableActionSettings.d.ts +2 -0
- package/es/modules/actions/filter/FilterActionInitializer.d.ts +2 -0
- package/es/modules/actions/filter/filterActionSettings.d.ts +2 -0
- package/es/modules/actions/link/customizeLinkActionSettings.d.ts +4 -0
- package/es/modules/actions/link/hooks.d.ts +121 -0
- package/es/modules/actions/refresh/RefreshActionInitializer.d.ts +2 -0
- package/es/modules/actions/refresh/refreshActionSettings.d.ts +2 -0
- package/es/modules/actions/save-record/SaveRecordActionInitializer.d.ts +2 -0
- package/es/modules/actions/save-record/customizeSaveRecordActionSettings.d.ts +2 -0
- package/es/modules/actions/submit/CreateSubmitActionInitializer.d.ts +2 -0
- package/es/modules/actions/submit/UpdateSubmitActionInitializer.d.ts +2 -0
- package/es/modules/actions/submit/createSubmitActionSettings.d.ts +4 -0
- package/es/modules/actions/submit/updateSubmitActionSettings.d.ts +3 -0
- package/es/modules/actions/update-record/UpdateRecordActionInitializer.d.ts +2 -0
- package/es/modules/actions/update-record/customizeUpdateRecordActionSettings.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/PopupActionInitializer.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/RecordFormBlockInitializers.d.ts +5 -0
- package/es/modules/actions/view-edit-popup/UpdateActionInitializer.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/ViewActionInitializer.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/customizePopupActionSettings.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/editActionSettings.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/viewActionSettings.d.ts +2 -0
- package/es/modules/blocks/BlockSchemaToolbar.d.ts +2 -0
- package/es/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.d.ts +6 -0
- package/es/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.d.ts +26 -0
- package/es/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.d.ts +9 -0
- package/es/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.d.ts +7 -0
- package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.d.ts +7 -0
- package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.d.ts +8 -0
- package/es/modules/blocks/data-blocks/details-single/createDetailsUISchema.d.ts +11 -0
- package/es/modules/blocks/data-blocks/details-single/detailsBlockSettings.d.ts +7 -0
- package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.d.ts +12 -0
- package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/CreateFormBlockInitializer.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/FilterItemCustomSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/FormBlockInitializer.d.ts +93 -0
- package/es/modules/blocks/data-blocks/form/FormItemSchemaToolbar.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/RecordFormBlockInitializer.d.ts +13 -0
- package/es/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.d.ts +14 -0
- package/es/modules/blocks/data-blocks/form/createEditFormBlockUISchema.d.ts +14 -0
- package/es/modules/blocks/data-blocks/form/createFormActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/createFormBlockSettings.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/editFormBlockSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/fieldSettingsFormItem.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/formActionInitializers.d.ts +6 -0
- package/es/modules/blocks/data-blocks/form/formItemInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.d.ts +6 -0
- package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/index.d.ts +14 -0
- package/es/modules/blocks/data-blocks/form/updateFormActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.d.ts +24 -0
- package/es/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.d.ts +8 -0
- package/es/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.d.ts +4 -0
- package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.d.ts +1 -0
- package/es/modules/blocks/data-blocks/grid-card/utils.d.ts +1 -0
- package/es/modules/blocks/data-blocks/list/ListActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/list/ListBlockInitializer.d.ts +24 -0
- package/es/modules/blocks/data-blocks/list/createListBlockUISchema.d.ts +8 -0
- package/es/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/list/listBlockSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/list/listItemActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/TableActionColumnInitializers.d.ts +4 -0
- package/es/modules/blocks/data-blocks/table/TableActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/TableBlockInitializer.d.ts +20 -0
- package/es/modules/blocks/data-blocks/table/TableColumnInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/createTableBlockUISchema.d.ts +7 -0
- package/es/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.d.ts +5 -0
- package/es/modules/blocks/data-blocks/table/hooks/useTableBlockProps.d.ts +19 -0
- package/es/modules/blocks/data-blocks/table/index.d.ts +9 -0
- package/es/modules/blocks/data-blocks/table/tableBlockSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/tableColumnSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/utils.d.ts +1 -0
- package/es/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.d.ts +6 -0
- package/es/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.d.ts +1 -0
- package/es/modules/blocks/data-blocks/table-selector/index.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.d.ts +10 -0
- package/es/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.d.ts +6 -0
- package/es/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.d.ts +6 -0
- package/es/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.d.ts +1 -0
- package/es/modules/blocks/filter-blocks/form/FilterFormActionInitializers.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.d.ts +10 -0
- package/es/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.d.ts +62 -0
- package/es/modules/blocks/filter-blocks/form/filterFormBlockSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/form/filterFormItemInitializers.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.d.ts +1 -0
- package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.d.ts +3 -0
- package/es/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.d.ts +67 -0
- package/es/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.d.ts +2 -0
- package/es/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.d.ts +2 -0
- package/es/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.d.ts +2 -0
- package/es/modules/blocks/other-blocks/markdown/markdownBlockSettings.d.ts +2 -0
- package/es/modules/blocks/useParentRecordCommon.d.ts +7 -0
- package/es/modules/blocks/useSourceId.d.ts +1 -0
- package/es/modules/blocks/useSourceKey.d.ts +6 -0
- package/es/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Cascader/cascaderComponentFieldSettings.d.ts +5 -0
- package/es/modules/fields/component/Checkbox/checkboxComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/DatePicker/datePickerComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/FileManager/fileManagerComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Nester/subformComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Picker/TableSelectorInitializers.d.ts +2 -0
- package/es/modules/fields/component/Picker/recordPickerComponentFieldSettings.d.ts +3 -0
- package/es/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Radio/radioComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Select/selectComponentFieldSettings.d.ts +3 -0
- package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.d.ts +80 -0
- package/es/modules/fields/component/Tag/tagComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/initializer/CollectionFieldInitializer.d.ts +2 -0
- package/es/modules/fields/initializer/TableCollectionFieldInitializer.d.ts +2 -0
- package/es/modules/menu/GroupItem.d.ts +2 -0
- package/es/modules/menu/LinkMenuItem.d.ts +2 -0
- package/es/modules/menu/PageMenuItem.d.ts +2 -0
- package/es/modules/menu/menuItemInitializer.d.ts +6 -0
- package/es/modules/page/BlockInitializers.d.ts +2 -0
- package/es/modules/variable/DeclareVariable.d.ts +18 -0
- package/es/modules/variable/useVariable.d.ts +14 -0
- package/es/powered-by/index.d.ts +2 -0
- package/es/record-provider/index.d.ts +27 -0
- package/es/route-switch/RouteSchemaComponent.d.ts +2 -0
- package/es/route-switch/index.d.ts +1 -0
- package/es/schema-component/antd/AntdSchemaComponentProvider.d.ts +7 -0
- package/es/schema-component/antd/__builtins__/hooks/index.d.ts +3 -0
- package/es/schema-component/antd/__builtins__/hooks/useConfig.d.ts +1 -0
- package/es/schema-component/antd/__builtins__/hooks/usePrefixCls.d.ts +3 -0
- package/es/schema-component/antd/__builtins__/hooks/useToken.d.ts +7 -0
- package/es/schema-component/antd/__builtins__/index.d.ts +4 -0
- package/es/schema-component/antd/__builtins__/loading.d.ts +1 -0
- package/es/schema-component/antd/__builtins__/portal.d.ts +10 -0
- package/es/schema-component/antd/__builtins__/render.d.ts +9 -0
- package/es/schema-component/antd/__builtins__/style.d.ts +29 -0
- package/es/schema-component/antd/action/Action.Area.d.ts +12 -0
- package/es/schema-component/antd/action/Action.Area.style.d.ts +4 -0
- package/es/schema-component/antd/action/Action.Container.d.ts +3 -0
- package/es/schema-component/antd/action/Action.Designer.d.ts +30 -0
- package/es/schema-component/antd/action/Action.Drawer.d.ts +5 -0
- package/es/schema-component/antd/action/Action.Drawer.style.d.ts +1 -0
- package/es/schema-component/antd/action/Action.Link.d.ts +2 -0
- package/es/schema-component/antd/action/Action.Modal.d.ts +6 -0
- package/es/schema-component/antd/action/Action.Page.d.ts +3 -0
- package/es/schema-component/antd/action/Action.Popover.d.ts +0 -0
- package/es/schema-component/antd/action/Action.Sheet.d.ts +3 -0
- package/es/schema-component/antd/action/Action.d.ts +3 -0
- package/es/schema-component/antd/action/Action.style.d.ts +2 -0
- package/es/schema-component/antd/action/ActionBar.d.ts +19 -0
- package/es/schema-component/antd/action/context.d.ts +23 -0
- package/es/schema-component/antd/action/hooks/useGetAriaLabelOfAction.d.ts +8 -0
- package/es/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.d.ts +7 -0
- package/es/schema-component/antd/action/hooks/useGetAriaLabelOfModal.d.ts +7 -0
- package/es/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.d.ts +7 -0
- package/es/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.d.ts +1 -0
- package/es/schema-component/antd/action/hooks/useSetAriaLabelForModal.d.ts +1 -0
- package/es/schema-component/antd/action/hooks/useSetAriaLabelForPopover.d.ts +1 -0
- package/es/schema-component/antd/action/hooks.d.ts +21 -0
- package/es/schema-component/antd/action/index.d.ts +10 -0
- package/es/schema-component/antd/action/types.d.ts +16 -0
- package/es/schema-component/antd/action/utils.d.ts +11 -0
- package/es/schema-component/antd/appends-tree-select/AppendsTreeSelect.d.ts +17 -0
- package/es/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.d.ts +17 -0
- package/es/schema-component/antd/appends-tree-select/index.d.ts +2 -0
- package/es/schema-component/antd/association-cascader/AssociationCascader.d.ts +7 -0
- package/es/schema-component/antd/association-cascader/index.d.ts +1 -0
- package/es/schema-component/antd/association-field/AssociationFieldProvider.d.ts +2 -0
- package/es/schema-component/antd/association-field/AssociationSelect.d.ts +15 -0
- package/es/schema-component/antd/association-field/Editable.d.ts +2 -0
- package/es/schema-component/antd/association-field/FileManager.d.ts +4 -0
- package/es/schema-component/antd/association-field/InternalCascadeSelect.d.ts +3 -0
- package/es/schema-component/antd/association-field/InternalCascader.d.ts +4 -0
- package/es/schema-component/antd/association-field/InternalDrawerSubTable.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalNester.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalPicker.d.ts +25 -0
- package/es/schema-component/antd/association-field/InternalPopoverNester.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalSubTable.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalTag.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalViewer.d.ts +3 -0
- package/es/schema-component/antd/association-field/Nester.d.ts +2 -0
- package/es/schema-component/antd/association-field/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/association-field/SubTable.d.ts +1 -0
- package/es/schema-component/antd/association-field/SubTabs/InternalCollapse.d.ts +8 -0
- package/es/schema-component/antd/association-field/SubTabs/hook.d.ts +1 -0
- package/es/schema-component/antd/association-field/SubTabs/index.d.ts +1 -0
- package/es/schema-component/antd/association-field/SubTabs/styles.d.ts +3 -0
- package/es/schema-component/antd/association-field/components/CreateRecordAction.d.ts +2 -0
- package/es/schema-component/antd/association-field/context.d.ts +9 -0
- package/es/schema-component/antd/association-field/hooks.d.ts +29 -0
- package/es/schema-component/antd/association-field/index.d.ts +2 -0
- package/es/schema-component/antd/association-field/schema.d.ts +131 -0
- package/es/schema-component/antd/association-field/util.d.ts +12 -0
- package/es/schema-component/antd/association-filter/ActionBarAssociationFilterAction.d.ts +7 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.Initializer.d.ts +5 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.Item.Designer.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.Item.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.Item.style.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.d.ts +15 -0
- package/es/schema-component/antd/association-filter/AssociationFilterDesignerDelete.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilterProvider.d.ts +1 -0
- package/es/schema-component/antd/association-filter/utilts.d.ts +2 -0
- package/es/schema-component/antd/association-select/AssociationSelect.d.ts +13 -0
- package/es/schema-component/antd/association-select/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/association-select/index.d.ts +1 -0
- package/es/schema-component/antd/association-select/useServiceOptions.d.ts +1 -0
- package/es/schema-component/antd/auto-complete/AutoComplete.d.ts +2 -0
- package/es/schema-component/antd/auto-complete/index.d.ts +1 -0
- package/es/schema-component/antd/block-item/BlockItem.d.ts +2 -0
- package/es/schema-component/antd/block-item/BlockToolbar.d.ts +11 -0
- package/es/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.d.ts +7 -0
- package/es/schema-component/antd/block-item/index.d.ts +1 -0
- package/es/schema-component/antd/block-item/useBlockToolbar.d.ts +13 -0
- package/es/schema-component/antd/card-item/CardItem.d.ts +9 -0
- package/es/schema-component/antd/card-item/index.d.ts +1 -0
- package/es/schema-component/antd/card-item/style.d.ts +2 -0
- package/es/schema-component/antd/cascader/Cascader.d.ts +3 -0
- package/es/schema-component/antd/cascader/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/cascader/defaultFieldNames.d.ts +5 -0
- package/es/schema-component/antd/cascader/index.d.ts +1 -0
- package/es/schema-component/antd/checkbox/Checkbox.d.ts +16 -0
- package/es/schema-component/antd/checkbox/index.d.ts +1 -0
- package/es/schema-component/antd/collection-select/CollectionSelect.d.ts +17 -0
- package/es/schema-component/antd/collection-select/index.d.ts +1 -0
- package/es/schema-component/antd/color-picker/ColorPicker.d.ts +3 -0
- package/es/schema-component/antd/color-picker/ReadPretty.d.ts +7 -0
- package/es/schema-component/antd/color-picker/index.d.ts +1 -0
- package/es/schema-component/antd/color-picker/util.d.ts +31 -0
- package/es/schema-component/antd/color-select/ColorSelect.d.ts +3 -0
- package/es/schema-component/antd/color-select/index.d.ts +1 -0
- package/es/schema-component/antd/cron/Cron.d.ts +10 -0
- package/es/schema-component/antd/cron/CronSet.d.ts +7 -0
- package/es/schema-component/antd/cron/index.d.ts +2 -0
- package/es/schema-component/antd/custom-cascader/CustomCascader.d.ts +3 -0
- package/es/schema-component/antd/custom-cascader/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/custom-cascader/defaultFieldNames.d.ts +5 -0
- package/es/schema-component/antd/custom-cascader/index.d.ts +1 -0
- package/es/schema-component/antd/date-picker/DatePicker.d.ts +13 -0
- package/es/schema-component/antd/date-picker/ReadPretty.d.ts +8 -0
- package/es/schema-component/antd/date-picker/index.d.ts +1 -0
- package/es/schema-component/antd/date-picker/util.d.ts +37 -0
- package/es/schema-component/antd/details/Details.d.ts +2 -0
- package/es/schema-component/antd/details/index.d.ts +1 -0
- package/es/schema-component/antd/error-fallback/ErrorFallback.d.ts +3 -0
- package/es/schema-component/antd/error-fallback/index.d.ts +1 -0
- package/es/schema-component/antd/expand-action/Expand.Action.Design.d.ts +7 -0
- package/es/schema-component/antd/expand-action/Expand.Action.d.ts +2 -0
- package/es/schema-component/antd/expand-action/index.d.ts +1 -0
- package/es/schema-component/antd/filter/DynamicComponent.d.ts +19 -0
- package/es/schema-component/antd/filter/Filter.Action.Designer.d.ts +4 -0
- package/es/schema-component/antd/filter/Filter.d.ts +1 -0
- package/es/schema-component/antd/filter/FilterAction.d.ts +3 -0
- package/es/schema-component/antd/filter/FilterGroup.d.ts +2 -0
- package/es/schema-component/antd/filter/FilterItem.d.ts +2 -0
- package/es/schema-component/antd/filter/FilterItems.d.ts +2 -0
- package/es/schema-component/antd/filter/SaveDefaultValue.d.ts +2 -0
- package/es/schema-component/antd/filter/context.d.ts +14 -0
- package/es/schema-component/antd/filter/index.d.ts +3 -0
- package/es/schema-component/antd/filter/useFilterActionProps.d.ts +20 -0
- package/es/schema-component/antd/filter/useOperators.d.ts +5 -0
- package/es/schema-component/antd/filter/useValues.d.ts +14 -0
- package/es/schema-component/antd/filter/utils.d.ts +1 -0
- package/es/schema-component/antd/form/Form.Designer.d.ts +2 -0
- package/es/schema-component/antd/form/Form.Settings.d.ts +5 -0
- package/es/schema-component/antd/form/Form.d.ts +13 -0
- package/es/schema-component/antd/form/index.d.ts +2 -0
- package/es/schema-component/antd/form-dialog/index.d.ts +28 -0
- package/es/schema-component/antd/form-item/FormItem.FilterFormDesigner.d.ts +2 -0
- package/es/schema-component/antd/form-item/FormItem.FilterFormSettings.d.ts +5 -0
- package/es/schema-component/antd/form-item/FormItem.Settings.d.ts +73 -0
- package/es/schema-component/antd/form-item/FormItem.d.ts +9 -0
- package/es/schema-component/antd/form-item/SchemaSettingOptions.d.ts +24 -0
- package/es/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.d.ts +8 -0
- package/es/schema-component/antd/form-item/hooks/useParseDefaultValue.d.ts +5 -0
- package/es/schema-component/antd/form-item/hooks/useSpecialCase.d.ts +59 -0
- package/es/schema-component/antd/form-item/index.d.ts +4 -0
- package/es/schema-component/antd/form-item/utils.d.ts +8 -0
- package/es/schema-component/antd/form-tab/index.d.ts +19 -0
- package/es/schema-component/antd/form-v2/Form.Designer.d.ts +4 -0
- package/es/schema-component/antd/form-v2/Form.FilterDesigner.d.ts +6 -0
- package/es/schema-component/antd/form-v2/Form.Settings.d.ts +13 -0
- package/es/schema-component/antd/form-v2/Form.d.ts +10 -0
- package/es/schema-component/antd/form-v2/FormField.d.ts +1 -0
- package/es/schema-component/antd/form-v2/Templates.d.ts +32 -0
- package/es/schema-component/antd/form-v2/index.d.ts +6 -0
- package/es/schema-component/antd/form-v2/utils.d.ts +21 -0
- package/es/schema-component/antd/grid/Block.d.ts +2 -0
- package/es/schema-component/antd/grid/Grid.d.ts +5 -0
- package/es/schema-component/antd/grid/Grid.style.d.ts +2 -0
- package/es/schema-component/antd/grid/index.d.ts +2 -0
- package/es/schema-component/antd/grid-card/GridCard.Decorator.d.ts +5 -0
- package/es/schema-component/antd/grid-card/GridCard.Decorator.style.d.ts +2 -0
- package/es/schema-component/antd/grid-card/GridCard.Designer.d.ts +2 -0
- package/es/schema-component/antd/grid-card/GridCard.Item.d.ts +2 -0
- package/es/schema-component/antd/grid-card/GridCard.d.ts +11 -0
- package/es/schema-component/antd/grid-card/hooks.d.ts +13 -0
- package/es/schema-component/antd/grid-card/index.d.ts +1 -0
- package/es/schema-component/antd/grid-card/options.d.ts +20 -0
- package/es/schema-component/antd/icon-picker/IconFilterInput.d.ts +2 -0
- package/es/schema-component/antd/icon-picker/IconList.d.ts +2 -0
- package/es/schema-component/antd/icon-picker/IconPicker.d.ts +3 -0
- package/es/schema-component/antd/icon-picker/index.d.ts +1 -0
- package/es/schema-component/antd/index.d.ts +61 -0
- package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +8 -0
- package/es/schema-component/antd/input/Input.d.ts +14 -0
- package/es/schema-component/antd/input/Json.d.ts +10 -0
- package/es/schema-component/antd/input/ReadPretty.d.ts +22 -0
- package/es/schema-component/antd/input/index.d.ts +5 -0
- package/es/schema-component/antd/input/shared.d.ts +1 -0
- package/es/schema-component/antd/input-number/InputNumber.d.ts +7 -0
- package/es/schema-component/antd/input-number/ReadPretty.d.ts +8 -0
- package/es/schema-component/antd/input-number/index.d.ts +1 -0
- package/es/schema-component/antd/list/List.Decorator.d.ts +5 -0
- package/es/schema-component/antd/list/List.Designer.d.ts +5 -0
- package/es/schema-component/antd/list/List.Item.d.ts +2 -0
- package/es/schema-component/antd/list/List.d.ts +11 -0
- package/es/schema-component/antd/list/List.style.d.ts +2 -0
- package/es/schema-component/antd/list/hooks.d.ts +4 -0
- package/es/schema-component/antd/list/index.d.ts +1 -0
- package/es/schema-component/antd/markdown/Markdown.Void.Designer.d.ts +2 -0
- package/es/schema-component/antd/markdown/Markdown.Void.d.ts +1 -0
- package/es/schema-component/antd/markdown/Markdown.d.ts +4 -0
- package/es/schema-component/antd/markdown/index.d.ts +1 -0
- package/es/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.d.ts +5 -0
- package/es/schema-component/antd/markdown/md.d.ts +3 -0
- package/es/schema-component/antd/markdown/style.d.ts +1 -0
- package/es/schema-component/antd/markdown/util.d.ts +6 -0
- package/es/schema-component/antd/menu/Menu.Designer.d.ts +2 -0
- package/es/schema-component/antd/menu/Menu.d.ts +9 -0
- package/es/schema-component/antd/menu/Menu.styles.d.ts +8 -0
- package/es/schema-component/antd/menu/MenuItemInitializers/index.d.ts +6 -0
- package/es/schema-component/antd/menu/index.d.ts +3 -0
- package/es/schema-component/antd/menu/locale.d.ts +1 -0
- package/es/schema-component/antd/menu/util.d.ts +4 -0
- package/es/schema-component/antd/nanoIDInput/NanoIDInput.d.ts +6 -0
- package/es/schema-component/antd/nanoIDInput/index.d.ts +1 -0
- package/es/schema-component/antd/page/FixedBlock.d.ts +16 -0
- package/es/schema-component/antd/page/FixedBlockDesignerItem.d.ts +2 -0
- package/es/schema-component/antd/page/Page.Settings.d.ts +5 -0
- package/es/schema-component/antd/page/Page.d.ts +5 -0
- package/es/schema-component/antd/page/PageTab.Settings.d.ts +5 -0
- package/es/schema-component/antd/page/PageTabDesigner.d.ts +7 -0
- package/es/schema-component/antd/page/hooks/useIsBlockInPage.d.ts +6 -0
- package/es/schema-component/antd/page/index.d.ts +5 -0
- package/es/schema-component/antd/page/style.d.ts +1 -0
- package/es/schema-component/antd/pagination/index.d.ts +2 -0
- package/es/schema-component/antd/password/Password.d.ts +7 -0
- package/es/schema-component/antd/password/PasswordStrength.d.ts +8 -0
- package/es/schema-component/antd/password/index.d.ts +1 -0
- package/es/schema-component/antd/password/utils.d.ts +1 -0
- package/es/schema-component/antd/percent/Percent.d.ts +2 -0
- package/es/schema-component/antd/percent/index.d.ts +1 -0
- package/es/schema-component/antd/popover/Popover.d.ts +8 -0
- package/es/schema-component/antd/popover/index.d.ts +1 -0
- package/es/schema-component/antd/preview/Preview.d.ts +13 -0
- package/es/schema-component/antd/preview/index.d.ts +1 -0
- package/es/schema-component/antd/quick-edit/QuickEdit.d.ts +3 -0
- package/es/schema-component/antd/quick-edit/index.d.ts +1 -0
- package/es/schema-component/antd/radio/Radio.d.ts +8 -0
- package/es/schema-component/antd/radio/index.d.ts +1 -0
- package/es/schema-component/antd/record-picker/InputRecordPicker.d.ts +5 -0
- package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.d.ts +2 -0
- package/es/schema-component/antd/record-picker/RecordPicker.d.ts +1 -0
- package/es/schema-component/antd/record-picker/index.d.ts +6 -0
- package/es/schema-component/antd/record-picker/useFieldNames.d.ts +1 -0
- package/es/schema-component/antd/record-picker/util.d.ts +5 -0
- package/es/schema-component/antd/remote-select/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +32 -0
- package/es/schema-component/antd/remote-select/index.d.ts +1 -0
- package/es/schema-component/antd/remote-select/shared.d.ts +1 -0
- package/es/schema-component/antd/rich-text/RichText.d.ts +2 -0
- package/es/schema-component/antd/rich-text/index.d.ts +1 -0
- package/es/schema-component/antd/rich-text/style.d.ts +7 -0
- package/es/schema-component/antd/scroll-area/ScrollArea.d.ts +3 -0
- package/es/schema-component/antd/scroll-area/index.d.ts +1 -0
- package/es/schema-component/antd/select/FormulaSelect.d.ts +3 -0
- package/es/schema-component/antd/select/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/select/Select.d.ts +15 -0
- package/es/schema-component/antd/select/index.d.ts +2 -0
- package/es/schema-component/antd/select/utils.d.ts +14 -0
- package/es/schema-component/antd/space/index.d.ts +4 -0
- package/es/schema-component/antd/table/Table.Array.Designer.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Array.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +5 -0
- package/es/schema-component/antd/table/Table.Column.Decorator.d.ts +13 -0
- package/es/schema-component/antd/table/Table.Column.Designer.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Column.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Designer.d.ts +2 -0
- package/es/schema-component/antd/table/Table.RowActionDesigner.d.ts +2 -0
- package/es/schema-component/antd/table/Table.RowSelection.d.ts +7 -0
- package/es/schema-component/antd/table/Table.Void.Designer.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Void.d.ts +15 -0
- package/es/schema-component/antd/table/index.d.ts +1 -0
- package/es/schema-component/antd/table-v2/Table.ActionColumnDesigner.d.ts +2 -0
- package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +5 -0
- package/es/schema-component/antd/table-v2/Table.Column.Decorator.d.ts +13 -0
- package/es/schema-component/antd/table-v2/Table.Column.Designer.d.ts +10 -0
- package/es/schema-component/antd/table-v2/Table.Column.d.ts +2 -0
- package/es/schema-component/antd/table-v2/Table.Designer.d.ts +2 -0
- package/es/schema-component/antd/table-v2/Table.Index.d.ts +2 -0
- package/es/schema-component/antd/table-v2/Table.d.ts +1 -0
- package/es/schema-component/antd/table-v2/Table.styles.d.ts +13 -0
- package/es/schema-component/antd/table-v2/TableBlockDesigner.d.ts +3 -0
- package/es/schema-component/antd/table-v2/TableField.d.ts +1 -0
- package/es/schema-component/antd/table-v2/TableSelector.d.ts +1 -0
- package/es/schema-component/antd/table-v2/TableSelectorDesigner.d.ts +2 -0
- package/es/schema-component/antd/table-v2/components/ColumnFieldProvider.d.ts +6 -0
- package/es/schema-component/antd/table-v2/index.d.ts +5 -0
- package/es/schema-component/antd/table-v2/utils.d.ts +4 -0
- package/es/schema-component/antd/tabs/Tabs.Designer.d.ts +2 -0
- package/es/schema-component/antd/tabs/Tabs.d.ts +1 -0
- package/es/schema-component/antd/tabs/context.d.ts +8 -0
- package/es/schema-component/antd/tabs/index.d.ts +2 -0
- package/es/schema-component/antd/time-picker/ReadPretty.d.ts +3 -0
- package/es/schema-component/antd/time-picker/TimePicker.d.ts +6 -0
- package/es/schema-component/antd/time-picker/index.d.ts +1 -0
- package/es/schema-component/antd/tree/Tree.d.ts +2 -0
- package/es/schema-component/antd/tree/index.d.ts +2 -0
- package/es/schema-component/antd/tree-select/ReadPretty.d.ts +3 -0
- package/es/schema-component/antd/tree-select/TreeSelect.d.ts +2 -0
- package/es/schema-component/antd/tree-select/index.d.ts +1 -0
- package/es/schema-component/antd/unixTimestamp/UnixTimestamp.d.ts +2 -0
- package/es/schema-component/antd/unixTimestamp/index.d.ts +1 -0
- package/es/schema-component/antd/upload/ReadPretty.d.ts +17 -0
- package/es/schema-component/antd/upload/Upload.d.ts +5 -0
- package/es/schema-component/antd/upload/index.d.ts +1 -0
- package/es/schema-component/antd/upload/placeholder.d.ts +4 -0
- package/es/schema-component/antd/upload/shared.d.ts +61 -0
- package/es/schema-component/antd/upload/style.d.ts +1 -0
- package/es/schema-component/antd/variable/CodeMirror.d.ts +2 -0
- package/es/schema-component/antd/variable/Input.d.ts +2 -0
- package/es/schema-component/antd/variable/JSONInput.d.ts +2 -0
- package/es/schema-component/antd/variable/RawTextArea.d.ts +1 -0
- package/es/schema-component/antd/variable/TextArea.d.ts +5 -0
- package/es/schema-component/antd/variable/Variable.d.ts +15 -0
- package/es/schema-component/antd/variable/VariableSelect.d.ts +8 -0
- package/es/schema-component/antd/variable/VariableSelect.style.d.ts +2 -0
- package/es/schema-component/antd/variable/XButton.d.ts +3 -0
- package/es/schema-component/antd/variable/index.d.ts +1 -0
- package/es/schema-component/antd/variable/style.d.ts +90 -0
- package/es/schema-component/common/dnd-context/index.d.ts +3 -0
- package/es/schema-component/common/index.d.ts +2 -0
- package/es/schema-component/common/infinite-scroll/infinite-scroll.d.ts +8 -0
- package/es/schema-component/common/infinite-scroll/style.d.ts +4 -0
- package/es/schema-component/common/sortable-item/SortableItem.d.ts +17 -0
- package/es/schema-component/common/sortable-item/index.d.ts +1 -0
- package/es/schema-component/common/utils/logic.d.ts +11 -0
- package/es/schema-component/common/utils/uitls.d.ts +25 -0
- package/es/schema-component/context.d.ts +2 -0
- package/es/schema-component/core/DesignableSwitch.d.ts +2 -0
- package/es/schema-component/core/FormProvider.d.ts +2 -0
- package/es/schema-component/core/RemoteSchemaComponent.d.ts +15 -0
- package/es/schema-component/core/SchemaComponent.d.ts +16 -0
- package/es/schema-component/core/SchemaComponentOptions.d.ts +4 -0
- package/es/schema-component/core/SchemaComponentProvider.d.ts +6 -0
- package/es/schema-component/core/index.d.ts +12 -0
- package/es/schema-component/hooks/index.d.ts +12 -0
- package/es/schema-component/hooks/useAttach.d.ts +6 -0
- package/es/schema-component/hooks/useCompile.d.ts +8 -0
- package/es/schema-component/hooks/useComponent.d.ts +1 -0
- package/es/schema-component/hooks/useDesignable.d.ts +98 -0
- package/es/schema-component/hooks/useDesigner.d.ts +1 -0
- package/es/schema-component/hooks/useFieldComponentOptions.d.ts +4 -0
- package/es/schema-component/hooks/useFieldModeOptions.d.ts +4 -0
- package/es/schema-component/hooks/useFieldProps.d.ts +2 -0
- package/es/schema-component/hooks/useFieldTitle.d.ts +1 -0
- package/es/schema-component/hooks/useProps.d.ts +6 -0
- package/es/schema-component/hooks/useSchemaComponentContext.d.ts +1 -0
- package/es/schema-component/hooks/useTableSize.d.ts +5 -0
- package/es/schema-component/index.d.ts +6 -0
- package/es/schema-component/types.d.ts +29 -0
- package/es/schema-initializer/buttons/CustomFormItemInitializers.d.ts +2 -0
- package/es/schema-initializer/buttons/FormItemInitializers.d.ts +6 -0
- package/es/schema-initializer/buttons/RecordBlockInitializers.d.ts +3 -0
- package/es/schema-initializer/buttons/SubTableActionInitializers.d.ts +2 -0
- package/es/schema-initializer/buttons/TabPaneInitializers.d.ts +17 -0
- package/es/schema-initializer/buttons/index.d.ts +6 -0
- package/es/schema-initializer/components/CreateRecordAction.d.ts +4 -0
- package/es/schema-initializer/components/DeletedField.d.ts +2 -0
- package/es/schema-initializer/components/assigned-field/AssignedField.d.ts +12 -0
- package/es/schema-initializer/components/assigned-field/index.d.ts +1 -0
- package/es/schema-initializer/components/index.d.ts +2 -0
- package/es/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.d.ts +7 -0
- package/es/schema-initializer/index.d.ts +7 -0
- package/es/schema-initializer/items/ActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/BlockInitializer.d.ts +3 -0
- package/es/schema-initializer/items/CreateFilterActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/CreateResetActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/CustomFilterFormItemInitializer.d.ts +15 -0
- package/es/schema-initializer/items/CustomizeActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/DataBlockInitializer.d.ts +46 -0
- package/es/schema-initializer/items/DeleteEventActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/FilterBlockInitializer.d.ts +1 -0
- package/es/schema-initializer/items/G2PlotInitializer.d.ts +2 -0
- package/es/schema-initializer/items/InitializerWithSwitch.d.ts +2 -0
- package/es/schema-initializer/items/RecordAssociationBlockInitializer.d.ts +10 -0
- package/es/schema-initializer/items/RecordAssociationDetailsBlockInitializer.d.ts +7 -0
- package/es/schema-initializer/items/RecordAssociationFormBlockInitializer.d.ts +13 -0
- package/es/schema-initializer/items/RecordAssociationGridCardBlockInitializer.d.ts +10 -0
- package/es/schema-initializer/items/RecordAssociationListBlockInitializer.d.ts +7 -0
- package/es/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.d.ts +13 -0
- package/es/schema-initializer/items/SelectActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/SubmitActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/TableActionColumnInitializer.d.ts +2 -0
- package/es/schema-initializer/items/index.d.ts +23 -0
- package/es/schema-initializer/style.d.ts +12 -0
- package/es/schema-initializer/utils.d.ts +421 -0
- package/es/schema-items/GeneralSchemaItems.d.ts +4 -0
- package/es/schema-items/GeneralSettings.d.ts +2 -0
- package/es/schema-items/OpenModeSchemaItems.d.ts +8 -0
- package/es/schema-items/index.d.ts +2 -0
- package/es/schema-settings/DataTemplates/FormDataTemplates.d.ts +4 -0
- package/es/schema-settings/DataTemplates/TreeLabel.d.ts +2 -0
- package/es/schema-settings/DataTemplates/components/AsDefaultTemplate.d.ts +2 -0
- package/es/schema-settings/DataTemplates/components/DataTemplateTitle.d.ts +10 -0
- package/es/schema-settings/DataTemplates/components/DataTemplateTitle.style.d.ts +5 -0
- package/es/schema-settings/DataTemplates/components/Designer.d.ts +7 -0
- package/es/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +13 -0
- package/es/schema-settings/DataTemplates/index.d.ts +1 -0
- package/es/schema-settings/DataTemplates/utils.d.ts +3 -0
- package/es/schema-settings/DateFormat/ExpiresRadio.d.ts +4 -0
- package/es/schema-settings/EditCustomDefaultValue.d.ts +3 -0
- package/es/schema-settings/EditFormulaTitleField.d.ts +4 -0
- package/es/schema-settings/EnableChildCollections/DynamicComponent.d.ts +8 -0
- package/es/schema-settings/EnableChildCollections/index.d.ts +2 -0
- package/es/schema-settings/GeneralSchemaDesigner.d.ts +29 -0
- package/es/schema-settings/LinkageRules/DynamicComponent.d.ts +2 -0
- package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +3 -0
- package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +3 -0
- package/es/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +9 -0
- package/es/schema-settings/LinkageRules/Variables.d.ts +7 -0
- package/es/schema-settings/LinkageRules/action-hooks.d.ts +1 -0
- package/es/schema-settings/LinkageRules/components/EnableLinkage.d.ts +2 -0
- package/es/schema-settings/LinkageRules/components/LinkageHeader.d.ts +10 -0
- package/es/schema-settings/LinkageRules/components/LinkageHeader.style.d.ts +5 -0
- package/es/schema-settings/LinkageRules/context.d.ts +11 -0
- package/es/schema-settings/LinkageRules/index.d.ts +2 -0
- package/es/schema-settings/LinkageRules/type.d.ts +13 -0
- package/es/schema-settings/LinkageRules/useValues.d.ts +1 -0
- package/es/schema-settings/SchemaSettingCollection.d.ts +2 -0
- package/es/schema-settings/SchemaSettingComponent.d.ts +2 -0
- package/es/schema-settings/SchemaSettings.d.ts +122 -0
- package/es/schema-settings/SchemaSettingsDataScope.d.ts +3 -0
- package/es/schema-settings/SchemaSettingsDateFormat.d.ts +5 -0
- package/es/schema-settings/SchemaSettingsDefaultValue.d.ts +5 -0
- package/es/schema-settings/SchemaSettingsNumberFormat.d.ts +5 -0
- package/es/schema-settings/SchemaSettingsPlugin.d.ts +4 -0
- package/es/schema-settings/SchemaSettingsSortingRule.d.ts +2 -0
- package/es/schema-settings/VariableInput/VariableInput.d.ts +87 -0
- package/es/schema-settings/VariableInput/hooks/index.d.ts +3 -0
- package/es/schema-settings/VariableInput/hooks/useBaseVariable.d.ts +51 -0
- package/es/schema-settings/VariableInput/hooks/useBlockCollection.d.ts +3 -0
- package/es/schema-settings/VariableInput/hooks/useContextAssociationFields.d.ts +9 -0
- package/es/schema-settings/VariableInput/hooks/useDateVariable.d.ts +57 -0
- package/es/schema-settings/VariableInput/hooks/useFilterVariable.d.ts +22 -0
- package/es/schema-settings/VariableInput/hooks/useFormVariable.d.ts +34 -0
- package/es/schema-settings/VariableInput/hooks/useIterationVariable.d.ts +38 -0
- package/es/schema-settings/VariableInput/hooks/useParentRecordVariable.d.ts +31 -0
- package/es/schema-settings/VariableInput/hooks/usePopupVariable.d.ts +16 -0
- package/es/schema-settings/VariableInput/hooks/useRecordVariable.d.ts +35 -0
- package/es/schema-settings/VariableInput/hooks/useRoleVariable.d.ts +37 -0
- package/es/schema-settings/VariableInput/hooks/useUserVariable.d.ts +37 -0
- package/es/schema-settings/VariableInput/hooks/useVariableOptions.d.ts +40 -0
- package/es/schema-settings/VariableInput/index.d.ts +2 -0
- package/es/schema-settings/VariableInput/type.d.ts +29 -0
- package/es/schema-settings/VariableInput/utils/formatVariableScop.d.ts +2 -0
- package/es/schema-settings/filter-form/FormFilterScope.d.ts +22 -0
- package/es/schema-settings/filter-form/context.d.ts +16 -0
- package/es/schema-settings/hooks/useFilterFormCustomProps.d.ts +4 -0
- package/es/schema-settings/hooks/useGetAriaLabelOfDesigner.d.ts +7 -0
- package/es/schema-settings/hooks/useIsAllowToSetDefaultValue.d.ts +26 -0
- package/es/schema-settings/hooks/useIsShowMultipleSwitch.d.ts +4 -0
- package/es/schema-settings/hooks/useParseDataScopeFilter.d.ts +12 -0
- package/es/schema-settings/index.d.ts +18 -0
- package/es/schema-settings/isPatternDisabled.d.ts +2 -0
- package/es/schema-settings/styles.d.ts +53 -0
- package/es/schema-settings/types.d.ts +33 -0
- package/es/schema-templates/BlockTemplate.d.ts +3 -0
- package/es/schema-templates/BlockTemplateDetails.d.ts +2 -0
- package/es/schema-templates/BlockTemplatePage.d.ts +3 -0
- package/es/schema-templates/SchemaTemplateManagerProvider.d.ts +14 -0
- package/es/schema-templates/collections/uiSchemaTemplates.d.ts +2 -0
- package/es/schema-templates/index.d.ts +4 -0
- package/es/schema-templates/schemas/CollectionTitle.d.ts +2 -0
- package/es/schema-templates/schemas/uiSchemaTemplates.d.ts +2 -0
- package/es/schema-templates/useSchemaTemplateManager.d.ts +14 -0
- package/es/style/css-variable/CSSVariableProvider.d.ts +7 -0
- package/es/style/css-variable/index.d.ts +1 -0
- package/es/style/index.d.ts +3 -0
- package/es/style/theme/AntdAppProvider.d.ts +8 -0
- package/es/style/theme/defaultTheme.d.ts +3 -0
- package/es/style/theme/index.d.ts +28 -0
- package/es/style/theme/type.d.ts +34 -0
- package/es/style/useToken.d.ts +7 -0
- package/es/testUtils/index.d.ts +1 -0
- package/es/testUtils/mockAPIClient.d.ts +9 -0
- package/es/user/ChangePassword.d.ts +1 -0
- package/es/user/CurrentUser.d.ts +9 -0
- package/es/user/CurrentUserProvider.d.ts +8 -0
- package/es/user/CurrentUserSettingsMenuProvider.d.ts +21 -0
- package/es/user/EditProfile.d.ts +1 -0
- package/es/user/LanguageSettings.d.ts +1 -0
- package/es/user/SwitchRole.d.ts +1 -0
- package/es/user/VerificationCode.d.ts +7 -0
- package/es/user/index.d.ts +3 -0
- package/es/variables/VariablesProvider.d.ts +10 -0
- package/es/variables/constants.d.ts +1 -0
- package/es/variables/hooks/useBuiltinVariables.d.ts +5 -0
- package/es/variables/hooks/useContextVariable.d.ts +3 -0
- package/es/variables/hooks/useLocalVariables.d.ts +8 -0
- package/es/variables/hooks/useVariables.d.ts +2 -0
- package/es/variables/index.d.ts +8 -0
- package/es/variables/types.d.ts +73 -0
- package/es/variables/utils/filterEmptyValues.d.ts +1 -0
- package/es/variables/utils/getAction.d.ts +1 -0
- package/es/variables/utils/getPath.d.ts +6 -0
- package/es/variables/utils/getVariableName.d.ts +6 -0
- package/es/variables/utils/hasRequested.d.ts +9 -0
- package/es/variables/utils/isVariable.d.ts +2 -0
- package/es/variables/utils/transformVariableValue.d.ts +12 -0
- package/es/variables/utils/uniq.d.ts +6 -0
- package/lib/index.css +1 -0
- package/lib/index.js +1818 -0
- package/lib/locale/cron/zh_CN.js +33 -0
- package/lib/locale/cron/zh_TW.js +33 -0
- package/lib/locale/en_US.js +891 -0
- package/lib/locale/es_ES.js +755 -0
- package/lib/locale/fr_FR.js +775 -0
- package/lib/locale/index.js +165 -0
- package/lib/locale/ja_JP.js +694 -0
- package/lib/locale/ko_KR.js +890 -0
- package/lib/locale/pt_BR.js +734 -0
- package/lib/locale/ru_RU.js +570 -0
- package/lib/locale/tr_TR.js +567 -0
- package/lib/locale/uk_UA.js +775 -0
- package/lib/locale/zh-CN.js +1028 -0
- package/lib/locale/zh-TW.js +862 -0
- package/lib/md-CvgT1iV9-DbJ3_uTf.js +1 -0
- package/package.json +94 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { GeneralField, Schema } from '@tachybase/schema';
|
|
3
|
+
import { Designable } from '../../../schema-component';
|
|
4
|
+
import { SchemaSettingsProps } from '../../../schema-settings';
|
|
5
|
+
import { SchemaSettingOptions } from '../types';
|
|
6
|
+
type UseSchemaSettingsRenderOptions<T = {}> = Omit<SchemaSettingOptions<T>, 'name' | 'items'> & Omit<SchemaSettingsProps, 'title' | 'children'> & {
|
|
7
|
+
fieldSchema?: Schema;
|
|
8
|
+
field?: GeneralField;
|
|
9
|
+
dn?: Designable;
|
|
10
|
+
};
|
|
11
|
+
export declare function useSchemaSettingsRender<T = {}>(name: string, options?: UseSchemaSettingsRenderOptions<T>): {
|
|
12
|
+
exists: boolean;
|
|
13
|
+
render: () => any;
|
|
14
|
+
} | {
|
|
15
|
+
exists: boolean;
|
|
16
|
+
render: (options2?: UseSchemaSettingsRenderOptions) => React.FunctionComponentElement<any> | React.FunctionComponentElement<SchemaSettingOptions<any>>;
|
|
17
|
+
};
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { ComponentType } from 'react';
|
|
2
|
+
import { SchemaSettingsCascaderItemProps, SchemaSettingsItemProps, SchemaSettingsModalItemProps, SchemaSettingsPopupProps, SchemaSettingsRemoveProps, SchemaSettingsSelectItemProps, SchemaSettingsSubMenuProps, SchemaSettingsSwitchItemProps } from '../../schema-settings';
|
|
3
|
+
export interface SchemaSettingOptions<T = {}> {
|
|
4
|
+
name: string;
|
|
5
|
+
Component?: ComponentType<T>;
|
|
6
|
+
componentProps?: T;
|
|
7
|
+
items: SchemaSettingsItemType[];
|
|
8
|
+
style?: React.CSSProperties;
|
|
9
|
+
}
|
|
10
|
+
interface SchemaSettingsItemCommon<T = {}> {
|
|
11
|
+
name: string;
|
|
12
|
+
sort?: number;
|
|
13
|
+
useVisible?: () => boolean;
|
|
14
|
+
children?: SchemaSettingsItemType[];
|
|
15
|
+
useChildren?: () => SchemaSettingsItemType[];
|
|
16
|
+
/**
|
|
17
|
+
* @default true
|
|
18
|
+
*/
|
|
19
|
+
hideIfNoChildren?: boolean;
|
|
20
|
+
componentProps?: Omit<T, 'children'>;
|
|
21
|
+
useComponentProps?: () => Omit<T, 'children'>;
|
|
22
|
+
}
|
|
23
|
+
export interface SchemaSettingItemItemType extends SchemaSettingsItemCommon<SchemaSettingsItemProps> {
|
|
24
|
+
type: 'item';
|
|
25
|
+
}
|
|
26
|
+
export interface SchemaSettingItemGroupType extends SchemaSettingsItemCommon<SchemaSettingsSubMenuProps> {
|
|
27
|
+
type: 'itemGroup';
|
|
28
|
+
}
|
|
29
|
+
export interface SchemaSettingItemDividerProps extends SchemaSettingsItemCommon {
|
|
30
|
+
type: 'divider';
|
|
31
|
+
}
|
|
32
|
+
export type SchemaSettingItemRemoveType = SchemaSettingsItemCommon<SchemaSettingsRemoveProps> & {
|
|
33
|
+
type: 'remove';
|
|
34
|
+
};
|
|
35
|
+
export type SchemaSettingItemSelectType = SchemaSettingsItemCommon<SchemaSettingsSelectItemProps> & {
|
|
36
|
+
type: 'select';
|
|
37
|
+
};
|
|
38
|
+
export type SchemaSettingItemCascaderType = SchemaSettingsItemCommon<SchemaSettingsCascaderItemProps> & {
|
|
39
|
+
type: 'cascader';
|
|
40
|
+
};
|
|
41
|
+
interface SchemaSettingItemSwitchType extends SchemaSettingsItemCommon<SchemaSettingsSwitchItemProps> {
|
|
42
|
+
type: 'switch';
|
|
43
|
+
}
|
|
44
|
+
export type SchemaSettingItemPopupType = SchemaSettingsItemCommon<SchemaSettingsPopupProps> & {
|
|
45
|
+
type: 'popup';
|
|
46
|
+
};
|
|
47
|
+
export type SchemaSettingItemModalType = SchemaSettingsItemCommon<SchemaSettingsModalItemProps> & {
|
|
48
|
+
type: 'modal';
|
|
49
|
+
};
|
|
50
|
+
export type SchemaSettingItemActionModalType = SchemaSettingsItemCommon<SchemaSettingsSelectItemProps> & {
|
|
51
|
+
type: 'actionModal';
|
|
52
|
+
};
|
|
53
|
+
export interface SchemaSettingItemSubMenuType extends SchemaSettingsItemCommon<SchemaSettingsSubMenuProps> {
|
|
54
|
+
type: 'subMenu';
|
|
55
|
+
}
|
|
56
|
+
export interface SchemaSettingItemComponentType<T = {}> extends SchemaSettingsItemCommon<T> {
|
|
57
|
+
Component: string | ComponentType<T>;
|
|
58
|
+
}
|
|
59
|
+
export type SchemaSettingItemAllBuiltType = SchemaSettingItemDividerProps | SchemaSettingItemRemoveType | SchemaSettingItemActionModalType | SchemaSettingItemSwitchType | SchemaSettingItemPopupType | SchemaSettingItemCascaderType | SchemaSettingItemModalType | SchemaSettingItemItemType | SchemaSettingItemSelectType | SchemaSettingItemSubMenuType | SchemaSettingItemGroupType;
|
|
60
|
+
export type SchemaSettingsItemType = SchemaSettingItemComponentType | SchemaSettingItemAllBuiltType;
|
|
61
|
+
export type SchemaSettingsItemTypeWithoutName = Omit<SchemaSettingItemComponentType, 'name'> | Omit<SchemaSettingItemAllBuiltType, 'name'>;
|
|
62
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ISchema } from '@tachybase/schema';
|
|
3
|
+
import { SchemaToolbarProps } from '../../../schema-settings/GeneralSchemaDesigner';
|
|
4
|
+
export declare const useSchemaToolbarRender: (fieldSchema: ISchema) => {
|
|
5
|
+
render(props?: SchemaToolbarProps & {
|
|
6
|
+
[index: string]: any;
|
|
7
|
+
}): React.JSX.Element;
|
|
8
|
+
exists: boolean;
|
|
9
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { RequireJS } from '@tachybase/requirejs';
|
|
2
|
+
import type { DevDynamicImport } from '../Application';
|
|
3
|
+
import type { Plugin } from '../Plugin';
|
|
4
|
+
import type { PluginData } from '../PluginManager';
|
|
5
|
+
/**
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
8
|
+
export declare function defineDevPlugins(plugins: Record<string, unknown>): void;
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
export declare function definePluginClient(packageName: string): void;
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
export declare function configRequirejs(requirejs: any, pluginData: PluginData[]): void;
|
|
17
|
+
/**
|
|
18
|
+
* @internal
|
|
19
|
+
*/
|
|
20
|
+
export declare function processRemotePlugins(pluginData: PluginData[], resolve: (plugins: [string, typeof Plugin][]) => void): (...pluginModules: (typeof Plugin & {
|
|
21
|
+
default?: typeof Plugin;
|
|
22
|
+
})[]) => void;
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
export declare function getRemotePlugins(requirejs: any, pluginData?: PluginData[]): Promise<Array<[string, typeof Plugin]>>;
|
|
27
|
+
interface GetPluginsOption {
|
|
28
|
+
requirejs: RequireJS;
|
|
29
|
+
pluginData: PluginData[];
|
|
30
|
+
devDynamicImport?: DevDynamicImport;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
export declare function getPlugins(options: GetPluginsOption): Promise<Array<[string, typeof Plugin]>>;
|
|
36
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Result } from 'ahooks/es/useRequest/src/types';
|
|
3
|
+
export declare const AsyncDataContext: React.Context<Result<any, any> & {
|
|
4
|
+
state?: any;
|
|
5
|
+
setState?: any;
|
|
6
|
+
}>;
|
|
7
|
+
export interface AsyncDataProviderProps {
|
|
8
|
+
value?: any;
|
|
9
|
+
request?: any;
|
|
10
|
+
uid?: string;
|
|
11
|
+
onSuccess?: (data: any, params: any) => void;
|
|
12
|
+
children: React.ReactNode;
|
|
13
|
+
}
|
|
14
|
+
export declare const AsyncDataProvider: (props: AsyncDataProviderProps) => React.JSX.Element;
|
|
15
|
+
export declare const useAsyncData: () => Result<any, any> & {
|
|
16
|
+
state?: any;
|
|
17
|
+
setState?: any;
|
|
18
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { GeneralField } from '@tachybase/schema';
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated
|
|
5
|
+
*/
|
|
6
|
+
export declare const BlockResourceContext: React.Context<any>;
|
|
7
|
+
export declare const BlockAssociationContext: React.Context<any>;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated
|
|
10
|
+
*/
|
|
11
|
+
export declare const BlockRequestContext_deprecated: React.Context<{
|
|
12
|
+
block?: string;
|
|
13
|
+
props?: any;
|
|
14
|
+
field?: GeneralField;
|
|
15
|
+
service?: any;
|
|
16
|
+
resource?: any;
|
|
17
|
+
allowedActions?: any;
|
|
18
|
+
__parent?: any;
|
|
19
|
+
updateAssociationValues?: any[];
|
|
20
|
+
}>;
|
|
21
|
+
export declare const useBlockResource: () => any;
|
|
22
|
+
export declare const MaybeCollectionProvider: (props: any) => any;
|
|
23
|
+
/**
|
|
24
|
+
* @deprecated
|
|
25
|
+
* @param props
|
|
26
|
+
* @returns
|
|
27
|
+
*/
|
|
28
|
+
export declare const BlockRequestProvider_deprecated: (props: any) => React.JSX.Element;
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated
|
|
31
|
+
*/
|
|
32
|
+
export declare const useBlockRequestContext: () => {
|
|
33
|
+
block?: string;
|
|
34
|
+
props?: any;
|
|
35
|
+
field?: GeneralField;
|
|
36
|
+
service?: any;
|
|
37
|
+
resource?: any;
|
|
38
|
+
allowedActions?: any;
|
|
39
|
+
__parent?: any;
|
|
40
|
+
updateAssociationValues?: any[];
|
|
41
|
+
};
|
|
42
|
+
export declare const RenderChildrenWithAssociationFilter: React.FC<any>;
|
|
43
|
+
export declare const useBlockContext: () => {
|
|
44
|
+
/** 用以区分卡片的标识 */
|
|
45
|
+
name: string;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @deprecated use `DataBlockProvider` instead
|
|
49
|
+
*/
|
|
50
|
+
export declare const BlockProvider: (props: {
|
|
51
|
+
name: string;
|
|
52
|
+
resource: any;
|
|
53
|
+
collection?: any;
|
|
54
|
+
association?: any;
|
|
55
|
+
dataSource?: string;
|
|
56
|
+
params?: any;
|
|
57
|
+
children?: any;
|
|
58
|
+
parentRecord?: any;
|
|
59
|
+
/** @deprecated */
|
|
60
|
+
useSourceId?: any;
|
|
61
|
+
/** @deprecated */
|
|
62
|
+
useParams?: any;
|
|
63
|
+
}) => React.JSX.Element;
|
|
64
|
+
export declare const useBlockAssociationContext: () => any;
|
|
65
|
+
export declare const useFilterByTk: () => any;
|
|
66
|
+
/**
|
|
67
|
+
* @deprecated
|
|
68
|
+
* 已弃用,应使用 useSourceIdFromParentRecord
|
|
69
|
+
* @returns
|
|
70
|
+
*/
|
|
71
|
+
export declare const useSourceIdFromRecord: () => any;
|
|
72
|
+
export declare const useSourceIdFromParentRecord: () => any;
|
|
73
|
+
export declare const useParamsFromRecord: () => {
|
|
74
|
+
filterByTk: any;
|
|
75
|
+
};
|
|
76
|
+
export declare const RecordLink: (props: any) => React.JSX.Element;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const DetailsBlockContext: React.Context<any>;
|
|
3
|
+
export declare const DetailsBlockProvider: React.FunctionComponent<any>;
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated
|
|
6
|
+
*/
|
|
7
|
+
export declare const useDetailsBlockContext: () => any;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated
|
|
10
|
+
* 即将废弃,请用 useDetailsWithPaginationProps 或者 useDetailsProps
|
|
11
|
+
* @returns
|
|
12
|
+
*/
|
|
13
|
+
export declare const useDetailsBlockProps: () => {
|
|
14
|
+
form: any;
|
|
15
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Schema } from '@tachybase/schema';
|
|
3
|
+
import { CollectionRecord } from '../data-source';
|
|
4
|
+
export declare const FormBlockContext: React.Context<{
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
form?: any;
|
|
7
|
+
type?: "update" | "create";
|
|
8
|
+
action?: string;
|
|
9
|
+
field?: any;
|
|
10
|
+
service?: any;
|
|
11
|
+
resource?: any;
|
|
12
|
+
updateAssociationValues?: any;
|
|
13
|
+
formBlockRef?: any;
|
|
14
|
+
collectionName?: string;
|
|
15
|
+
params?: any;
|
|
16
|
+
formRecord?: CollectionRecord;
|
|
17
|
+
}>;
|
|
18
|
+
/**
|
|
19
|
+
* @internal
|
|
20
|
+
* 获取表单卡片的类型:update 表示是表单编辑卡片,create 表示是表单新增卡片
|
|
21
|
+
* @returns
|
|
22
|
+
*/
|
|
23
|
+
export declare const useFormBlockType: () => {
|
|
24
|
+
type: "update" | "create";
|
|
25
|
+
};
|
|
26
|
+
export declare const useIsDetailBlock: () => boolean;
|
|
27
|
+
export declare const FormBlockProvider: React.FunctionComponent<any>;
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
* @returns
|
|
31
|
+
*/
|
|
32
|
+
export declare const useFormBlockContext: () => {
|
|
33
|
+
[key: string]: any;
|
|
34
|
+
form?: any;
|
|
35
|
+
type?: "update" | "create";
|
|
36
|
+
action?: string;
|
|
37
|
+
field?: any;
|
|
38
|
+
service?: any;
|
|
39
|
+
resource?: any;
|
|
40
|
+
updateAssociationValues?: any;
|
|
41
|
+
formBlockRef?: any;
|
|
42
|
+
collectionName?: string;
|
|
43
|
+
params?: any;
|
|
44
|
+
formRecord?: CollectionRecord;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
export declare const useFormBlockProps: (shouldClearInitialValues?: boolean) => {
|
|
50
|
+
form: any;
|
|
51
|
+
};
|
|
52
|
+
/**InternalFormBlockProvider
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
export declare const findFormBlock: (schema: Schema) => Schema<any, any, any, any, any, any, any, any, any>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FormFieldContext: React.Context<any>;
|
|
3
|
+
export declare const WithoutFormFieldResource: React.Context<any>;
|
|
4
|
+
export declare const FormFieldProvider: (props: any) => React.JSX.Element;
|
|
5
|
+
export declare const useFormFieldContext: () => any;
|
|
6
|
+
export declare const useFormFieldProps: () => {
|
|
7
|
+
form: any;
|
|
8
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const TableBlockContext: React.Context<any>;
|
|
3
|
+
export declare function getIdsWithChildren(nodes: any): any[];
|
|
4
|
+
export declare const TableBlockProvider: React.FunctionComponent<any>;
|
|
5
|
+
export declare const useTableBlockContext: () => any;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Field } from '@tachybase/schema';
|
|
3
|
+
import { APIClient } from '../api-client';
|
|
4
|
+
export declare const TableFieldContext: React.Context<any>;
|
|
5
|
+
export declare class TableFieldResource {
|
|
6
|
+
field: Field;
|
|
7
|
+
api: APIClient;
|
|
8
|
+
sourceId: any;
|
|
9
|
+
resource?: any;
|
|
10
|
+
constructor(options: any);
|
|
11
|
+
list(options: any): Promise<{
|
|
12
|
+
data: {
|
|
13
|
+
data: any;
|
|
14
|
+
};
|
|
15
|
+
}>;
|
|
16
|
+
get(options: any): Promise<{
|
|
17
|
+
data: {
|
|
18
|
+
data: any;
|
|
19
|
+
};
|
|
20
|
+
}>;
|
|
21
|
+
create(options: any): Promise<void>;
|
|
22
|
+
update(options: any): Promise<void>;
|
|
23
|
+
destroy(options: any): Promise<void>;
|
|
24
|
+
}
|
|
25
|
+
export declare const WithoutTableFieldResource: React.Context<any>;
|
|
26
|
+
export declare const TableFieldProvider: (props: any) => React.JSX.Element;
|
|
27
|
+
export declare const useTableFieldContext: () => any;
|
|
28
|
+
export declare const useTableFieldProps: () => {
|
|
29
|
+
size: string;
|
|
30
|
+
loading: any;
|
|
31
|
+
showIndex: any;
|
|
32
|
+
dragSort: any;
|
|
33
|
+
pagination: boolean;
|
|
34
|
+
required: any;
|
|
35
|
+
rowKey: (record: any) => number;
|
|
36
|
+
onRowSelectionChange(selectedRowKeys: any): void;
|
|
37
|
+
onChange({ current, pageSize }: {
|
|
38
|
+
current: any;
|
|
39
|
+
pageSize: any;
|
|
40
|
+
}): void;
|
|
41
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Schema } from '@tachybase/schema';
|
|
3
|
+
type Params = {
|
|
4
|
+
filter?: any;
|
|
5
|
+
pageSize?: number;
|
|
6
|
+
page?: number;
|
|
7
|
+
sort?: any;
|
|
8
|
+
};
|
|
9
|
+
export declare const TableSelectorContext: React.Context<any>;
|
|
10
|
+
export declare const TableSelectorParamsProvider: ({ params, children }: {
|
|
11
|
+
params: Params;
|
|
12
|
+
children: any;
|
|
13
|
+
}) => React.JSX.Element;
|
|
14
|
+
export declare const recursiveParent: (schema: Schema, component: any) => any;
|
|
15
|
+
export declare const TableSelectorProvider: React.FunctionComponent<any>;
|
|
16
|
+
export declare const useTableSelectorContext: () => any;
|
|
17
|
+
export declare const useTableSelectorProps: () => {
|
|
18
|
+
loading: any;
|
|
19
|
+
showIndex: boolean;
|
|
20
|
+
dragSort: boolean;
|
|
21
|
+
rowKey: any;
|
|
22
|
+
pagination: boolean | {
|
|
23
|
+
defaultCurrent: any;
|
|
24
|
+
defaultPageSize: any;
|
|
25
|
+
};
|
|
26
|
+
onRowSelectionChange(selectedRowKeys: any, selectedRows: any): void;
|
|
27
|
+
onRowDragEnd({ from, to }: {
|
|
28
|
+
from: any;
|
|
29
|
+
to: any;
|
|
30
|
+
}): Promise<void>;
|
|
31
|
+
onChange({ current, pageSize }: {
|
|
32
|
+
current: any;
|
|
33
|
+
pageSize: any;
|
|
34
|
+
}): void;
|
|
35
|
+
};
|
|
36
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const TreeBlockContext: React.Context<any>;
|
|
3
|
+
export declare const TreeBlockProvider: (props: any) => React.JSX.Element;
|
|
4
|
+
export declare const useTreeBlockContext: () => any;
|
|
5
|
+
export declare const useTreeBlockProps: () => {
|
|
6
|
+
loading: any;
|
|
7
|
+
onSelectNode: (selectedKeys: any, { selected }: {
|
|
8
|
+
selected: any;
|
|
9
|
+
}) => void;
|
|
10
|
+
};
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { ChangeEvent } from 'react';
|
|
2
|
+
export * from './useFormActiveFields';
|
|
3
|
+
export * from './useParsedFilter';
|
|
4
|
+
export * from './useDataBlockSourceId';
|
|
5
|
+
export * from './useIsMobile';
|
|
6
|
+
export declare function getFormValues({ filterByTk, field, form, fieldNames, getField, resource, actionFields, }: {
|
|
7
|
+
filterByTk: any;
|
|
8
|
+
field: any;
|
|
9
|
+
form: any;
|
|
10
|
+
fieldNames: any;
|
|
11
|
+
getField: any;
|
|
12
|
+
resource: any;
|
|
13
|
+
actionFields: any[];
|
|
14
|
+
}): any;
|
|
15
|
+
export declare function useCollectValuesToSubmit(): () => Promise<any>;
|
|
16
|
+
export declare const useInsertSchema: () => (ss: any) => void;
|
|
17
|
+
export declare const useCancelActionProps: () => {
|
|
18
|
+
onClick(): Promise<void>;
|
|
19
|
+
};
|
|
20
|
+
export declare const useCreateActionProps: () => {
|
|
21
|
+
onClick(): Promise<void>;
|
|
22
|
+
};
|
|
23
|
+
export declare const useAssociationCreateActionProps: () => {
|
|
24
|
+
onClick(): Promise<void>;
|
|
25
|
+
};
|
|
26
|
+
export interface FilterTarget {
|
|
27
|
+
targets?: {
|
|
28
|
+
/** field uid */
|
|
29
|
+
uid: string;
|
|
30
|
+
/** associated field */
|
|
31
|
+
field?: string;
|
|
32
|
+
}[];
|
|
33
|
+
uid?: string;
|
|
34
|
+
}
|
|
35
|
+
export declare const findFilterTargets: (fieldSchema: any) => FilterTarget;
|
|
36
|
+
export declare const updateFilterTargets: (fieldSchema: any, targets: FilterTarget["targets"]) => void;
|
|
37
|
+
export declare const useFilterBlockActionProps: () => {
|
|
38
|
+
onClick(): Promise<void>;
|
|
39
|
+
};
|
|
40
|
+
export declare const useResetBlockActionProps: () => {
|
|
41
|
+
onClick(): Promise<void>;
|
|
42
|
+
};
|
|
43
|
+
export declare const useCustomizeUpdateActionProps: () => {
|
|
44
|
+
onClick(): Promise<void>;
|
|
45
|
+
};
|
|
46
|
+
export declare const useCustomizeRequestActionProps: () => {
|
|
47
|
+
onClick(): Promise<void>;
|
|
48
|
+
};
|
|
49
|
+
export declare const useUpdateActionProps: () => {
|
|
50
|
+
onClick(): Promise<void>;
|
|
51
|
+
};
|
|
52
|
+
export declare const useDestroyActionProps: () => {
|
|
53
|
+
onClick(): Promise<void>;
|
|
54
|
+
};
|
|
55
|
+
export declare const useRemoveActionProps: (associationName: any) => {
|
|
56
|
+
onClick(value: any): Promise<void>;
|
|
57
|
+
};
|
|
58
|
+
export declare const useDisassociateActionProps: () => {
|
|
59
|
+
onClick(): Promise<void>;
|
|
60
|
+
};
|
|
61
|
+
export declare const useDetailPrintActionProps: () => {
|
|
62
|
+
onClick(): Promise<void>;
|
|
63
|
+
};
|
|
64
|
+
export declare const useBulkDestroyActionProps: () => {
|
|
65
|
+
onClick(): Promise<void>;
|
|
66
|
+
};
|
|
67
|
+
export declare const useRefreshActionProps: () => {
|
|
68
|
+
onClick(): Promise<void>;
|
|
69
|
+
};
|
|
70
|
+
export declare const useDetailsPaginationProps: () => {
|
|
71
|
+
simple: boolean;
|
|
72
|
+
hidden: boolean;
|
|
73
|
+
current: any;
|
|
74
|
+
total: any;
|
|
75
|
+
pageSize: number;
|
|
76
|
+
showSizeChanger: boolean;
|
|
77
|
+
onChange(page: any): Promise<void>;
|
|
78
|
+
style: {
|
|
79
|
+
marginTop: number;
|
|
80
|
+
textAlign: string;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
export declare const useAssociationFilterProps: () => {
|
|
84
|
+
/** 渲染 Collapse 的列表数据 */
|
|
85
|
+
list: {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
}[];
|
|
88
|
+
onSelected: (value: any) => void;
|
|
89
|
+
handleSearchInput: (e: ChangeEvent<any>) => void;
|
|
90
|
+
params: any;
|
|
91
|
+
run: (...params: any) => void;
|
|
92
|
+
};
|
|
93
|
+
export declare const useOptionalFieldList: () => import("../..").CollectionFieldOptions[];
|
|
94
|
+
export declare const useAssociationFilterBlockProps: () => {
|
|
95
|
+
/** 渲染 Collapse 的列表数据 */
|
|
96
|
+
list?: undefined;
|
|
97
|
+
onSelected?: undefined;
|
|
98
|
+
handleSearchInput?: undefined;
|
|
99
|
+
params?: undefined;
|
|
100
|
+
run?: undefined;
|
|
101
|
+
valueKey?: undefined;
|
|
102
|
+
labelKey?: undefined;
|
|
103
|
+
} | {
|
|
104
|
+
/** 渲染 Collapse 的列表数据 */
|
|
105
|
+
list: any;
|
|
106
|
+
onSelected: (value: any) => void;
|
|
107
|
+
handleSearchInput: any;
|
|
108
|
+
params: any;
|
|
109
|
+
run: any;
|
|
110
|
+
valueKey: any;
|
|
111
|
+
labelKey: any;
|
|
112
|
+
};
|
|
113
|
+
export declare function getAssociationPath(str: any): any;
|
|
114
|
+
export declare const useAssociationNames: (dataSource?: string) => {
|
|
115
|
+
getAssociationAppends: () => {
|
|
116
|
+
appends: any[];
|
|
117
|
+
updateAssociationValues: any[];
|
|
118
|
+
};
|
|
119
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @internal
|
|
3
|
+
* @deprecated
|
|
4
|
+
* 已弃用(该方法现在只是用来兼容旧版 Schema 的),请通过各个卡片的 x-use-decorator-props 中获取 parentRecord
|
|
5
|
+
*
|
|
6
|
+
* 注意:这里有一个需要更改 schema 才能解决的问题,就是在获取 parentRecord 的时候无法确定(在关系字段和当前表同表时)
|
|
7
|
+
* 是需要从 recordData 还是 parentRecordData 中获取;解决方法是通过更改 schema,在不同类型的关系卡片中
|
|
8
|
+
* (`通过点击关系字段按钮打开的弹窗中创建的非关系字段卡片`和`关系字段卡片`)使用不同的 hook。
|
|
9
|
+
*
|
|
10
|
+
* @param param0
|
|
11
|
+
* @returns
|
|
12
|
+
*/
|
|
13
|
+
export declare const useDataBlockParentRecord: ({ association }: {
|
|
14
|
+
association: string;
|
|
15
|
+
}) => any;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface FormActiveFieldsProviderValue {
|
|
3
|
+
getActiveFieldsName: (name: string) => string[];
|
|
4
|
+
addActiveFieldName: (fieldName: string) => void;
|
|
5
|
+
removeActiveFieldName: (fieldName: string) => void;
|
|
6
|
+
name: string;
|
|
7
|
+
parent: FormActiveFieldsProviderValue;
|
|
8
|
+
}
|
|
9
|
+
interface ProviderProps extends Partial<FormActiveFieldsProviderValue> {
|
|
10
|
+
children: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* 用于提供获取和更新当前表单卡片中已显示出来的字段
|
|
14
|
+
* @param param0
|
|
15
|
+
* @returns
|
|
16
|
+
*/
|
|
17
|
+
export declare const FormActiveFieldsProvider: ({ children, name, getActiveFieldsName, addActiveFieldName, removeActiveFieldName, }: ProviderProps) => React.JSX.Element;
|
|
18
|
+
/**
|
|
19
|
+
* 用于获取和更新当前表单卡片中已显示出来的字段
|
|
20
|
+
* @returns
|
|
21
|
+
*/
|
|
22
|
+
export declare const useFormActiveFields: () => FormActiveFieldsProviderValue;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useIsMobile: () => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './BlockProvider';
|
|
2
|
+
export * from './DetailsBlockProvider';
|
|
3
|
+
export * from './FilterFormBlockProvider';
|
|
4
|
+
export * from './FormBlockProvider';
|
|
5
|
+
export * from './FormFieldProvider';
|
|
6
|
+
export * from './MobileProvider';
|
|
7
|
+
export * from './TableBlockProvider';
|
|
8
|
+
export * from './TableFieldProvider';
|
|
9
|
+
export * from './TableSelectorProvider';
|
|
10
|
+
export * from './TreeBlockProvider';
|
|
11
|
+
export * from './hooks';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Schema } from '@tachybase/schema';
|
|
3
|
+
export declare const ACLContext: React.Context<any>;
|
|
4
|
+
export declare const ACLProvider: (props: any) => React.JSX.Element;
|
|
5
|
+
export declare const ACLRolesCheckProvider: (props: any) => React.JSX.Element;
|
|
6
|
+
export declare const useRoleRecheck: () => () => void;
|
|
7
|
+
export declare const useACLContext: () => any;
|
|
8
|
+
export declare const ACLActionParamsContext: React.Context<any>;
|
|
9
|
+
export declare const useACLRolesCheck: () => {
|
|
10
|
+
data: any;
|
|
11
|
+
getActionAlias: (actionPath: string) => any;
|
|
12
|
+
inResources: (resourceName: string) => any;
|
|
13
|
+
getResourceActionParams: (actionPath: string) => any;
|
|
14
|
+
getStrategyActionParams: (actionPath: string) => {};
|
|
15
|
+
};
|
|
16
|
+
export declare function useACLRoleContext(): any;
|
|
17
|
+
export declare const ACLCollectionProvider: (props: any) => any;
|
|
18
|
+
export declare const useACLActionParamsContext: () => any;
|
|
19
|
+
export declare const useRecordPkValue: () => any;
|
|
20
|
+
export declare const ACLActionProvider: (props: any) => React.JSX.Element;
|
|
21
|
+
export declare const useACLFieldWhitelist: () => {
|
|
22
|
+
whitelist: any[];
|
|
23
|
+
schemaInWhitelist(fieldSchema: Schema, isSkip?: any): boolean;
|
|
24
|
+
};
|
|
25
|
+
export declare const ACLCollectionFieldProvider: (props: any) => React.JSX.Element;
|
|
26
|
+
export declare const ACLMenuItemProvider: (props: any) => React.JSX.Element;
|