@memberjunction/global
Advanced tools
Comparing version 0.9.20 to 0.9.21
@@ -7,3 +7,3 @@ export declare class MJGlobalProperty { | ||
component: IMJComponent; | ||
event: _MJEventType; | ||
event: MJEventType; | ||
eventCode?: string; | ||
@@ -15,13 +15,13 @@ args: any; | ||
export declare const MJEventType: { | ||
readonly ComponentRegistered: 0; | ||
readonly ComponentUnregistered: 1; | ||
readonly ComponentEvent: 2; | ||
readonly LoggedIn: 3; | ||
readonly LoggedOut: 4; | ||
readonly LoginFailed: 5; | ||
readonly LogoutFailed: 6; | ||
readonly ManualResizeRequest: 7; | ||
readonly DisplaySimpleNotificationRequest: 8; | ||
readonly ComponentRegistered: "ComponentRegistered"; | ||
readonly ComponentUnregistered: "ComponentUnregistered"; | ||
readonly ComponentEvent: "ComponentEvent"; | ||
readonly LoggedIn: "LoggedIn"; | ||
readonly LoggedOut: "LoggedOut"; | ||
readonly LoginFailed: "LoginFailed"; | ||
readonly LogoutFailed: "LogoutFailed"; | ||
readonly ManualResizeRequest: "ManualResizeRequest"; | ||
readonly DisplaySimpleNotificationRequest: "DisplaySimpleNotificationRequest"; | ||
}; | ||
export type _MJEventType = typeof MJEventType[keyof typeof MJEventType]; | ||
export type MJEventType = typeof MJEventType[keyof typeof MJEventType]; | ||
export type DisplaySimpleNotificationRequestData = { | ||
@@ -28,0 +28,0 @@ message: string; |
@@ -10,25 +10,13 @@ "use strict"; | ||
exports.MJEvent = MJEvent; | ||
// export enum MJEventType | ||
// { | ||
// ComponentRegistered, | ||
// ComponentUnregistered, | ||
// ComponentEvent, | ||
// LoggedIn, | ||
// LoggedOut, | ||
// LoginFailed, | ||
// LogoutFailed, | ||
// ManualResizeRequest, | ||
// DisplaySimpleNotificationRequest, | ||
// } | ||
exports.MJEventType = { | ||
ComponentRegistered: 0, | ||
ComponentUnregistered: 1, | ||
ComponentEvent: 2, | ||
LoggedIn: 3, | ||
LoggedOut: 4, | ||
LoginFailed: 5, | ||
LogoutFailed: 6, | ||
ManualResizeRequest: 7, | ||
DisplaySimpleNotificationRequest: 8, | ||
ComponentRegistered: 'ComponentRegistered', | ||
ComponentUnregistered: 'ComponentUnregistered', | ||
ComponentEvent: 'ComponentEvent', | ||
LoggedIn: 'LoggedIn', | ||
LoggedOut: 'LoggedOut', | ||
LoginFailed: 'LoginFailed', | ||
LogoutFailed: 'LogoutFailed', | ||
ManualResizeRequest: 'ManualResizeRequest', | ||
DisplaySimpleNotificationRequest: 'DisplaySimpleNotificationRequest', | ||
}; | ||
//# sourceMappingURL=interface.js.map |
{ | ||
"name": "@memberjunction/global", | ||
"version": "0.9.20", | ||
"version": "0.9.21", | ||
"description": "MemberJunction: Global Object - Needed for ALL other MJ components", | ||
@@ -22,6 +22,6 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@memberjunction/core": "^0.9.20", | ||
"@memberjunction/global": "^0.9.19", | ||
"@memberjunction/core": "^0.9.21", | ||
"@memberjunction/global": "^0.9.20", | ||
"rxjs": "^7.8.1" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24027
349