From b4d931430cfe6ec54a30fd2f659a57106ddf7953 Mon Sep 17 00:00:00 2001 From: lmatejic Date: Fri, 19 Apr 2024 08:56:05 +0200 Subject: [PATCH] #62 Added missing export statement --- .changeset/fresh-socks-juggle.md | 5 +++++ .github/ISSUE_TEMPLATE/01_bugReport.md | 2 +- .github/ISSUE_TEMPLATE/02_enhancementRequest.md | 2 +- .github/ISSUE_TEMPLATE/03_featureRequest.md | 2 +- .github/pull_request_template.md | 2 +- libs/notification/core/src/index.ts | 1 + 6 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 .changeset/fresh-socks-juggle.md diff --git a/.changeset/fresh-socks-juggle.md b/.changeset/fresh-socks-juggle.md new file mode 100644 index 0000000..b5a581e --- /dev/null +++ b/.changeset/fresh-socks-juggle.md @@ -0,0 +1,5 @@ +--- +"@croz/nrich-notification-core": patch +--- + +Added missing export, patched the github templates for clarity diff --git a/.github/ISSUE_TEMPLATE/01_bugReport.md b/.github/ISSUE_TEMPLATE/01_bugReport.md index 4acf9a9..d5673d3 100644 --- a/.github/ISSUE_TEMPLATE/01_bugReport.md +++ b/.github/ISSUE_TEMPLATE/01_bugReport.md @@ -16,7 +16,7 @@ assignees: "" ## Basic information -* nrich-frontend version: +* nrich-frontend module version: * Module: diff --git a/.github/ISSUE_TEMPLATE/02_enhancementRequest.md b/.github/ISSUE_TEMPLATE/02_enhancementRequest.md index 42621ab..ff14cb6 100644 --- a/.github/ISSUE_TEMPLATE/02_enhancementRequest.md +++ b/.github/ISSUE_TEMPLATE/02_enhancementRequest.md @@ -13,7 +13,7 @@ assignees: "" ## Basic information -* nrich-frontend version: +* nrich-frontend module version: * Module: diff --git a/.github/ISSUE_TEMPLATE/03_featureRequest.md b/.github/ISSUE_TEMPLATE/03_featureRequest.md index 8daf1d2..a050904 100644 --- a/.github/ISSUE_TEMPLATE/03_featureRequest.md +++ b/.github/ISSUE_TEMPLATE/03_featureRequest.md @@ -13,7 +13,7 @@ assignees: "" ## Basic information -* nrich-frontend version: +* nrich-frontend module version: * Module: diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 462c47b..325bfe6 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -5,7 +5,7 @@ ## Basic information -* nrich-frontend version: +* nrich-frontend module version: * Module: diff --git a/libs/notification/core/src/index.ts b/libs/notification/core/src/index.ts index 83cf8d1..1c519e6 100644 --- a/libs/notification/core/src/index.ts +++ b/libs/notification/core/src/index.ts @@ -18,3 +18,4 @@ export * from "./api"; export * from "./interceptor"; export * from "./hook/use-notifications"; +export { addNotification, removeNotification } from "./store/notification-store";