From 8f22d6925487b182b3b1237ef5cf884aa558201e Mon Sep 17 00:00:00 2001 From: Zhuliyan Penkov Date: Wed, 3 Apr 2024 13:02:30 +0300 Subject: [PATCH] chore: export unexported templates --- packages/html/src/filter/index.ts | 3 ++- packages/html/src/upload/index.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/html/src/filter/index.ts b/packages/html/src/filter/index.ts index fdc3054c830..85a01768ef4 100644 --- a/packages/html/src/filter/index.ts +++ b/packages/html/src/filter/index.ts @@ -3,4 +3,5 @@ export * from './filter-toolbar'; export * from './filter-lines'; export * from './filter-preview'; export * from './filter-item'; -export * from './templates/filter-normal'; \ No newline at end of file +export * from './templates/filter-normal'; +export * from './templates/filter-preview'; diff --git a/packages/html/src/upload/index.ts b/packages/html/src/upload/index.ts index ed60130130a..94ab45c171a 100644 --- a/packages/html/src/upload/index.ts +++ b/packages/html/src/upload/index.ts @@ -6,3 +6,4 @@ export * from './upload-file-info'; export * from './templates/upload-chunk'; export * from './templates/upload-batch'; export * from './templates/upload-normal'; +export * from './templates/upload-with-action-buttons';