Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @uiw/react-markdown-preview to v4 - autoclosed #83

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 15, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@uiw/react-markdown-preview (source) 3.4.5 -> 4.0.9 age adoption passing confidence

Release Notes

uiwjs/react-markdown-preview

v4.0.9

Compare Source

Documentation v4.0.9: https://raw.githack.com/uiwjs/react-markdown-preview/0cff400/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.8...v4.0.9

npm i @​uiw/[email protected]

v4.0.8

Compare Source

Documentation v4.0.8: https://raw.githack.com/uiwjs/react-markdown-preview/3e40a15/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.7...v4.0.8

npm i @​uiw/[email protected]

v4.0.7

Compare Source

Documentation v4.0.7: https://raw.githack.com/uiwjs/react-markdown-preview/d0296a8/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.6...v4.0.7

npm i @​uiw/[email protected]

v4.0.6

Compare Source

Documentation v4.0.6: https://raw.githack.com/uiwjs/react-markdown-preview/1d86099/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.5...v4.0.6

npm i @​uiw/[email protected]

v4.0.5

Compare Source

Documentation v4.0.5: https://raw.githack.com/uiwjs/react-markdown-preview/eff5a38/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.4...v4.0.5

npm i @​uiw/[email protected]

v4.0.4

Compare Source

Documentation v4.0.4: https://raw.githack.com/uiwjs/react-markdown-preview/3c25d23/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.3...v4.0.4

npm i @​uiw/[email protected]

v4.0.3

Compare Source

Documentation v4.0.3: https://raw.githack.com/uiwjs/react-markdown-preview/ec3219b/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.2...v4.0.3

npm i @​uiw/[email protected]

v4.0.2

Compare Source

Documentation v4.0.2: https://raw.githack.com/uiwjs/react-markdown-preview/65ce8b9/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.1...v4.0.2

npm i @​uiw/[email protected]

v4.0.1

Compare Source

Documentation v4.0.1: https://raw.githack.com/uiwjs/react-markdown-preview/544e10e/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v4.0.0...v4.0.1

npm i @​uiw/[email protected]

v4.0.0

Compare Source

Documentation v4.0.0: https://raw.githack.com/uiwjs/react-markdown-preview/05817c5/index.html\
Comparing Changes: uiwjs/react-markdown-preview@v3.5.1...v4.0.0

npm i @​uiw/[email protected]

Support dark-mode/night-mode

By default, the dark-mode is automatically switched according to the system. If you need to switch manually, just set the data-color-mode="dark" parameter for body.

<html data-color-mode="dark">
document.documentElement.setAttribute('data-color-mode', 'dark')
document.documentElement.setAttribute('data-color-mode', 'light')

Inherit custom color variables by adding .wmde-markdown-var selector.

const Demo = () => {
  return (
    <div>
      <div className="wmde-markdown-var"> </div>
      <MarkdownPreview source="Hello World!" />
    </div>
  )
}

v3.5.1

Compare Source

npm i @&#8203;uiw/[email protected]

v3.5.0

Compare Source

npm i @&#8203;uiw/[email protected]

Bundle Example: https://uiwjs.github.io/react-markdown-preview/bundle.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <script src="https://unpkg.com/@&#8203;babel/[email protected]/babel.min.js" crossorigin></script>
    <script src="https://unpkg.com/[email protected]/umd/react.development.js" crossorigin></script>
    <script src="https://unpkg.com/[email protected]/umd/react-dom.development.js" crossorigin></script>
    <script src="https://unpkg.com/@&#8203;uiw/codepen-require-polyfill/index.js" crossorigin></script>
    <link rel="stylesheet" href="https://unpkg.com/@&#8203;uiw/react-markdown-preview/dist/markdown.css">
  </head>
  <body>
    <div id="container" style="padding: 24px"></div>
    <script src="https://unpkg.com/@&#8203;uiw/react-markdown-preview/dist/markdown.min.js"></script>
    <script type="text/babel">
      import MarkdownPreview from '@&#8203;uiw/react-markdown-preview';

      const source = `## MarkdownPreview \n\n> todo: React component preview markdown text. `;
      function Demo() {
        return (
          <MarkdownPreview source={source} />
        );
      }

      ReactDOM.render(<Demo />, document.getElementById('container'));
    </script>
  </body>
</html>

v3.4.7

Compare Source

npm i @&#8203;uiw/[email protected]

v3.4.6

Compare Source

npm i @&#8203;uiw/[email protected]

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency @uiw/react-markdown-preview to v4 chore(deps): update dependency @uiw/react-markdown-preview to v4 - autoclosed May 15, 2022
@renovate renovate bot closed this May 15, 2022
@renovate renovate bot deleted the renovate/uiw-react-markdown-preview-4.x branch May 15, 2022 19:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant