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";