diff --git a/src/ol_openedx_chat/README.rst b/src/ol_openedx_chat/README.rst index 5ddbe151..ba5dc691 100644 --- a/src/ol_openedx_chat/README.rst +++ b/src/ol_openedx_chat/README.rst @@ -48,7 +48,7 @@ This will download the smoot-design package and copy the pre-bundled JS file to .. code-block:: sh - npm pack @mitodl/smoot-design@^6.17.0 + npm pack @mitodl/smoot-design@^6.19.0 tar -xvzf mitodl-smoot-design*.tgz mkdir -p public/static/smoot-design cp package/dist/bundles/* public/static/smoot-design @@ -78,7 +78,7 @@ The Unit is rendered inside an Iframe and we use postMessage to communicate betw export default config; -(Alternatively, you can import the drawer code from a CDN like kg.com/@mitodl/smoot-design@6.4.0/dist/bundles/remoteTutorDrawer.umd.js to skip Step 3. However, the steps outlined here are most similar to what we do in production.) +(Alternatively, you can import the drawer code from a CDN like kg.com/@mitodl/smoot-design@6.19.0/dist/bundles/remoteTutorDrawer.umd.js to skip Step 3. However, the steps outlined here are most similar to what we do in production.) 5. Start learning MFE by ``npm run dev`` ---------------------------------------- diff --git a/src/ol_openedx_chat_xblock/ol_openedx_chat_xblock/static/js/lms.js b/src/ol_openedx_chat_xblock/ol_openedx_chat_xblock/static/js/lms.js index e74683eb..f7cc4a56 100644 --- a/src/ol_openedx_chat_xblock/ol_openedx_chat_xblock/static/js/lms.js +++ b/src/ol_openedx_chat_xblock/ol_openedx_chat_xblock/static/js/lms.js @@ -1,5 +1,5 @@ function OLChatBlock(runtime, element, init_args) { - import("https://cdn.jsdelivr.net/npm/@mitodl/smoot-design@6.18.2/dist/bundles/aiChat.es.js").then(aiChat => { + import("https://cdn.jsdelivr.net/npm/@mitodl/smoot-design@6.19.0/dist/bundles/aiChat.es.js").then(aiChat => { const requestOpts = { apiUrl: runtime.handlerUrl(element, 'ol_chat'), feedbackApiUrl: init_args.chat_rating_url, diff --git a/src/ol_openedx_chat_xblock/ol_openedx_chat_xblock/static/js/studio.js b/src/ol_openedx_chat_xblock/ol_openedx_chat_xblock/static/js/studio.js index 79afdf2f..08717a44 100644 --- a/src/ol_openedx_chat_xblock/ol_openedx_chat_xblock/static/js/studio.js +++ b/src/ol_openedx_chat_xblock/ol_openedx_chat_xblock/static/js/studio.js @@ -1,5 +1,5 @@ function OLChatBlock(runtime, element, init_args) { - import("https://cdn.jsdelivr.net/npm/@mitodl/smoot-design@6.18.2/dist/bundles/aiChat.es.js").then(aiChat => { + import("https://cdn.jsdelivr.net/npm/@mitodl/smoot-design@6.19.0/dist/bundles/aiChat.es.js").then(aiChat => { var studioRuntime = new window.StudioRuntime.v1(); const requestOpts = { apiUrl: studioRuntime.handlerUrl(element, 'ol_chat'), diff --git a/src/ol_openedx_chat_xblock/pyproject.toml b/src/ol_openedx_chat_xblock/pyproject.toml index d8e1d7fd..b0d680c0 100644 --- a/src/ol_openedx_chat_xblock/pyproject.toml +++ b/src/ol_openedx_chat_xblock/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ol-openedx-chat-xblock" -version = "0.4.3" +version = "0.4.4" description = "An Open edX xBlock to add Open Learning AI chat" readme = "README.rst" license = {text = "BSD-3-Clause"}