Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@elyra/application

Package Overview
Dependencies
Maintainers
5
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elyra/application - npm Package Compare versions

Comparing version 0.11.0-dev to 0.11.0-rc.0

lib/icons.d.ts

7

lib/index.d.ts

@@ -0,4 +1,11 @@

import { JupyterFrontEndPlugin } from '@jupyterlab/application';
import '../style/index.css';
/**
* Initialization data for the application extension.
*/
declare const extension: JupyterFrontEndPlugin<void>;
export * from './parsing';
export * from './services';
export * from './submission';
export * from './icons';
export default extension;

@@ -16,6 +16,38 @@ /*

*/
import { IMainMenu } from '@jupyterlab/mainmenu';
import { elyraIcon } from './icons';
import '../style/index.css';
/**
* Initialization data for the application extension.
*/
const extension = {
id: 'elyra-application',
autoStart: true,
requires: [IMainMenu],
activate: (app) => {
console.log('Elyra - application extension is activated!');
// Find the MainLogo widget in the shell and replace it with the Elyra Logo
const widgets = app.shell.widgets('top');
let widget = widgets.next();
while (widget !== undefined) {
if (widget.id === 'jp-MainLogo') {
elyraIcon.element({
container: widget.node,
justify: 'center',
margin: '2px 5px 2px 5px',
height: 'auto',
width: '20px'
});
break;
}
widget = widgets.next();
console.log(widget);
}
}
};
export * from './parsing';
export * from './services';
export * from './submission';
export * from './icons';
export default extension;
//# sourceMappingURL=index.js.map

9

lib/submission.js

@@ -19,7 +19,6 @@ /*

import { ServerConnection } from '@jupyterlab/services';
import { caretDownEmptyThinIcon, caretUpEmptyThinIcon } from '@jupyterlab/ui-components';
import * as React from 'react';
const MESSAGE_DISPLAY = 'elyra-pipelineSubmission-messageDisplay';
const ERROR_DISPLAY_BUTTON = 'elyra-pipelineSubmission-errDisplayButton';
const DOWN_ICON_CLASS = 'elyra-pipelineSubmission-errDisplayButton-down';
const UP_ICON_CLASS = 'elyra-pipelineSubmission-errDisplayButton-up';
const ERROR_DETAILS_VISIBLE = 'elyra-pipelineSubmission-error-visible';

@@ -122,7 +121,5 @@ const ERROR_DETAILS_HIDDEN = 'elyra-pipelineSubmission-error-hidden';

React.createElement("div", null,
React.createElement("button", { className: ERROR_DISPLAY_BUTTON +
' ' +
(this.state.expanded ? UP_ICON_CLASS : DOWN_ICON_CLASS), onClick: () => {
React.createElement("button", { className: ERROR_DISPLAY_BUTTON, onClick: () => {
this.toggleMsgDisplay();
} }),
} }, this.state.expanded ? (React.createElement(caretUpEmptyThinIcon.react, { tag: "span", elementPosition: "center" })) : (React.createElement(caretDownEmptyThinIcon.react, { tag: "span", elementPosition: "center" }))),
'Error details: '),

@@ -129,0 +126,0 @@ React.createElement("br", null),

{
"name": "@elyra/application",
"version": "0.11.0-dev",
"description": "JupyterLab - Widgets and utilities for use in elyra",
"version": "0.11.0-rc.0",
"description": "JupyterLab extension - Widgets and utilities for use in elyra",
"keywords": [
"jupyter",
"jupyterlab"
"jupyterlab",
"jupyterlab-extension"
],

@@ -13,2 +14,6 @@ "homepage": "https://github.com/elyra-ai/elyra",

},
"repository": {
"type": "git",
"url": "https://github.com/elyra-ai/elyra"
},
"license": "Apache-2.0",

@@ -22,21 +27,27 @@ "files": [

"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/elyra-ai/elyra"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"dist": "npm pack .",
"clean": "rimraf lib",
"prepare": "npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.0.2",
"@jupyterlab/apputils": "^2.0.2",
"@jupyterlab/coreutils": "^4.0.2",
"@jupyterlab/services": "^5.0.2",
"@jupyterlab/ui-components": "^2.0.2"
},
"devDependencies": {
"rimraf": "^2.6.3",
"typescript": "~3.5.2"
"rimraf": "~3.0.0",
"typescript": "~3.7.3"
},
"jupyterlab": {
"extension": true
},
"publishConfig": {
"access": "public"
},
"gitHead": "15535eca3ac9c969d975b7c95d797c477dd1f057"
"gitHead": "b35a0d8d19b0383b4ed3a6da5990d2703ef0459d"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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