-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Streamlit to 1.41.0 * Update kernel and sharing to use Vite (skipped ESLint) * Update @stlite/mountable (skipped ESLint) * Fix kernel build * Update @stlite/desktop (skipped ESLint) * Update @stlite/sharing-editor (skipped ESLint) * Delete */react-app-env.d.ts * Delete cache steps from the CI file * Set up ESLint in sharing, mountable, and desktop * Update package.json * Fix tests * Fix * Fix * Update streamlit submodule * Fix * Use @emotion/babel-plugin instead of @swc/plugin-emotion * Fix devcontainer open port * Set up ESLint in sharing-editor * Enabme sourcemap for sharing-editor * Update yarn.lock * Format * Fix * [TMP] Disable sourcemap generation * Revert "[TMP] Disable sourcemap generation" This reverts commit f1633d1. * Delete kernel.url * Fix mountable to call setupCustomElement even after the DOM is initialized * Update component gallery examples * Delete unnecessary lines that are for Prerender.io, which Streamlit.io may use but we don't * Improve the *.whl module type declarations * Remove unnecessary configs in desktop/vite.config.ts
- Loading branch information
Showing
114 changed files
with
14,109 additions
and
20,630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
make init | ||
|
||
REACT_APP_EDITOR_APP_ORIGIN="https://${CODESPACE_NAME}-3030.app.github.dev" | ||
REACT_APP_SHARING_APP_URL="https://${CODESPACE_NAME}-3000.app.github.dev/" | ||
EDITOR_APP_ORIGIN="https://${CODESPACE_NAME}-3030.app.github.dev" | ||
SHARING_APP_URL="https://${CODESPACE_NAME}-3000.app.github.dev/" | ||
|
||
for file in ~/.zshrc ~/.bashrc; do | ||
echo "" >> $file | ||
echo "export REACT_APP_EDITOR_APP_ORIGIN=${REACT_APP_EDITOR_APP_ORIGIN}" >> $file | ||
echo "export REACT_APP_SHARING_APP_URL=${REACT_APP_SHARING_APP_URL}" >> $file | ||
echo "export EDITOR_APP_ORIGIN=${EDITOR_APP_ORIGIN}" >> $file | ||
echo "export SHARING_APP_URL=${SHARING_APP_URL}" >> $file | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/*eslint-env node*/ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
}, | ||
extends: [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier", | ||
], | ||
overrides: [], | ||
parser: "@typescript-eslint/parser", | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
}, | ||
plugins: ["react", "@typescript-eslint"], | ||
rules: {}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.