From d546a6c5673874f0eac4cecb1d7a846b78c4f053 Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 26 Dec 2024 15:19:12 +0800 Subject: [PATCH] feat(notifications): Add package `@abp/notifications` --- .../packages/@abp/notifications/package.json | 37 +++++++++++++++++++ .../@abp/notifications/src/api/index.ts | 0 .../notifications/src/components/index.ts | 0 .../@abp/notifications/src/constants/index.ts | 0 .../packages/@abp/notifications/src/index.ts | 4 ++ .../@abp/notifications/src/types/index.ts | 0 .../packages/@abp/notifications/tsconfig.json | 6 +++ .../vben5/packages/@abp/settings/src/index.ts | 1 + 8 files changed, 48 insertions(+) create mode 100644 apps/vben5/packages/@abp/notifications/package.json create mode 100644 apps/vben5/packages/@abp/notifications/src/api/index.ts create mode 100644 apps/vben5/packages/@abp/notifications/src/components/index.ts create mode 100644 apps/vben5/packages/@abp/notifications/src/constants/index.ts create mode 100644 apps/vben5/packages/@abp/notifications/src/index.ts create mode 100644 apps/vben5/packages/@abp/notifications/src/types/index.ts create mode 100644 apps/vben5/packages/@abp/notifications/tsconfig.json diff --git a/apps/vben5/packages/@abp/notifications/package.json b/apps/vben5/packages/@abp/notifications/package.json new file mode 100644 index 000000000..4d2262b37 --- /dev/null +++ b/apps/vben5/packages/@abp/notifications/package.json @@ -0,0 +1,37 @@ +{ + "name": "@abp/notifications", + "version": "8.3.2", + "homepage": "https://github.com/colinin/abp-next-admin", + "bugs": "https://github.com/colinin/abp-next-admin/issues", + "repository": { + "type": "git", + "url": "git+https://github.com/colinin/abp-next-admin.git", + "directory": "packages/@abp/notifications" + }, + "license": "MIT", + "type": "module", + "sideEffects": [ + "**/*.css" + ], + "exports": { + ".": { + "types": "./src/index.ts", + "default": "./src/index.ts" + } + }, + "dependencies": { + "@abp/core": "workspace:*", + "@abp/request": "workspace:*", + "@abp/ui": "workspace:*", + "@ant-design/icons-vue": "catalog:", + "@vben/access": "workspace:*", + "@vben/common-ui": "workspace:*", + "@vben/hooks": "workspace:*", + "@vben/icons": "workspace:*", + "@vben/layouts": "workspace:*", + "@vben/locales": "workspace:*", + "ant-design-vue": "catalog:", + "dayjs": "catalog:", + "vue": "catalog:*" + } +} diff --git a/apps/vben5/packages/@abp/notifications/src/api/index.ts b/apps/vben5/packages/@abp/notifications/src/api/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/apps/vben5/packages/@abp/notifications/src/components/index.ts b/apps/vben5/packages/@abp/notifications/src/components/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/apps/vben5/packages/@abp/notifications/src/constants/index.ts b/apps/vben5/packages/@abp/notifications/src/constants/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/apps/vben5/packages/@abp/notifications/src/index.ts b/apps/vben5/packages/@abp/notifications/src/index.ts new file mode 100644 index 000000000..f43dbaee0 --- /dev/null +++ b/apps/vben5/packages/@abp/notifications/src/index.ts @@ -0,0 +1,4 @@ +export * from './api'; +export * from './components'; +export * from './constants'; +export * from './types'; diff --git a/apps/vben5/packages/@abp/notifications/src/types/index.ts b/apps/vben5/packages/@abp/notifications/src/types/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/apps/vben5/packages/@abp/notifications/tsconfig.json b/apps/vben5/packages/@abp/notifications/tsconfig.json new file mode 100644 index 000000000..ce1a891fb --- /dev/null +++ b/apps/vben5/packages/@abp/notifications/tsconfig.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "@vben/tsconfig/web.json", + "include": ["src"], + "exclude": ["node_modules"] +} diff --git a/apps/vben5/packages/@abp/settings/src/index.ts b/apps/vben5/packages/@abp/settings/src/index.ts index 314dad0cd..f43dbaee0 100644 --- a/apps/vben5/packages/@abp/settings/src/index.ts +++ b/apps/vben5/packages/@abp/settings/src/index.ts @@ -1,3 +1,4 @@ export * from './api'; export * from './components'; +export * from './constants'; export * from './types';