New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@tager/admin-mail

Package Overview
Dependencies
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tager/admin-mail - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

17

dist/index.esm.js

@@ -766,3 +766,3 @@ import Vue from 'vue';

const HOME_BREADCRUMB = { path: '/', label: 'Home' };
const HOME_BREADCRUMB = { url: '/', text: 'Home' };
const EMAIL_TEMPLATE_LIST_ROUTE = {

@@ -775,3 +775,3 @@ path: EMAIL_ROUTE_PATHS.TEMPLATE_LIST,

HOME_BREADCRUMB,
{ path: route.path, label: 'Templates' },
{ url: route.path, text: 'Templates' },
],

@@ -787,3 +787,3 @@ },

HOME_BREADCRUMB,
{ path: route.path, label: 'Template form' },
{ url: route.path, text: 'Template form' },
],

@@ -799,3 +799,3 @@ },

HOME_BREADCRUMB,
{ path: route.path, label: 'Logs' },
{ url: route.path, text: 'Logs' },
],

@@ -807,11 +807,10 @@ },

id: 'mail',
name: 'E-Mail Notifications',
path: '',
text: 'E-Mail Notifications',
icon: 'email',
children: [
{ name: 'Templates', path: getEmailTemplateListUrl() },
{ name: 'Logs', path: getEmailLogListUrl() },
{ text: 'Templates', url: getEmailTemplateListUrl() },
{ text: 'Logs', url: getEmailLogListUrl() },
],
};
export { EMAIL_LOG_LIST_ROUTE, EMAIL_MENU_ITEM, EMAIL_ROUTE_PATHS, EMAIL_TEMPLATE_FORM_ROUTE, EMAIL_TEMPLATE_LIST_ROUTE, getEmailLogListUrl, getEmailTemplateFormUrl, getEmailTemplateListUrl };
export { EMAIL_LOG_LIST_ROUTE, EMAIL_MENU_ITEM, EMAIL_TEMPLATE_FORM_ROUTE, EMAIL_TEMPLATE_LIST_ROUTE, getEmailLogListUrl, getEmailTemplateFormUrl, getEmailTemplateListUrl };

@@ -770,3 +770,3 @@ (function (global, factory) {

const HOME_BREADCRUMB = { path: '/', label: 'Home' };
const HOME_BREADCRUMB = { url: '/', text: 'Home' };
const EMAIL_TEMPLATE_LIST_ROUTE = {

@@ -779,3 +779,3 @@ path: EMAIL_ROUTE_PATHS.TEMPLATE_LIST,

HOME_BREADCRUMB,
{ path: route.path, label: 'Templates' },
{ url: route.path, text: 'Templates' },
],

@@ -791,3 +791,3 @@ },

HOME_BREADCRUMB,
{ path: route.path, label: 'Template form' },
{ url: route.path, text: 'Template form' },
],

@@ -803,3 +803,3 @@ },

HOME_BREADCRUMB,
{ path: route.path, label: 'Logs' },
{ url: route.path, text: 'Logs' },
],

@@ -811,8 +811,7 @@ },

id: 'mail',
name: 'E-Mail Notifications',
path: '',
text: 'E-Mail Notifications',
icon: 'email',
children: [
{ name: 'Templates', path: getEmailTemplateListUrl() },
{ name: 'Logs', path: getEmailLogListUrl() },
{ text: 'Templates', url: getEmailTemplateListUrl() },
{ text: 'Logs', url: getEmailLogListUrl() },
],

@@ -823,3 +822,2 @@ };

exports.EMAIL_MENU_ITEM = EMAIL_MENU_ITEM;
exports.EMAIL_ROUTE_PATHS = EMAIL_ROUTE_PATHS;
exports.EMAIL_TEMPLATE_FORM_ROUTE = EMAIL_TEMPLATE_FORM_ROUTE;

@@ -826,0 +824,0 @@ exports.EMAIL_TEMPLATE_LIST_ROUTE = EMAIL_TEMPLATE_LIST_ROUTE;

export * from './constants/routes';
export * from './constants/menu';
export * from './constants/paths';
export * from './utils/paths';
{
"name": "@tager/admin-mail",
"version": "0.2.4",
"version": "0.2.5",
"license": "MIT",

@@ -27,5 +27,5 @@ "main": "dist/index.umd.js",

"@rollup/plugin-node-resolve": "^8.1.0",
"@tager/admin-layout": "^0.3.0",
"@tager/admin-services": "^0.2.0",
"@tager/admin-ui": "^0.5.2",
"@tager/admin-layout": "^0.4.0",
"@tager/admin-services": "^0.2.2",
"@tager/admin-ui": "^0.6.0",
"@types/node": "12.x",

@@ -57,5 +57,5 @@ "@typescript-eslint/eslint-plugin": "^2.26.0",

"peerDependencies": {
"@tager/admin-layout": ">=0.3.0",
"@tager/admin-services": ">=0.2.0",
"@tager/admin-ui": ">=0.5.2",
"@tager/admin-layout": ">=0.4.0",
"@tager/admin-services": ">=0.2.2",
"@tager/admin-ui": ">=0.6.0",
"vue": "2.6.x"

@@ -62,0 +62,0 @@ },

@@ -7,9 +7,8 @@ import { MenuItemType } from '@tager/admin-layout';

id: 'mail',
name: 'E-Mail Notifications',
path: '',
text: 'E-Mail Notifications',
icon: 'email',
children: [
{ name: 'Templates', path: getEmailTemplateListUrl() },
{ name: 'Logs', path: getEmailLogListUrl() },
{ text: 'Templates', url: getEmailTemplateListUrl() },
{ text: 'Logs', url: getEmailLogListUrl() },
],
};

@@ -9,3 +9,3 @@ import { CustomRouteConfig } from '@tager/admin-layout';

const HOME_BREADCRUMB = { path: '/', label: 'Home' };
const HOME_BREADCRUMB = { url: '/', text: 'Home' };

@@ -19,3 +19,3 @@ export const EMAIL_TEMPLATE_LIST_ROUTE: CustomRouteConfig = {

HOME_BREADCRUMB,
{ path: route.path, label: 'Templates' },
{ url: route.path, text: 'Templates' },
],

@@ -32,3 +32,3 @@ },

HOME_BREADCRUMB,
{ path: route.path, label: 'Template form' },
{ url: route.path, text: 'Template form' },
],

@@ -45,5 +45,5 @@ },

HOME_BREADCRUMB,
{ path: route.path, label: 'Logs' },
{ url: route.path, text: 'Logs' },
],
},
};

@@ -32,3 +32,3 @@ import Vue from 'vue';

meta: {
getBreadcrumbs: (route: CustomRoute) => [{ path: '/', label: route.name }],
getBreadcrumbs: (route: CustomRoute) => [{ url: '/', text: 'Home' }],
},

@@ -35,0 +35,0 @@ };

export * from './constants/routes';
export * from './constants/menu';
export * from './constants/paths';
export * from './utils/paths';

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc