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

@jupyterlab/docmanager

Package Overview
Dependencies
Maintainers
34
Versions
384
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/docmanager - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

10

lib/dialogs.js

@@ -29,3 +29,6 @@ // Copyright (c) Jupyter Development Team.

Dialog.cancelButton(),
Dialog.okButton({ label: trans.__('Rename') })
Dialog.okButton({
label: trans.__('Rename'),
ariaLabel: trans.__('Rename File')
})
]

@@ -72,3 +75,6 @@ }).then(result => {

Dialog.cancelButton(),
Dialog.warnButton({ label: trans.__('Overwrite') })
Dialog.warnButton({
label: trans.__('Overwrite'),
ariaLabel: trans.__('Overwrite Existing File')
})
]

@@ -75,0 +81,0 @@ };

@@ -350,7 +350,13 @@ // Copyright (c) Jupyter Development Team.

Dialog.okButton({
label: isDirty ? trans.__('Close and save') : trans.__('Close')
label: isDirty ? trans.__('Close and save') : trans.__('Close'),
ariaLabel: isDirty
? trans.__('Close and save Document')
: trans.__('Close Document')
})
];
if (isDirty) {
buttons.splice(1, 0, Dialog.warnButton({ label: trans.__('Close without saving') }));
buttons.splice(1, 0, Dialog.warnButton({
label: trans.__('Close without saving'),
ariaLabel: trans.__('Close Document without saving')
}));
}

@@ -388,3 +394,6 @@ const confirm = await showDialog({

Dialog.cancelButton(),
Dialog.warnButton({ label: trans.__('Discard') }),
Dialog.warnButton({
label: trans.__('Discard'),
ariaLabel: trans.__('Discard changes to file')
}),
Dialog.okButton({ label: saveLabel })

@@ -391,0 +400,0 @@ ]

18

package.json
{
"name": "@jupyterlab/docmanager",
"version": "4.0.0",
"version": "4.0.1",
"description": "JupyterLab - Document Manager",

@@ -45,9 +45,9 @@ "homepage": "https://github.com/jupyterlab/jupyterlab",

"dependencies": {
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/docregistry": "^4.0.0",
"@jupyterlab/services": "^7.0.0",
"@jupyterlab/statusbar": "^4.0.0",
"@jupyterlab/translation": "^4.0.0",
"@jupyterlab/ui-components": "^4.0.0",
"@jupyterlab/apputils": "^4.1.1",
"@jupyterlab/coreutils": "^6.0.1",
"@jupyterlab/docregistry": "^4.0.1",
"@jupyterlab/services": "^7.0.1",
"@jupyterlab/statusbar": "^4.0.1",
"@jupyterlab/translation": "^4.0.1",
"@jupyterlab/ui-components": "^4.0.1",
"@lumino/algorithm": "^2.0.0",

@@ -63,3 +63,3 @@ "@lumino/coreutils": "^2.1.1",

"devDependencies": {
"@jupyterlab/testing": "^4.0.0",
"@jupyterlab/testing": "^4.0.1",
"@types/jest": "^29.2.0",

@@ -66,0 +66,0 @@ "jest": "^29.2.0",

@@ -57,3 +57,6 @@ // Copyright (c) Jupyter Development Team.

Dialog.cancelButton(),
Dialog.okButton({ label: trans.__('Rename') })
Dialog.okButton({
label: trans.__('Rename'),
ariaLabel: trans.__('Rename File')
})
]

@@ -119,3 +122,6 @@ }).then(result => {

Dialog.cancelButton(),
Dialog.warnButton({ label: trans.__('Overwrite') })
Dialog.warnButton({
label: trans.__('Overwrite'),
ariaLabel: trans.__('Overwrite Existing File')
})
]

@@ -122,0 +128,0 @@ };

@@ -397,3 +397,6 @@ // Copyright (c) Jupyter Development Team.

Dialog.okButton({
label: isDirty ? trans.__('Close and save') : trans.__('Close')
label: isDirty ? trans.__('Close and save') : trans.__('Close'),
ariaLabel: isDirty
? trans.__('Close and save Document')
: trans.__('Close Document')
})

@@ -405,3 +408,6 @@ ];

0,
Dialog.warnButton({ label: trans.__('Close without saving') })
Dialog.warnButton({
label: trans.__('Close without saving'),
ariaLabel: trans.__('Close Document without saving')
})
);

@@ -445,3 +451,6 @@ }

Dialog.cancelButton(),
Dialog.warnButton({ label: trans.__('Discard') }),
Dialog.warnButton({
label: trans.__('Discard'),
ariaLabel: trans.__('Discard changes to file')
}),
Dialog.okButton({ label: saveLabel })

@@ -448,0 +457,0 @@ ]

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