A monorepo containing jupyter-blocks and jupyter-tidyblocks. Blockly extension for JupyterLab.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

minor fixes

+12 -14
+3
.gitignore
··· 128 128 /.turbo 129 129 /jupyter_tidyblocks/labextension/static 130 130 .yarn/install-state.gz 131 + .yarn/* 132 + *.log 133 + /packages/blockly/.turbo
+1 -1
README.md
··· 20 20 21 21 ## Requirements 22 22 23 - - JupyterLab >= 4.6.0 23 + - JupyterLab >= 4.5 24 24 - Python >= 3.8 25 25 26 26 ## Install
+1 -1
package.json
··· 1 1 { 2 2 "name": "jupyter-tidyblocks-root", 3 3 "private": true, 4 - "version": "0.1.0", 4 + "version": "0.1.0dev", 5 5 "description": "Tidy data analysis with Blockly blocks for JupyterLab.", 6 6 "keywords": [ 7 7 "jupyter",
+3 -3
packages/blockly-extension/package.json
··· 1 1 { 2 2 "name": "jupyter-tidyblocks-extension", 3 - "version": "0.1.0", 3 + "version": "0.1.0dev", 4 4 "description": "Tidy data analysis with Blockly blocks for JupyterLab — extension plugin.", 5 5 "keywords": [ 6 6 "jupyter", ··· 59 59 "@jupyterlab/settingregistry": "^4.5", 60 60 "@jupyterlab/translation": "^4.5", 61 61 "@jupyterlab/ui-components": "^4.5", 62 - "jupyter-tidyblocks": "^0.1.0", 63 - "jupyter-tidyblocks-blocks": "^0.1.0" 62 + "jupyter-tidyblocks": "^0.1.0dev", 63 + "jupyter-tidyblocks-blocks": "^0.1.0dev" 64 64 }, 65 65 "devDependencies": { 66 66 "@jupyterlab/builder": "^4.5",
+1 -3
packages/blockly-extension/src/index.ts
··· 100 100 mainMenu: IMainMenu | null, 101 101 widgetRegistry: IJupyterWidgetRegistry | null 102 102 ): IBlocklyRegistry => { 103 - console.log('JupyterLab extension jupyterlab-blocky is activated!'); 104 - 105 103 // Namespace for the tracker 106 104 const namespace = 'jupyterlab-blocky'; 107 105 ··· 195 193 ? 'En' 196 194 : currentLocale[currentLocale.length - 2].toUpperCase() + 197 195 currentLocale[currentLocale.length - 1].toLowerCase(); 198 - console.log(`Current Language : '${language}'`); 196 + 199 197 200 198 // Transmitting the current language to the manager. 201 199 widgetFactory.registry.setlanguage(language);
+1 -1
packages/blockly/package.json
··· 1 1 { 2 2 "name": "jupyter-tidyblocks", 3 - "version": "0.1.0", 3 + "version": "0.1.0dev", 4 4 "description": "Tidy data analysis with Blockly blocks for JupyterLab — core library.", 5 5 "keywords": [ 6 6 "blockly",
+1 -4
packages/blockly/src/widget.ts
··· 29 29 constructor(options: BlocklyEditor.IOptions) { 30 30 super(options); 31 31 32 - // Loading the ITranslator 33 - // const trans = this.translator.load('jupyterlab'); 34 - 35 32 // Create and add a button to the toolbar to execute 36 33 // the code. 37 34 const button = new BlocklyButton({ ··· 47 44 'toolbox', 48 45 new SelectToolbox({ 49 46 label: 'Toolbox', 50 - tooltip: 'Select tollbox', 47 + tooltip: 'Select toolbox', 51 48 manager: options.manager 52 49 }) 53 50 );
+1 -1
packages/tidyblocks/package.json
··· 1 1 { 2 2 "name": "jupyter-tidyblocks-blocks", 3 - "version": "0.1.0", 3 + "version": "0.1.0dev", 4 4 "description": "Tidy data analysis blocks for jupyter-tidyblocks.", 5 5 "keywords": [ 6 6 "blockly",