From 88a1205329e0ffba9ca4e6bb7d2781c641390e38 Mon Sep 17 00:00:00 2001 From: Emma Indal Date: Tue, 22 Feb 2022 15:37:26 +0100 Subject: [PATCH] export search components Signed-off-by: Emma Indal --- .../techdocs/src/search/components/index.ts | 18 ++++++++++++++++++ plugins/techdocs/src/search/index.ts | 17 +++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 plugins/techdocs/src/search/components/index.ts create mode 100644 plugins/techdocs/src/search/index.ts diff --git a/plugins/techdocs/src/search/components/index.ts b/plugins/techdocs/src/search/components/index.ts new file mode 100644 index 0000000000..1f7615b4ff --- /dev/null +++ b/plugins/techdocs/src/search/components/index.ts @@ -0,0 +1,18 @@ +/* + * Copyright 2021 The Backstage 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 * from './TechDocsSearchResultListItem'; +export * from './TechDocsSearch'; diff --git a/plugins/techdocs/src/search/index.ts b/plugins/techdocs/src/search/index.ts new file mode 100644 index 0000000000..6f9ea2a52d --- /dev/null +++ b/plugins/techdocs/src/search/index.ts @@ -0,0 +1,17 @@ +/* + * Copyright 2020 The Backstage 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 * from './components';