@tachybase/client 1.3.20 → 1.3.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/api-client/APIClient.d.ts +1 -1
- package/es/api-client/APIClient.mjs +1 -1
- package/es/api-client/hooks/assign.mjs +1 -1
- package/es/api-client/hooks/useResource.d.ts +1 -1
- package/es/application/Application.d.ts +1 -2
- package/es/application/Application.mjs +2 -11
- package/es/application/WebSocketClient.mjs +1 -1
- package/es/application/components/index.d.ts +0 -2
- package/es/application/components/index.mjs +0 -2
- package/es/application/schema-initializer/context/index.d.ts +1 -1
- package/es/application/utils/globalDeps.d.ts +1 -1
- package/es/application/utils/globalDeps.mjs +4 -12
- package/es/application/utils/remotePlugins.d.ts +1 -1
- package/es/block-provider/FormFieldProvider.mjs +1 -1
- package/es/block-provider/hooks/index.mjs +2 -2
- package/es/block-provider/hooks/useParsedFilter.mjs +1 -1
- package/es/built-in/acl/Configuration/RolesResourcesActions.mjs +1 -1
- package/es/built-in/context-menu/ContextMenuItemsProps.mjs +1 -1
- package/es/built-in/index.d.ts +2 -1
- package/es/built-in/index.mjs +4 -3
- package/es/built-in/page-style/useTabSettings.mjs +3 -3
- package/es/built-in/pm/PluginManager.mjs +1 -1
- package/es/built-in/quick-access/ModalActionSchemaInitializerItem.mjs +1 -1
- package/es/collection-manager/Configuration/AddCollectionAction.mjs +1 -1
- package/es/collection-manager/Configuration/AddFieldAction.mjs +1 -1
- package/es/collection-manager/Configuration/AddSubFieldAction.mjs +1 -1
- package/es/collection-manager/Configuration/EditCollectionAction.mjs +1 -1
- package/es/collection-manager/Configuration/EditFieldAction.mjs +1 -1
- package/es/collection-manager/Configuration/EditSubFieldAction.mjs +1 -1
- package/es/collection-manager/Configuration/ImportXlsx/xlsxImportAction.mjs +1 -1
- package/es/collection-manager/Configuration/OverridingCollectionField.mjs +1 -1
- package/es/collection-manager/Configuration/SyncFieldsAction.mjs +1 -1
- package/es/collection-manager/Configuration/SyncSQLFieldsAction.mjs +1 -1
- package/es/collection-manager/Configuration/ViewInheritedField.mjs +1 -1
- package/es/collection-manager/collectionPlugin.mjs +36 -0
- package/es/collection-manager/hooks/useCollection_deprecated.d.ts +1 -1
- package/es/collection-manager/interfaces/json.mjs +1 -1
- package/es/collection-manager/interfaces/radioGroup.d.ts +11 -11
- package/es/collection-manager/interfaces/url.d.ts +4 -0
- package/es/collection-manager/interfaces/url.mjs +10 -1
- package/es/collection-manager/templates/expression.mjs +1 -1
- package/es/collection-manager/templates/properties/index.d.ts +1 -1
- package/es/collection-manager/templates/sql.d.ts +3 -3
- package/es/collection-manager/templates/view.d.ts +3 -3
- package/es/data-source/collection-field-interface/CollectionFieldInterface.mjs +1 -15
- package/es/data-source/data-block/DataBlockResourceProvider.d.ts +1 -1
- package/es/filter-provider/utils.mjs +1 -1
- package/es/modules/actions/link/customizeLinkActionSettings.mjs +1 -1
- package/es/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.mjs +1 -1
- package/es/modules/blocks/data-blocks/form/FormBlockInitializer.d.ts +11 -11
- package/es/modules/blocks/data-blocks/form/fieldSettingsFormItem.mjs +2 -5
- package/es/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.mjs +1 -1
- package/es/modules/blocks/data-blocks/list/listBlockSettings.mjs +1 -1
- package/es/modules/blocks/data-blocks/table/hooks/useTableBlockProps.mjs +14 -2
- package/es/modules/blocks/data-blocks/table/tableBlockSettings.mjs +1 -1
- package/es/modules/blocks/data-blocks/table/tableColumnSettings.mjs +1 -3
- package/es/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.mjs +1 -1
- package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.mjs +0 -4
- package/es/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.mjs +1 -5
- package/es/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.mjs +1 -1
- package/es/modules/fields/component/Cascader/cascaderComponentFieldSettings.mjs +1 -1
- package/es/modules/fields/component/CustomTitle/customTitleComponentFieldSettings.mjs +95 -5
- package/es/modules/fields/component/InputPreview/inputPreviewComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/InputPreview/inputPreviewComponentFieldSettings.mjs +99 -0
- package/es/modules/fields/component/MultipleSelect/multipleSelectComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/MultipleSelect/multipleSelectComponentFieldSettings.mjs +64 -0
- package/es/modules/fields/component/Radio/radioComponentFieldSettings.mjs +15 -2
- package/es/modules/fields/component/Select/selectComponentFieldSettings.mjs +26 -7
- package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.d.ts +1 -1
- package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.mjs +1 -1
- package/es/modules/menu/GroupItem.mjs +1 -1
- package/es/modules/menu/LinkMenuItem.mjs +1 -1
- package/es/modules/menu/PageMenuItem.mjs +1 -1
- package/es/modules/menu/UploadMenuItem.mjs +1 -1
- package/es/schema-component/antd/action/Action.Designer.mjs +1 -1
- package/es/schema-component/antd/action/Action.mjs +1 -1
- package/es/schema-component/antd/association-field/InternalCascadeSelect.mjs +1 -1
- package/es/schema-component/antd/association-field/InternalCascader.mjs +1 -2
- package/es/schema-component/antd/association-field/InternalNester.mjs +1 -1
- package/es/schema-component/antd/association-field/InternalSubTable.mjs +1 -1
- package/es/schema-component/antd/association-field/InternalViewer.mjs +4 -58
- package/es/schema-component/antd/association-field/SubTabs/InternalCollapse.mjs +1 -1
- package/es/schema-component/antd/association-field/SubTabs/hook.mjs +1 -1
- package/es/schema-component/antd/association-field/hooks.d.ts +4 -0
- package/es/schema-component/antd/association-field/hooks.mjs +53 -2
- package/es/schema-component/antd/association-field/util.mjs +1 -1
- package/es/schema-component/antd/association-select/AssociationSelect.mjs +2 -2
- package/es/schema-component/antd/auto-complete/AutoComplete.mjs +1 -1
- package/es/schema-component/antd/color-picker/ColorPicker.mjs +1 -1
- package/es/schema-component/antd/color-picker/util.d.ts +1 -1
- package/es/schema-component/antd/color-picker/util.mjs +1 -1
- package/es/schema-component/antd/cron/Cron.mjs +1 -1
- package/es/schema-component/antd/date-picker/ReadPretty.mjs +1 -1
- package/es/schema-component/antd/date-picker/util.d.ts +1 -1
- package/es/schema-component/antd/date-picker/util.mjs +1 -1
- package/es/schema-component/antd/filter/FilterAction.mjs +1 -1
- package/es/schema-component/antd/form/Form.mjs +1 -1
- package/es/schema-component/antd/form-item/FormItem.Settings.mjs +1 -1
- package/es/schema-component/antd/form-item/FormItem.mjs +1 -1
- package/es/schema-component/antd/form-item/SchemaSettingOptions.mjs +1 -1
- package/es/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.mjs +1 -1
- package/es/schema-component/antd/form-item/hooks/useParseDefaultValue.mjs +1 -1
- package/es/schema-component/antd/form-v2/Form.Settings.mjs +1 -1
- package/es/schema-component/antd/form-v2/Form.mjs +1 -2
- package/es/schema-component/antd/form-v2/Templates.mjs +1 -1
- package/es/schema-component/antd/form-v2/utils.mjs +1 -2
- package/es/schema-component/antd/grid-card/GridCard.Decorator.mjs +1 -1
- package/es/schema-component/antd/grid-card/GridCard.Designer.mjs +1 -1
- package/es/schema-component/antd/icon-picker/IconPicker.mjs +1 -1
- package/es/schema-component/antd/index.d.ts +0 -1
- package/es/schema-component/antd/index.mjs +1 -2
- package/es/schema-component/antd/input/Input.mjs +2 -1
- package/es/schema-component/antd/input/ReadPretty.d.ts +1 -0
- package/es/schema-component/antd/input/ReadPretty.mjs +30 -2
- package/es/schema-component/antd/input-number/ReadPretty.mjs +1 -1
- package/es/schema-component/antd/list/List.Decorator.mjs +1 -1
- package/es/schema-component/antd/list/List.Designer.mjs +1 -1
- package/es/schema-component/antd/menu/Menu.Designer.mjs +1 -1
- package/es/schema-component/antd/menu/Menu.mjs +1 -1
- package/es/schema-component/antd/page/Page.Settings.mjs +0 -33
- package/es/schema-component/antd/page/Page.mjs +47 -96
- package/es/schema-component/antd/page/hooks/index.d.ts +1 -1
- package/es/schema-component/antd/page/hooks/index.mjs +1 -1
- package/es/schema-component/antd/page/index.d.ts +1 -0
- package/es/schema-component/antd/page/index.mjs +1 -0
- package/es/schema-component/antd/page/pageExtendComponentProvider.d.ts +3 -0
- package/es/schema-component/antd/page/pageExtendComponentProvider.mjs +9 -0
- package/es/schema-component/antd/page/style.d.ts +0 -5
- package/es/schema-component/antd/page/style.mjs +1 -45
- package/es/schema-component/antd/preview/Preview.mjs +1 -1
- package/es/schema-component/antd/quick-edit/QuickEdit.mjs +1 -1
- package/es/schema-component/antd/record-picker/util.mjs +1 -1
- package/es/schema-component/antd/select/FormulaSelect.mjs +17 -5
- package/es/schema-component/antd/select/ReadPretty.mjs +16 -3
- package/es/schema-component/antd/select/Select.mjs +7 -2
- package/es/schema-component/antd/select/utils.mjs +2 -2
- package/es/schema-component/antd/space/index.mjs +1 -1
- package/es/schema-component/antd/table/Table.Void.Designer.mjs +1 -1
- package/es/schema-component/antd/table-v2/Table.mjs +1 -1
- package/es/schema-component/antd/table-v2/TableBlockDesigner.mjs +1 -1
- package/es/schema-component/antd/table-v2/TableSelectorDesigner.mjs +1 -1
- package/es/schema-component/antd/time-picker/ReadPretty.mjs +1 -1
- package/es/schema-component/antd/time-picker/TimePicker.mjs +1 -1
- package/es/schema-component/antd/tree-select/ReadPretty.mjs +1 -1
- package/es/schema-component/antd/upload/ReadPretty.mjs +1 -2
- package/es/schema-component/antd/upload/Upload.mjs +1 -1
- package/es/schema-component/antd/variable/CodeMirror.mjs +1 -1
- package/es/schema-component/antd/variable/Input.mjs +1 -1
- package/es/schema-component/antd/variable/TextArea.mjs +1 -1
- package/es/schema-component/common/infinite-scroll/infinite-scroll.mjs +1 -1
- package/es/schema-component/hooks/useFieldModeOptions.mjs +13 -10
- package/es/schema-initializer/items/CustomFilterFormItemInitializer.mjs +2 -2
- package/es/schema-settings/DataTemplates/components/AsDefaultTemplate.mjs +1 -1
- package/es/schema-settings/DataTemplates/components/DataTemplateTitle.mjs +1 -1
- package/es/schema-settings/DataTemplates/components/Designer.mjs +1 -1
- package/es/schema-settings/DataTemplates/utils.mjs +1 -1
- package/es/schema-settings/EditFormulaTitleField.mjs +19 -1
- package/es/schema-settings/LinkageRules/LinkageRuleAction.mjs +1 -1
- package/es/schema-settings/LinkageRules/components/EnableLinkage.mjs +1 -1
- package/es/schema-settings/LinkageRules/components/LinkageHeader.mjs +1 -1
- package/es/schema-settings/SchemaSettings.mjs +2 -3
- package/es/schema-settings/SchemaSettingsDefaultValue.mjs +1 -1
- package/es/schema-settings/SchemaSettingsPlugin.mjs +4 -0
- package/es/schema-settings/SchemaSettingsSortingRule.mjs +1 -1
- package/es/schema-settings/VariableInput/hooks/useContextAssociationFields.mjs +1 -1
- package/es/schema-settings/filter-form/FormFilterScope.mjs +1 -1
- package/es/schema-settings/hooks/useParseDataScopeFilter.mjs +1 -1
- package/es/user/ChangePassword.mjs +2 -2
- package/es/user/CurrentUser.mjs +1 -1
- package/es/user/CurrentUserSettingsMenuProvider.mjs +1 -1
- package/es/variables/VariablesProvider.mjs +2 -2
- package/es/variables/hooks/useBuiltinVariables.mjs +1 -1
- package/lib/api-client/APIClient.js +2 -2
- package/lib/api-client/hooks/assign.js +1 -1
- package/lib/application/Application.js +6 -15
- package/lib/application/WebSocketClient.js +2 -2
- package/lib/application/components/index.js +0 -18
- package/lib/application/utils/globalDeps.js +3 -11
- package/lib/block-provider/FormFieldProvider.js +1 -1
- package/lib/block-provider/hooks/index.js +14 -14
- package/lib/block-provider/hooks/useParsedFilter.js +1 -1
- package/lib/built-in/acl/Configuration/RolesResourcesActions.js +4 -4
- package/lib/built-in/context-menu/ContextMenuItemsProps.js +1 -1
- package/lib/built-in/index.js +42 -16
- package/lib/built-in/page-style/useTabSettings.js +3 -3
- package/lib/built-in/pm/PluginManager.js +1 -1
- package/lib/built-in/quick-access/ModalActionSchemaInitializerItem.js +1 -1
- package/lib/collection-manager/Configuration/AddCollectionAction.js +2 -2
- package/lib/collection-manager/Configuration/AddFieldAction.js +2 -2
- package/lib/collection-manager/Configuration/AddSubFieldAction.js +2 -2
- package/lib/collection-manager/Configuration/EditCollectionAction.js +2 -2
- package/lib/collection-manager/Configuration/EditFieldAction.js +2 -2
- package/lib/collection-manager/Configuration/EditSubFieldAction.js +2 -2
- package/lib/collection-manager/Configuration/ImportXlsx/xlsxImportAction.js +2 -2
- package/lib/collection-manager/Configuration/OverridingCollectionField.js +2 -2
- package/lib/collection-manager/Configuration/SyncFieldsAction.js +2 -2
- package/lib/collection-manager/Configuration/SyncSQLFieldsAction.js +2 -2
- package/lib/collection-manager/Configuration/ViewInheritedField.js +2 -2
- package/lib/collection-manager/collectionPlugin.js +36 -0
- package/lib/collection-manager/interfaces/json.js +3 -3
- package/lib/collection-manager/interfaces/url.js +10 -1
- package/lib/collection-manager/templates/expression.js +1 -1
- package/lib/data-source/collection-field-interface/CollectionFieldInterface.js +1 -15
- package/lib/filter-provider/utils.js +1 -1
- package/lib/locale/zh-CN.js +1 -0
- package/lib/modules/actions/link/customizeLinkActionSettings.js +2 -2
- package/lib/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.js +2 -2
- package/lib/modules/blocks/data-blocks/form/fieldSettingsFormItem.js +3 -6
- package/lib/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.js +2 -2
- package/lib/modules/blocks/data-blocks/list/listBlockSettings.js +2 -2
- package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockProps.js +14 -2
- package/lib/modules/blocks/data-blocks/table/tableBlockSettings.js +2 -2
- package/lib/modules/blocks/data-blocks/table/tableColumnSettings.js +1 -3
- package/lib/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.js +2 -2
- package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.js +0 -4
- package/lib/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.js +3 -7
- package/lib/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.js +3 -3
- package/lib/modules/fields/component/Cascader/cascaderComponentFieldSettings.js +2 -2
- package/lib/modules/fields/component/CustomTitle/customTitleComponentFieldSettings.js +93 -3
- package/lib/modules/fields/component/InputPreview/inputPreviewComponentFieldSettings.js +133 -0
- package/lib/modules/fields/component/MultipleSelect/multipleSelectComponentFieldSettings.js +98 -0
- package/lib/modules/fields/component/Radio/radioComponentFieldSettings.js +16 -3
- package/lib/modules/fields/component/Select/selectComponentFieldSettings.js +23 -4
- package/lib/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.js +3 -3
- package/lib/modules/menu/GroupItem.js +2 -2
- package/lib/modules/menu/LinkMenuItem.js +2 -2
- package/lib/modules/menu/PageMenuItem.js +2 -2
- package/lib/modules/menu/UploadMenuItem.js +2 -2
- package/lib/schema-component/antd/action/Action.Designer.js +3 -3
- package/lib/schema-component/antd/action/Action.js +1 -1
- package/lib/schema-component/antd/association-field/InternalCascadeSelect.js +4 -4
- package/lib/schema-component/antd/association-field/InternalCascader.js +4 -5
- package/lib/schema-component/antd/association-field/InternalNester.js +2 -2
- package/lib/schema-component/antd/association-field/InternalSubTable.js +2 -2
- package/lib/schema-component/antd/association-field/InternalViewer.js +1 -55
- package/lib/schema-component/antd/association-field/SubTabs/InternalCollapse.js +1 -1
- package/lib/schema-component/antd/association-field/SubTabs/hook.js +1 -1
- package/lib/schema-component/antd/association-field/hooks.js +55 -1
- package/lib/schema-component/antd/association-field/util.js +1 -1
- package/lib/schema-component/antd/association-select/AssociationSelect.js +12 -12
- package/lib/schema-component/antd/auto-complete/AutoComplete.js +1 -1
- package/lib/schema-component/antd/color-picker/ColorPicker.js +2 -2
- package/lib/schema-component/antd/color-picker/util.js +1 -1
- package/lib/schema-component/antd/cron/Cron.js +1 -1
- package/lib/schema-component/antd/date-picker/ReadPretty.js +1 -1
- package/lib/schema-component/antd/date-picker/util.js +1 -1
- package/lib/schema-component/antd/filter/FilterAction.js +1 -1
- package/lib/schema-component/antd/form/Form.js +3 -3
- package/lib/schema-component/antd/form-item/FormItem.Settings.js +3 -3
- package/lib/schema-component/antd/form-item/FormItem.js +2 -2
- package/lib/schema-component/antd/form-item/SchemaSettingOptions.js +5 -5
- package/lib/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.js +1 -1
- package/lib/schema-component/antd/form-item/hooks/useParseDefaultValue.js +1 -1
- package/lib/schema-component/antd/form-v2/Form.Settings.js +2 -2
- package/lib/schema-component/antd/form-v2/Form.js +3 -4
- package/lib/schema-component/antd/form-v2/Templates.js +1 -1
- package/lib/schema-component/antd/form-v2/utils.js +2 -3
- package/lib/schema-component/antd/grid-card/GridCard.Decorator.js +2 -2
- package/lib/schema-component/antd/grid-card/GridCard.Designer.js +2 -2
- package/lib/schema-component/antd/icon-picker/IconPicker.js +2 -2
- package/lib/schema-component/antd/index.js +120 -187
- package/lib/schema-component/antd/input/Input.js +2 -1
- package/lib/schema-component/antd/input/ReadPretty.js +34 -6
- package/lib/schema-component/antd/input-number/ReadPretty.js +1 -1
- package/lib/schema-component/antd/list/List.Decorator.js +2 -2
- package/lib/schema-component/antd/list/List.Designer.js +2 -2
- package/lib/schema-component/antd/menu/Menu.Designer.js +2 -2
- package/lib/schema-component/antd/menu/Menu.js +1 -1
- package/lib/schema-component/antd/page/Page.Settings.js +0 -33
- package/lib/schema-component/antd/page/Page.js +43 -92
- package/lib/schema-component/antd/page/hooks/index.js +5 -5
- package/lib/schema-component/antd/page/index.js +9 -0
- package/lib/{application/components/ShareSchemaComponent.js → schema-component/antd/page/pageExtendComponentProvider.js} +15 -10
- package/lib/schema-component/antd/page/style.js +2 -49
- package/lib/schema-component/antd/preview/Preview.js +2 -2
- package/lib/schema-component/antd/quick-edit/QuickEdit.js +3 -3
- package/lib/schema-component/antd/record-picker/util.js +1 -1
- package/lib/schema-component/antd/select/FormulaSelect.js +17 -5
- package/lib/schema-component/antd/select/ReadPretty.js +15 -2
- package/lib/schema-component/antd/select/Select.js +7 -2
- package/lib/schema-component/antd/select/utils.js +2 -2
- package/lib/schema-component/antd/space/index.js +2 -2
- package/lib/schema-component/antd/table/Table.Void.Designer.js +2 -2
- package/lib/schema-component/antd/table-v2/Table.js +1 -1
- package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +2 -2
- package/lib/schema-component/antd/table-v2/TableSelectorDesigner.js +2 -2
- package/lib/schema-component/antd/time-picker/ReadPretty.js +2 -2
- package/lib/schema-component/antd/time-picker/TimePicker.js +3 -3
- package/lib/schema-component/antd/tree-select/ReadPretty.js +2 -2
- package/lib/schema-component/antd/upload/ReadPretty.js +2 -3
- package/lib/schema-component/antd/upload/Upload.js +2 -2
- package/lib/schema-component/antd/variable/CodeMirror.js +2 -2
- package/lib/schema-component/antd/variable/Input.js +1 -1
- package/lib/schema-component/antd/variable/TextArea.js +1 -1
- package/lib/schema-component/common/infinite-scroll/infinite-scroll.js +1 -1
- package/lib/schema-component/hooks/useFieldModeOptions.js +13 -10
- package/lib/schema-initializer/items/CustomFilterFormItemInitializer.js +4 -4
- package/lib/schema-settings/DataTemplates/components/AsDefaultTemplate.js +3 -3
- package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.js +10 -10
- package/lib/schema-settings/DataTemplates/components/Designer.js +1 -1
- package/lib/schema-settings/DataTemplates/utils.js +4 -4
- package/lib/schema-settings/EditFormulaTitleField.js +19 -1
- package/lib/schema-settings/LinkageRules/LinkageRuleAction.js +2 -2
- package/lib/schema-settings/LinkageRules/components/EnableLinkage.js +3 -3
- package/lib/schema-settings/LinkageRules/components/LinkageHeader.js +10 -10
- package/lib/schema-settings/SchemaSettings.js +17 -18
- package/lib/schema-settings/SchemaSettingsDefaultValue.js +3 -3
- package/lib/schema-settings/SchemaSettingsPlugin.js +4 -0
- package/lib/schema-settings/SchemaSettingsSortingRule.js +2 -2
- package/lib/schema-settings/VariableInput/hooks/useContextAssociationFields.js +1 -1
- package/lib/schema-settings/filter-form/FormFilterScope.js +2 -2
- package/lib/schema-settings/hooks/useParseDataScopeFilter.js +1 -1
- package/lib/user/ChangePassword.js +2 -2
- package/lib/user/CurrentUser.js +1 -1
- package/lib/user/CurrentUserSettingsMenuProvider.js +1 -1
- package/lib/variables/VariablesProvider.js +2 -2
- package/lib/variables/hooks/useBuiltinVariables.js +1 -1
- package/package.json +9 -23
- package/es/application/components/SharePage.d.ts +0 -4
- package/es/application/components/SharePage.mjs +0 -113
- package/es/application/components/ShareSchemaComponent.d.ts +0 -1
- package/es/application/components/ShareSchemaComponent.mjs +0 -10
- package/es/schema-component/antd/page/hooks/useShareActions.d.ts +0 -7
- package/es/schema-component/antd/page/hooks/useShareActions.mjs +0 -242
- package/lib/application/components/SharePage.js +0 -156
- package/lib/schema-component/antd/page/hooks/useShareActions.js +0 -286
|
@@ -38,11 +38,10 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
38
38
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
39
39
|
const external_react_namespaceObject = require("react");
|
|
40
40
|
var external_react_default = /*#__PURE__*/ __webpack_require__.n(external_react_namespaceObject);
|
|
41
|
-
const requirejs_namespaceObject = require("@tachybase/requirejs");
|
|
42
41
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
43
|
-
const
|
|
42
|
+
const client_namespaceObject = require("@tego/client");
|
|
44
43
|
const external_lodash_namespaceObject = require("lodash");
|
|
45
|
-
const
|
|
44
|
+
const external_react_dom_client_namespaceObject = require("react-dom/client");
|
|
46
45
|
const external_react_i18next_namespaceObject = require("react-i18next");
|
|
47
46
|
const external_react_router_dom_namespaceObject = require("react-router-dom");
|
|
48
47
|
const index_js_namespaceObject = require("../api-client/index.js");
|
|
@@ -88,7 +87,7 @@ class Application {
|
|
|
88
87
|
return "/apps/".concat(this.name, "/admin/");
|
|
89
88
|
}
|
|
90
89
|
initRequireJs() {
|
|
91
|
-
this.requirejs = (0,
|
|
90
|
+
this.requirejs = (0, client_namespaceObject.getRequireJs)();
|
|
92
91
|
(0, globalDeps_js_namespaceObject.defineGlobalDeps)(this.requirejs);
|
|
93
92
|
window.define = this.requirejs.define;
|
|
94
93
|
window.require = this.requirejs.require;
|
|
@@ -125,14 +124,6 @@ class Application {
|
|
|
125
124
|
path: '*',
|
|
126
125
|
Component: this.components['AppNotFound']
|
|
127
126
|
});
|
|
128
|
-
this.router.add('share', {
|
|
129
|
-
path: '/share',
|
|
130
|
-
Component: external_components_index_js_namespaceObject.SharePage
|
|
131
|
-
});
|
|
132
|
-
this.router.add('share.page', {
|
|
133
|
-
path: '/share/:name',
|
|
134
|
-
Component: external_components_index_js_namespaceObject.ShareSchemaComponent
|
|
135
|
-
});
|
|
136
127
|
this.router.add('share.notAuthorized', {
|
|
137
128
|
path: '/share/not-authorized',
|
|
138
129
|
element: null
|
|
@@ -145,7 +136,7 @@ class Application {
|
|
|
145
136
|
return this.options.publicPath || '/';
|
|
146
137
|
}
|
|
147
138
|
getName() {
|
|
148
|
-
return (0,
|
|
139
|
+
return (0, client_namespaceObject.getSubAppName)(this.getPublicPath()) || null;
|
|
149
140
|
}
|
|
150
141
|
getApiUrl() {
|
|
151
142
|
let pathname = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : '';
|
|
@@ -276,7 +267,7 @@ class Application {
|
|
|
276
267
|
const container = (0, external_utils_index_js_namespaceObject.normalizeContainer)(containerOrSelector);
|
|
277
268
|
if (!container) return;
|
|
278
269
|
const App = this.getRootComponent();
|
|
279
|
-
const root = (0,
|
|
270
|
+
const root = (0, external_react_dom_client_namespaceObject.createRoot)(container);
|
|
280
271
|
root.render(/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(App, {}));
|
|
281
272
|
return root;
|
|
282
273
|
}
|
|
@@ -358,7 +349,7 @@ class Application {
|
|
|
358
349
|
this.systemSettingsManager = new external_SystemSettingsManager_js_namespaceObject.SystemSettingsManager(options.pluginSettings, this);
|
|
359
350
|
this.userSettingsManager = new external_UserSettingsManager_js_namespaceObject.UserSettingsManager(options.userSettings, this);
|
|
360
351
|
this.addRoutes();
|
|
361
|
-
this.name = this.options.name || (0,
|
|
352
|
+
this.name = this.options.name || (0, client_namespaceObject.getSubAppName)(options.publicPath) || 'main';
|
|
362
353
|
this.pluginContextMenu = new external_PluginContextMenu_js_namespaceObject.PluginContextMenu(options.pluginMenuItems);
|
|
363
354
|
this.AttachmentPreviewManager = new external_AttachmentPreviewManager_js_namespaceObject.AttachmentPreviewManager(options.attachmentItem, this);
|
|
364
355
|
this.i18n.on('languageChanged', (lng)=>{
|
|
@@ -27,7 +27,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
27
27
|
WebSocketClient: ()=>WebSocketClient
|
|
28
28
|
});
|
|
29
29
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
30
|
-
const
|
|
30
|
+
const client_namespaceObject = require("@tego/client");
|
|
31
31
|
function _define_property(obj, key, value) {
|
|
32
32
|
if (key in obj) Object.defineProperty(obj, key, {
|
|
33
33
|
value: value,
|
|
@@ -45,7 +45,7 @@ class WebSocketClient {
|
|
|
45
45
|
const options = this.app.getOptions();
|
|
46
46
|
const apiBaseURL = null == options ? void 0 : null == (_options_apiClient = options.apiClient) ? void 0 : _options_apiClient['baseURL'];
|
|
47
47
|
if (!apiBaseURL) return;
|
|
48
|
-
const subApp = (0,
|
|
48
|
+
const subApp = (0, client_namespaceObject.getSubAppName)(this.app.getPublicPath());
|
|
49
49
|
const queryString = subApp ? "?__appName=".concat(subApp) : "?__hostname=".concat(window.location.hostname);
|
|
50
50
|
const wsPath = this.options.basename || '/ws';
|
|
51
51
|
if (this.options.url) {
|
|
@@ -9,12 +9,6 @@ var __webpack_modules__ = {
|
|
|
9
9
|
"./RouterContextCleaner": function(module) {
|
|
10
10
|
module.exports = require("./RouterContextCleaner.js");
|
|
11
11
|
},
|
|
12
|
-
"./SharePage": function(module) {
|
|
13
|
-
module.exports = require("./SharePage.js");
|
|
14
|
-
},
|
|
15
|
-
"./ShareSchemaComponent": function(module) {
|
|
16
|
-
module.exports = require("./ShareSchemaComponent.js");
|
|
17
|
-
},
|
|
18
12
|
"./defaultComponents": function(module) {
|
|
19
13
|
module.exports = require("./defaultComponents.js");
|
|
20
14
|
}
|
|
@@ -86,18 +80,6 @@ var __webpack_exports__ = {};
|
|
|
86
80
|
return _RouterContextCleaner__WEBPACK_IMPORTED_MODULE_3__[key];
|
|
87
81
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
88
82
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
89
|
-
var _SharePage__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("./SharePage");
|
|
90
|
-
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
91
|
-
for(var __WEBPACK_IMPORT_KEY__ in _SharePage__WEBPACK_IMPORTED_MODULE_4__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
92
|
-
return _SharePage__WEBPACK_IMPORTED_MODULE_4__[key];
|
|
93
|
-
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
94
|
-
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
95
|
-
var _ShareSchemaComponent__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("./ShareSchemaComponent");
|
|
96
|
-
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
97
|
-
for(var __WEBPACK_IMPORT_KEY__ in _ShareSchemaComponent__WEBPACK_IMPORTED_MODULE_5__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
98
|
-
return _ShareSchemaComponent__WEBPACK_IMPORTED_MODULE_5__[key];
|
|
99
|
-
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
100
|
-
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
101
83
|
})();
|
|
102
84
|
for(var __webpack_i__ in __webpack_exports__)exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
103
85
|
Object.defineProperty(exports, '__esModule', {
|
|
@@ -37,12 +37,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
37
37
|
});
|
|
38
38
|
const external_react_namespaceObject = require("react");
|
|
39
39
|
var external_react_default = /*#__PURE__*/ __webpack_require__.n(external_react_namespaceObject);
|
|
40
|
-
const components_namespaceObject = require("@tachybase/components");
|
|
41
|
-
const client_namespaceObject = require("@tachybase/evaluators/client");
|
|
42
|
-
const requirejs_namespaceObject = require("@tachybase/requirejs");
|
|
43
40
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
44
|
-
const sdk_namespaceObject = require("@tachybase/sdk");
|
|
45
|
-
const utils_client_namespaceObject = require("@tachybase/utils/client");
|
|
46
41
|
const cssinjs_namespaceObject = require("@ant-design/cssinjs");
|
|
47
42
|
const icons_namespaceObject = require("@ant-design/icons");
|
|
48
43
|
const accessibility_namespaceObject = require("@dnd-kit/accessibility");
|
|
@@ -52,6 +47,7 @@ const sortable_namespaceObject = require("@dnd-kit/sortable");
|
|
|
52
47
|
const utilities_namespaceObject = require("@dnd-kit/utilities");
|
|
53
48
|
const css_namespaceObject = require("@emotion/css");
|
|
54
49
|
const react_namespaceObject = require("@floating-ui/react");
|
|
50
|
+
const client_namespaceObject = require("@tego/client");
|
|
55
51
|
const external_ahooks_namespaceObject = require("ahooks");
|
|
56
52
|
const external_antd_namespaceObject = require("antd");
|
|
57
53
|
const external_antd_style_namespaceObject = require("antd-style");
|
|
@@ -80,20 +76,16 @@ function defineGlobalDeps(requirejs) {
|
|
|
80
76
|
requirejs.define('@ant-design/cssinjs', ()=>cssinjs_namespaceObject);
|
|
81
77
|
requirejs.define('i18next', ()=>external_i18next_namespaceObject);
|
|
82
78
|
requirejs.define('react-i18next', ()=>external_react_i18next_namespaceObject);
|
|
83
|
-
requirejs.define('@
|
|
79
|
+
requirejs.define('@tego/client', ()=>client_namespaceObject);
|
|
84
80
|
requirejs.define('@tachybase/client', ()=>external_index_js_namespaceObject);
|
|
85
|
-
requirejs.define('@tachybase/evaluators/client', ()=>client_namespaceObject);
|
|
86
|
-
requirejs.define('@tachybase/sdk', ()=>sdk_namespaceObject);
|
|
87
81
|
requirejs.define('@tachybase/schema', ()=>schema_namespaceObject);
|
|
88
|
-
requirejs.define('@tachybase/requirejs', ()=>requirejs_namespaceObject);
|
|
89
|
-
requirejs.define('@tachybase/components', ()=>components_namespaceObject);
|
|
90
82
|
requirejs.define('@dnd-kit/accessibility', ()=>accessibility_namespaceObject);
|
|
91
83
|
requirejs.define('@dnd-kit/core', ()=>core_namespaceObject);
|
|
92
84
|
requirejs.define('@dnd-kit/modifiers', ()=>modifiers_namespaceObject);
|
|
93
85
|
requirejs.define('@dnd-kit/sortable', ()=>sortable_namespaceObject);
|
|
94
86
|
requirejs.define('@dnd-kit/utilities', ()=>utilities_namespaceObject);
|
|
95
87
|
requirejs.define('axios', ()=>external_axios_default());
|
|
96
|
-
requirejs.define('dayjs', ()=>
|
|
88
|
+
requirejs.define('dayjs', ()=>client_namespaceObject.dayjs);
|
|
97
89
|
requirejs.define('lodash', ()=>external_lodash_default());
|
|
98
90
|
requirejs.define('ahooks', ()=>external_ahooks_namespaceObject);
|
|
99
91
|
requirejs.define('@emotion/css', ()=>css_namespaceObject);
|
|
@@ -33,7 +33,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
33
33
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
34
34
|
const external_react_namespaceObject = require("react");
|
|
35
35
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
36
|
-
const client_namespaceObject = require("@
|
|
36
|
+
const client_namespaceObject = require("@tego/client");
|
|
37
37
|
const external_antd_namespaceObject = require("antd");
|
|
38
38
|
const CollectionRecordProvider_js_namespaceObject = require("../data-source/collection-record/CollectionRecordProvider.js");
|
|
39
39
|
const index_js_namespaceObject = require("../record-provider/index.js");
|
|
@@ -63,8 +63,8 @@ var __webpack_modules__ = {
|
|
|
63
63
|
"@tachybase/schema": function(module) {
|
|
64
64
|
module.exports = require("@tachybase/schema");
|
|
65
65
|
},
|
|
66
|
-
"@
|
|
67
|
-
module.exports = require("@
|
|
66
|
+
"@tego/client": function(module) {
|
|
67
|
+
module.exports = require("@tego/client");
|
|
68
68
|
},
|
|
69
69
|
antd: function(module) {
|
|
70
70
|
module.exports = require("antd");
|
|
@@ -169,7 +169,7 @@ var __webpack_exports__ = {};
|
|
|
169
169
|
});
|
|
170
170
|
var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("react");
|
|
171
171
|
var _tachybase_schema__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("@tachybase/schema");
|
|
172
|
-
var
|
|
172
|
+
var _tego_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("@tego/client");
|
|
173
173
|
var antd__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("antd");
|
|
174
174
|
var flat__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("flat");
|
|
175
175
|
var flat__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/ __webpack_require__.n(flat__WEBPACK_IMPORTED_MODULE_4__);
|
|
@@ -592,14 +592,14 @@ var __webpack_exports__ = {};
|
|
|
592
592
|
title: successMessage,
|
|
593
593
|
onOk: async ()=>{
|
|
594
594
|
await resetFormCorrectly(form);
|
|
595
|
-
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0,
|
|
595
|
+
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.isURL)(onSuccess.redirectTo)) window.location.href = onSuccess.redirectTo;
|
|
596
596
|
else navigate(onSuccess.redirectTo);
|
|
597
597
|
}
|
|
598
598
|
});
|
|
599
599
|
else {
|
|
600
600
|
message.success(successMessage);
|
|
601
601
|
await resetFormCorrectly(form);
|
|
602
|
-
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0,
|
|
602
|
+
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.isURL)(onSuccess.redirectTo)) window.location.href = onSuccess.redirectTo;
|
|
603
603
|
else navigate(onSuccess.redirectTo);
|
|
604
604
|
}
|
|
605
605
|
if (!(null == onSuccess ? void 0 : onSuccess.popupClose)) {
|
|
@@ -870,13 +870,13 @@ var __webpack_exports__ = {};
|
|
|
870
870
|
if (null == onSuccess ? void 0 : onSuccess.manualClose) modal.success({
|
|
871
871
|
title: compile(null == onSuccess ? void 0 : onSuccess.successMessage),
|
|
872
872
|
onOk: async ()=>{
|
|
873
|
-
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0,
|
|
873
|
+
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.isURL)(onSuccess.redirectTo)) window.location.href = onSuccess.redirectTo;
|
|
874
874
|
else navigate(onSuccess.redirectTo);
|
|
875
875
|
}
|
|
876
876
|
});
|
|
877
877
|
else {
|
|
878
878
|
message.success(compile(null == onSuccess ? void 0 : onSuccess.successMessage));
|
|
879
|
-
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0,
|
|
879
|
+
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.isURL)(onSuccess.redirectTo)) window.location.href = onSuccess.redirectTo;
|
|
880
880
|
else navigate(onSuccess.redirectTo);
|
|
881
881
|
}
|
|
882
882
|
}
|
|
@@ -933,15 +933,15 @@ var __webpack_exports__ = {};
|
|
|
933
933
|
currentUser
|
|
934
934
|
}),
|
|
935
935
|
method: requestSettings['method'],
|
|
936
|
-
headers: (0,
|
|
936
|
+
headers: (0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.parse)(headers)({
|
|
937
937
|
currentRecord,
|
|
938
938
|
currentUser
|
|
939
939
|
}),
|
|
940
|
-
params: (0,
|
|
940
|
+
params: (0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.parse)(params)({
|
|
941
941
|
currentRecord,
|
|
942
942
|
currentUser
|
|
943
943
|
}),
|
|
944
|
-
data: (0,
|
|
944
|
+
data: (0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.parse)(data)({
|
|
945
945
|
currentRecord,
|
|
946
946
|
currentUser
|
|
947
947
|
})
|
|
@@ -964,7 +964,7 @@ var __webpack_exports__ = {};
|
|
|
964
964
|
if (null == onSuccess ? void 0 : onSuccess.manualClose) modal.success({
|
|
965
965
|
title: compile(null == onSuccess ? void 0 : onSuccess.successMessage),
|
|
966
966
|
onOk: async ()=>{
|
|
967
|
-
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0,
|
|
967
|
+
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.isURL)(onSuccess.redirectTo)) window.location.href = onSuccess.redirectTo;
|
|
968
968
|
else navigate(onSuccess.redirectTo);
|
|
969
969
|
}
|
|
970
970
|
});
|
|
@@ -1054,13 +1054,13 @@ var __webpack_exports__ = {};
|
|
|
1054
1054
|
title: compile(null == onSuccess ? void 0 : onSuccess.successMessage),
|
|
1055
1055
|
onOk: async ()=>{
|
|
1056
1056
|
await form.reset();
|
|
1057
|
-
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0,
|
|
1057
|
+
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.isURL)(onSuccess.redirectTo)) window.location.href = onSuccess.redirectTo;
|
|
1058
1058
|
else navigate(onSuccess.redirectTo);
|
|
1059
1059
|
}
|
|
1060
1060
|
});
|
|
1061
1061
|
else {
|
|
1062
1062
|
message.success(compile(null == onSuccess ? void 0 : onSuccess.successMessage));
|
|
1063
|
-
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0,
|
|
1063
|
+
if ((null == onSuccess ? void 0 : onSuccess.redirecting) && (null == onSuccess ? void 0 : onSuccess.redirectTo)) if ((0, _tego_client__WEBPACK_IMPORTED_MODULE_2__.isURL)(onSuccess.redirectTo)) window.location.href = onSuccess.redirectTo;
|
|
1064
1064
|
else navigate(onSuccess.redirectTo);
|
|
1065
1065
|
}
|
|
1066
1066
|
} catch (error) {
|
|
@@ -1439,7 +1439,7 @@ var __webpack_exports__ = {};
|
|
|
1439
1439
|
appends.add(append);
|
|
1440
1440
|
});
|
|
1441
1441
|
}
|
|
1442
|
-
if (null == (_s_xcomponentprops1 = s['x-component-props']) ? void 0 : null == (_s_xcomponentprops_fieldNames = _s_xcomponentprops1.fieldNames) ? void 0 : _s_xcomponentprops_fieldNames.formula) {
|
|
1442
|
+
if ((null == (_s_xcomponentprops1 = s['x-component-props']) ? void 0 : null == (_s_xcomponentprops_fieldNames = _s_xcomponentprops1.fieldNames) ? void 0 : _s_xcomponentprops_fieldNames.formula) && isAssociationField) {
|
|
1443
1443
|
var _s_xcomponentprops_fieldNames1, _s_xcomponentprops4;
|
|
1444
1444
|
appends.add(s['name']);
|
|
1445
1445
|
const regex = /{{(.*?)}}/g;
|
|
@@ -37,7 +37,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
37
37
|
});
|
|
38
38
|
const external_react_namespaceObject = require("react");
|
|
39
39
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
40
|
-
const client_namespaceObject = require("@
|
|
40
|
+
const client_namespaceObject = require("@tego/client");
|
|
41
41
|
const external_ahooks_namespaceObject = require("ahooks");
|
|
42
42
|
const external_lodash_namespaceObject = require("lodash");
|
|
43
43
|
var external_lodash_default = /*#__PURE__*/ __webpack_require__.n(external_lodash_namespaceObject);
|
|
@@ -29,8 +29,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29
29
|
});
|
|
30
30
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
31
31
|
const external_react_namespaceObject = require("react");
|
|
32
|
-
const components_namespaceObject = require("@tachybase/components");
|
|
33
32
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
33
|
+
const client_namespaceObject = require("@tego/client");
|
|
34
34
|
const external_antd_namespaceObject = require("antd");
|
|
35
35
|
const external_lodash_namespaceObject = require("lodash");
|
|
36
36
|
const external_react_i18next_namespaceObject = require("react-i18next");
|
|
@@ -113,10 +113,10 @@ const RolesResourcesActions = (0, schema_namespaceObject.connect)((props)=>{
|
|
|
113
113
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
114
114
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(RoleResourceCollectionContext.Provider, {
|
|
115
115
|
value: collection,
|
|
116
|
-
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(
|
|
116
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(client_namespaceObject.FormLayout, {
|
|
117
117
|
layout: 'vertical',
|
|
118
118
|
children: [
|
|
119
|
-
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(
|
|
119
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(client_namespaceObject.FormItem, {
|
|
120
120
|
label: t('Action permission'),
|
|
121
121
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_antd_namespaceObject.Table, {
|
|
122
122
|
className: styles,
|
|
@@ -175,7 +175,7 @@ const RolesResourcesActions = (0, schema_namespaceObject.connect)((props)=>{
|
|
|
175
175
|
})
|
|
176
176
|
})
|
|
177
177
|
}),
|
|
178
|
-
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(
|
|
178
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(client_namespaceObject.FormItem, {
|
|
179
179
|
label: t('Field permission'),
|
|
180
180
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_antd_namespaceObject.Table, {
|
|
181
181
|
className: styles,
|
|
@@ -29,7 +29,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29
29
|
fullScreen: ()=>fullScreen,
|
|
30
30
|
disableRightMenu: ()=>disableRightMenu
|
|
31
31
|
});
|
|
32
|
-
const client_namespaceObject = require("@
|
|
32
|
+
const client_namespaceObject = require("@tego/client");
|
|
33
33
|
const external_antd_namespaceObject = require("antd");
|
|
34
34
|
const external_react_i18next_namespaceObject = require("react-i18next");
|
|
35
35
|
const index_js_namespaceObject = require("../../schema-component/index.js");
|
package/lib/built-in/index.js
CHANGED
|
@@ -78,6 +78,9 @@ var __webpack_modules__ = {
|
|
|
78
78
|
"./pinned-list/PluginPinnedList": function(module) {
|
|
79
79
|
module.exports = require("./pinned-list/PluginPinnedList.js");
|
|
80
80
|
},
|
|
81
|
+
"./pinned-list": function(module) {
|
|
82
|
+
module.exports = require("./pinned-list/index.js");
|
|
83
|
+
},
|
|
81
84
|
"./pm": function(module) {
|
|
82
85
|
module.exports = require("./pm/index.js");
|
|
83
86
|
},
|
|
@@ -108,8 +111,8 @@ var __webpack_modules__ = {
|
|
|
108
111
|
"@tachybase/schema": function(module) {
|
|
109
112
|
module.exports = require("@tachybase/schema");
|
|
110
113
|
},
|
|
111
|
-
"@
|
|
112
|
-
module.exports = require("@
|
|
114
|
+
"@tego/client": function(module) {
|
|
115
|
+
module.exports = require("@tego/client");
|
|
113
116
|
},
|
|
114
117
|
antd: function(module) {
|
|
115
118
|
module.exports = require("antd");
|
|
@@ -173,16 +176,18 @@ var __webpack_exports__ = {};
|
|
|
173
176
|
__webpack_require__.d(__webpack_exports__, {
|
|
174
177
|
AdminLayout: ()=>_admin_layout__WEBPACK_IMPORTED_MODULE_40__.AdminLayout,
|
|
175
178
|
AdminProvider: ()=>_admin_layout__WEBPACK_IMPORTED_MODULE_40__.AdminProvider,
|
|
179
|
+
AdminTabs: ()=>_admin_layout__WEBPACK_IMPORTED_MODULE_40__.AdminTabs,
|
|
176
180
|
AppNotFound: ()=>AppNotFound,
|
|
177
181
|
BuiltInPlugin: ()=>BuiltInPlugin,
|
|
182
|
+
MenuEditor: ()=>_admin_layout__WEBPACK_IMPORTED_MODULE_40__.MenuEditor,
|
|
178
183
|
NoticeArea: ()=>_admin_layout__WEBPACK_IMPORTED_MODULE_40__.NoticeArea
|
|
179
184
|
});
|
|
180
185
|
var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("react/jsx-runtime");
|
|
181
186
|
var _tachybase_schema__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("@tachybase/schema");
|
|
182
|
-
var
|
|
183
|
-
var
|
|
184
|
-
var
|
|
185
|
-
var
|
|
187
|
+
var _ant_design_icons__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("@ant-design/icons");
|
|
188
|
+
var _emotion_css__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("@emotion/css");
|
|
189
|
+
var _lottiefiles_dotlottie_react__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("@lottiefiles/dotlottie-react");
|
|
190
|
+
var _tego_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("@tego/client");
|
|
186
191
|
var antd__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__("antd");
|
|
187
192
|
var antd_style__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__("antd-style");
|
|
188
193
|
var react_i18next__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__("react-i18next");
|
|
@@ -218,17 +223,34 @@ var __webpack_exports__ = {};
|
|
|
218
223
|
var _system_version__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__("./system-version");
|
|
219
224
|
var _user_settings__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__("./user-settings");
|
|
220
225
|
var _admin_layout__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__("./admin-layout");
|
|
221
|
-
var
|
|
226
|
+
var _pinned_list__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__("./pinned-list");
|
|
222
227
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
223
|
-
for(var __WEBPACK_IMPORT_KEY__ in
|
|
228
|
+
for(var __WEBPACK_IMPORT_KEY__ in _pinned_list__WEBPACK_IMPORTED_MODULE_41__)if ([
|
|
229
|
+
"default",
|
|
230
|
+
"AdminTabs",
|
|
231
|
+
"MenuEditor",
|
|
232
|
+
"NoticeArea",
|
|
224
233
|
"BuiltInPlugin",
|
|
225
234
|
"AppNotFound",
|
|
226
|
-
"default",
|
|
227
235
|
"AdminProvider",
|
|
236
|
+
"AdminLayout"
|
|
237
|
+
].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
238
|
+
return _pinned_list__WEBPACK_IMPORTED_MODULE_41__[key];
|
|
239
|
+
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
240
|
+
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
241
|
+
var _context_menu_useContextMenu__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__("./context-menu/useContextMenu");
|
|
242
|
+
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
243
|
+
for(var __WEBPACK_IMPORT_KEY__ in _context_menu_useContextMenu__WEBPACK_IMPORTED_MODULE_42__)if ([
|
|
244
|
+
"default",
|
|
245
|
+
"AdminTabs",
|
|
246
|
+
"MenuEditor",
|
|
228
247
|
"NoticeArea",
|
|
248
|
+
"BuiltInPlugin",
|
|
249
|
+
"AppNotFound",
|
|
250
|
+
"AdminProvider",
|
|
229
251
|
"AdminLayout"
|
|
230
252
|
].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
231
|
-
return
|
|
253
|
+
return _context_menu_useContextMenu__WEBPACK_IMPORTED_MODULE_42__[key];
|
|
232
254
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
233
255
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
234
256
|
function _tagged_template_literal(strings, raw) {
|
|
@@ -258,8 +280,8 @@ var __webpack_exports__ = {};
|
|
|
258
280
|
return data;
|
|
259
281
|
}
|
|
260
282
|
const AppSpin = ()=>/*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div", {
|
|
261
|
-
className: (0,
|
|
262
|
-
children: /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
|
|
283
|
+
className: (0, _emotion_css__WEBPACK_IMPORTED_MODULE_3__.css)(_templateObject()),
|
|
284
|
+
children: /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_lottiefiles_dotlottie_react__WEBPACK_IMPORTED_MODULE_4__.DotLottieReact, {
|
|
263
285
|
style: {
|
|
264
286
|
width: '100%',
|
|
265
287
|
maxWidth: '640px'
|
|
@@ -280,7 +302,7 @@ var __webpack_exports__ = {};
|
|
|
280
302
|
const api = (0, _api_client__WEBPACK_IMPORTED_MODULE_10__.useAPIClient)();
|
|
281
303
|
if (!error) return {};
|
|
282
304
|
const err = (null == error ? void 0 : null == (_error_response = error.response) ? void 0 : null == (_error_response_data = _error_response.data) ? void 0 : null == (_error_response_data_errors = _error_response_data.errors) ? void 0 : _error_response_data_errors[0]) || error;
|
|
283
|
-
const subApp = (0,
|
|
305
|
+
const subApp = (0, _tego_client__WEBPACK_IMPORTED_MODULE_5__.getSubAppName)(app.getPublicPath());
|
|
284
306
|
switch(err.code){
|
|
285
307
|
case 'USER_HAS_NO_ROLES_ERR':
|
|
286
308
|
return {
|
|
@@ -331,7 +353,7 @@ var __webpack_exports__ = {};
|
|
|
331
353
|
const getProps = (app)=>{
|
|
332
354
|
if (app.ws.serverDown) return {
|
|
333
355
|
status: 'error',
|
|
334
|
-
icon: /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
|
|
356
|
+
icon: /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_ant_design_icons__WEBPACK_IMPORTED_MODULE_2__.DisconnectOutlined, {}),
|
|
335
357
|
title: "You're offline",
|
|
336
358
|
subTitle: 'Please check the server status or network connection status'
|
|
337
359
|
};
|
|
@@ -348,7 +370,7 @@ var __webpack_exports__ = {};
|
|
|
348
370
|
var _app_error1;
|
|
349
371
|
return {
|
|
350
372
|
status: 'info',
|
|
351
|
-
icon: /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
|
|
373
|
+
icon: /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_ant_design_icons__WEBPACK_IMPORTED_MODULE_2__.LoadingOutlined, {}),
|
|
352
374
|
title: 'App initializing',
|
|
353
375
|
subTitle: null == (_app_error1 = app.error) ? void 0 : _app_error1.message
|
|
354
376
|
};
|
|
@@ -389,7 +411,7 @@ var __webpack_exports__ = {};
|
|
|
389
411
|
var _app_error_command, _app_error6, _app_error7, _app_error_command1, _app_error8;
|
|
390
412
|
const props = {
|
|
391
413
|
status: 'info',
|
|
392
|
-
icon: /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
|
|
414
|
+
icon: /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_ant_design_icons__WEBPACK_IMPORTED_MODULE_2__.LoadingOutlined, {}),
|
|
393
415
|
title: null == (_app_error6 = app.error) ? void 0 : null == (_app_error_command = _app_error6.command) ? void 0 : _app_error_command.name,
|
|
394
416
|
subTitle: null == (_app_error7 = app.error) ? void 0 : _app_error7.message
|
|
395
417
|
};
|
|
@@ -689,14 +711,18 @@ var __webpack_exports__ = {};
|
|
|
689
711
|
})();
|
|
690
712
|
exports.AdminLayout = __webpack_exports__.AdminLayout;
|
|
691
713
|
exports.AdminProvider = __webpack_exports__.AdminProvider;
|
|
714
|
+
exports.AdminTabs = __webpack_exports__.AdminTabs;
|
|
692
715
|
exports.AppNotFound = __webpack_exports__.AppNotFound;
|
|
693
716
|
exports.BuiltInPlugin = __webpack_exports__.BuiltInPlugin;
|
|
717
|
+
exports.MenuEditor = __webpack_exports__.MenuEditor;
|
|
694
718
|
exports.NoticeArea = __webpack_exports__.NoticeArea;
|
|
695
719
|
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
696
720
|
"AdminLayout",
|
|
697
721
|
"AdminProvider",
|
|
722
|
+
"AdminTabs",
|
|
698
723
|
"AppNotFound",
|
|
699
724
|
"BuiltInPlugin",
|
|
725
|
+
"MenuEditor",
|
|
700
726
|
"NoticeArea"
|
|
701
727
|
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
702
728
|
Object.defineProperty(exports, '__esModule', {
|
|
@@ -30,7 +30,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
30
30
|
});
|
|
31
31
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
32
32
|
const external_react_namespaceObject = require("react");
|
|
33
|
-
const client_namespaceObject = require("@
|
|
33
|
+
const client_namespaceObject = require("@tego/client");
|
|
34
34
|
const external_react_i18next_namespaceObject = require("react-i18next");
|
|
35
35
|
const index_js_namespaceObject = require("../../api-client/index.js");
|
|
36
36
|
const external_common_index_js_namespaceObject = require("../../common/index.js");
|
|
@@ -71,7 +71,7 @@ function useUpdatePageStyleSettings() {
|
|
|
71
71
|
await api.resource('users').updateProfile({
|
|
72
72
|
values: {
|
|
73
73
|
systemSettings: {
|
|
74
|
-
...currentUser.data.data.systemSettings
|
|
74
|
+
...currentUser.data.data.systemSettings,
|
|
75
75
|
pageStyle
|
|
76
76
|
}
|
|
77
77
|
}
|
|
@@ -80,7 +80,7 @@ function useUpdatePageStyleSettings() {
|
|
|
80
80
|
data: {
|
|
81
81
|
...currentUser.data.data,
|
|
82
82
|
systemSettings: {
|
|
83
|
-
...currentUser.data.data.systemSettings
|
|
83
|
+
...currentUser.data.data.systemSettings,
|
|
84
84
|
pageStyle
|
|
85
85
|
}
|
|
86
86
|
}
|
|
@@ -37,7 +37,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
37
37
|
});
|
|
38
38
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
39
39
|
const external_react_namespaceObject = require("react");
|
|
40
|
-
const client_namespaceObject = require("@
|
|
40
|
+
const client_namespaceObject = require("@tego/client");
|
|
41
41
|
const external_ahooks_namespaceObject = require("ahooks");
|
|
42
42
|
const external_antd_namespaceObject = require("antd");
|
|
43
43
|
const external_lodash_namespaceObject = require("lodash");
|
|
@@ -29,7 +29,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29
29
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
30
30
|
const external_react_namespaceObject = require("react");
|
|
31
31
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
32
|
-
const client_namespaceObject = require("@
|
|
32
|
+
const client_namespaceObject = require("@tego/client");
|
|
33
33
|
const index_js_namespaceObject = require("../../application/index.js");
|
|
34
34
|
const external_schema_component_index_js_namespaceObject = require("../../schema-component/index.js");
|
|
35
35
|
function ModalActionSchemaInitializerItem(props) {
|
|
@@ -29,9 +29,9 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29
29
|
});
|
|
30
30
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
31
31
|
const external_react_namespaceObject = require("react");
|
|
32
|
-
const components_namespaceObject = require("@tachybase/components");
|
|
33
32
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
34
33
|
const icons_namespaceObject = require("@ant-design/icons");
|
|
34
|
+
const client_namespaceObject = require("@tego/client");
|
|
35
35
|
const external_antd_namespaceObject = require("antd");
|
|
36
36
|
const external_lodash_namespaceObject = require("lodash");
|
|
37
37
|
const external_react_i18next_namespaceObject = require("react-i18next");
|
|
@@ -236,7 +236,7 @@ const AddCollectionAction = (props)=>{
|
|
|
236
236
|
schema: schema,
|
|
237
237
|
components: {
|
|
238
238
|
...external_components_index_js_namespaceObject,
|
|
239
|
-
ArrayTable:
|
|
239
|
+
ArrayTable: client_namespaceObject.ArrayTable,
|
|
240
240
|
TemplateSummay: TemplateSummary_js_namespaceObject.TemplateSummary
|
|
241
241
|
},
|
|
242
242
|
scope: {
|
|
@@ -39,9 +39,9 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
39
39
|
});
|
|
40
40
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
41
41
|
const external_react_namespaceObject = require("react");
|
|
42
|
-
const components_namespaceObject = require("@tachybase/components");
|
|
43
42
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
44
43
|
const icons_namespaceObject = require("@ant-design/icons");
|
|
44
|
+
const client_namespaceObject = require("@tego/client");
|
|
45
45
|
const external_antd_namespaceObject = require("antd");
|
|
46
46
|
const external_lodash_namespaceObject = require("lodash");
|
|
47
47
|
const external_react_i18next_namespaceObject = require("react-i18next");
|
|
@@ -372,7 +372,7 @@ const AddFieldAction = (props)=>{
|
|
|
372
372
|
schema: schema,
|
|
373
373
|
components: {
|
|
374
374
|
...external_components_index_js_namespaceObject,
|
|
375
|
-
ArrayTable:
|
|
375
|
+
ArrayTable: client_namespaceObject.ArrayTable
|
|
376
376
|
},
|
|
377
377
|
scope: {
|
|
378
378
|
getContainer,
|
|
@@ -28,9 +28,9 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
28
28
|
});
|
|
29
29
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
30
30
|
const external_react_namespaceObject = require("react");
|
|
31
|
-
const components_namespaceObject = require("@tachybase/components");
|
|
32
31
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
33
32
|
const icons_namespaceObject = require("@ant-design/icons");
|
|
33
|
+
const client_namespaceObject = require("@tego/client");
|
|
34
34
|
const external_antd_namespaceObject = require("antd");
|
|
35
35
|
const external_lodash_namespaceObject = require("lodash");
|
|
36
36
|
const external_react_i18next_namespaceObject = require("react-i18next");
|
|
@@ -154,7 +154,7 @@ const AddSubFieldAction = ()=>{
|
|
|
154
154
|
schema: schema,
|
|
155
155
|
components: {
|
|
156
156
|
...external_components_index_js_namespaceObject,
|
|
157
|
-
ArrayTable:
|
|
157
|
+
ArrayTable: client_namespaceObject.ArrayTable
|
|
158
158
|
},
|
|
159
159
|
scope: {
|
|
160
160
|
createOnly: true,
|
|
@@ -40,8 +40,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
40
40
|
});
|
|
41
41
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
42
42
|
const external_react_namespaceObject = require("react");
|
|
43
|
-
const components_namespaceObject = require("@tachybase/components");
|
|
44
43
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
44
|
+
const client_namespaceObject = require("@tego/client");
|
|
45
45
|
const cloneDeep_namespaceObject = require("lodash/cloneDeep");
|
|
46
46
|
var cloneDeep_default = /*#__PURE__*/ __webpack_require__.n(cloneDeep_namespaceObject);
|
|
47
47
|
const omit_namespaceObject = require("lodash/omit");
|
|
@@ -195,7 +195,7 @@ const EditCollectionAction = (props)=>{
|
|
|
195
195
|
schema: schema,
|
|
196
196
|
components: {
|
|
197
197
|
...external_components_index_js_namespaceObject,
|
|
198
|
-
ArrayTable:
|
|
198
|
+
ArrayTable: client_namespaceObject.ArrayTable
|
|
199
199
|
},
|
|
200
200
|
scope: {
|
|
201
201
|
getContainer,
|
|
@@ -38,8 +38,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
38
38
|
});
|
|
39
39
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
40
40
|
const external_react_namespaceObject = require("react");
|
|
41
|
-
const components_namespaceObject = require("@tachybase/components");
|
|
42
41
|
const schema_namespaceObject = require("@tachybase/schema");
|
|
42
|
+
const client_namespaceObject = require("@tego/client");
|
|
43
43
|
const cloneDeep_namespaceObject = require("lodash/cloneDeep");
|
|
44
44
|
var cloneDeep_default = /*#__PURE__*/ __webpack_require__.n(cloneDeep_namespaceObject);
|
|
45
45
|
const omit_namespaceObject = require("lodash/omit");
|
|
@@ -265,7 +265,7 @@ const EditFieldAction = (props)=>{
|
|
|
265
265
|
schema: schema,
|
|
266
266
|
components: {
|
|
267
267
|
...external_components_index_js_namespaceObject,
|
|
268
|
-
ArrayTable:
|
|
268
|
+
ArrayTable: client_namespaceObject.ArrayTable
|
|
269
269
|
},
|
|
270
270
|
scope: {
|
|
271
271
|
getContainer,
|