Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Item

Presenter

Notes

Ready for review

Vladyslav Zadorozhnii

Peter Kulko

Master:

Alpha:

Issues

Vladyslav Zadorozhnii

Peter Kulko

https://github.com/openedx/paragon/issues/2796

https://github.com/openedx/paragon/issues/2797

https://github.com/openedx/paragon/issues/2798

https://github.com/openedx/paragon/issues/2799

https://github.com/openedx/paragon/issues/2800

https://github.com/openedx/paragon/issues/2794

https://github.com/openedx/paragon/issues/2819

Peter Kulko

Vladyslav Zadorozhnii

https://openedx.atlassian.net/wiki/spaces/BPL/pages/3770744958/Migrating+MFEs+to+Paragon+design+tokens+and+CSS+variables#Migration-guide

  • added description for installing packages and launch features

  • when overriding package fronted-platform (using webpack.config.js), react-router-dom issues appear. These issues can be resolved by rebasing the pull request.

  • added notes on override features in Tutor.

Updated utility functions docs

Peter Kulko

Vladyslav Zadorozhnii

https://docs.google.com/spreadsheets/d/1DtEdJcICiUJTeQOAUSGmSurUy95XlLItwuiJJfYZJj8/edit#gid=0

transitions in the Paragon

Vladyslav Zadorozhnii

Adam Stankiewicz wanted to discuss transitions in the PWG

Toast function

Vladyslav Zadorozhnii

Code Block
  import React from 'react';
import { ToastContainer, toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';

function App() {
  const notify = () => toast("Wow so easy!");
  return (
    <div>
      <button onClick={notify}>Notify!</button>
      <ToastContainer />
    </div>
  );
}

...