47 lines
1.6 KiB
TypeScript
47 lines
1.6 KiB
TypeScript
/*
|
|
* Copyright 2025 coze-dev Authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
export { default as Plugin } from './pages/plugin';
|
|
export { default as Tool } from './pages/tool';
|
|
export { default as MocksetDetail } from './pages/mockset';
|
|
export { default as MocksetList } from './pages/mockset-list';
|
|
|
|
// ! Notice prohibits the direct export of knowledge-related codes to avoid first-screen loading
|
|
// export { default as KnowledgePreviewPage } from './pages/knowledge-preview';
|
|
// export { default as KnowledgeUploadPage } from './pages/knowledge-upload';
|
|
export { default as DatabaseDetailPage } from './pages/database';
|
|
|
|
export {
|
|
resourceNavigate as pluginResourceNavigate,
|
|
compareObjects,
|
|
} from './utils';
|
|
|
|
// common component
|
|
export { Creator } from './components/creator';
|
|
export {
|
|
Content,
|
|
Header,
|
|
HeaderActions,
|
|
HeaderTitle,
|
|
Layout,
|
|
SubHeader,
|
|
SubHeaderFilters,
|
|
} from './components/layout/list';
|
|
export { WorkspaceEmpty } from './components/workspace-empty';
|
|
|
|
// constants
|
|
export { highlightFilterStyle } from './constants/filter-style';
|