4.21.25 • Published 1 month ago

@uiw/react-codemirror v4.21.25

Weekly downloads
3,312
License
MIT
Repository
github
Last release
1 month ago

react-codemirror

Buy me a coffee NPM Downloads Build & Deploy Open in unpkg npm version Coverage Status Open in Gitpod

CodeMirror component for React. Demo Preview: @uiwjs.github.io/react-codemirror

Features:

🚀 Quickly and easily configure the API.
🌱 Versions after @uiw/react-codemirror@v4 use codemirror 6. #88.
⚛️ Support the features of React Hook(requires React 16.8+).
📚 Use Typescript to write, better code hints.
🌐 The bundled version supports use directly in the browser #267.
🌎 There are better sample previews.
🎨 Support theme customization, provide theme editor.

Install

Not dependent on uiw.

npm install @uiw/react-codemirror --save

All Packages

NameNPM Version
@uiw/react-codemirrornpm version NPM Downloads
react-codemirror-mergenpm version NPM Downloads
@uiw/codemirror-extensions-basic-setupnpm version NPM Downloads
@uiw/codemirror-extensions-colornpm version NPM Downloads
@uiw/codemirror-extensions-classnamenpm version NPM Downloads
@uiw/codemirror-extensions-eventsnpm version NPM Downloads
@uiw/codemirror-extensions-hyper-linknpm version NPM Downloads
@uiw/codemirror-extensions-langsnpm version NPM Downloads
@uiw/codemirror-extensions-line-numbers-relativenpm version NPM Downloads
@uiw/codemirror-extensions-mentionsnpm version NPM Downloads
@uiw/codemirror-extensions-zebra-stripesnpm version NPM Downloads
@uiw/codemirror-themesnpm version NPM Downloads
NameNPM Version
@uiw/codemirror-themes-allnpm version NPM Downloads
@uiw/codemirror-theme-abcdefnpm version NPM Downloads
@uiw/codemirror-theme-abyssnpm version NPM Downloads
@uiw/codemirror-theme-androidstudionpm version NPM Downloads
@uiw/codemirror-theme-andromedanpm version NPM Downloads
@uiw/codemirror-theme-atomonenpm version NPM Downloads
@uiw/codemirror-theme-auranpm version NPM Downloads
@uiw/codemirror-theme-basicnpm version NPM Downloads
@uiw/codemirror-theme-bbeditnpm version NPM Downloads
@uiw/codemirror-theme-bespinnpm version NPM Downloads
@uiw/codemirror-theme-consolenpm version NPM Downloads
@uiw/codemirror-theme-copilotnpm version NPM Downloads
@uiw/codemirror-theme-duotonenpm version NPM Downloads
@uiw/codemirror-theme-draculanpm version NPM Downloads
@uiw/codemirror-theme-darculanpm version NPM Downloads
@uiw/codemirror-theme-eclipsenpm version NPM Downloads
@uiw/codemirror-theme-githubnpm version NPM Downloads
@uiw/codemirror-theme-gruvbox-darknpm version NPM Downloads
@uiw/codemirror-theme-kimbienpm version NPM Downloads
@uiw/codemirror-theme-kimbienpm version NPM Downloads
@uiw/codemirror-theme-materialnpm version NPM Downloads
@uiw/codemirror-theme-monokainpm version NPM Downloads
@uiw/codemirror-theme-noctis-lilacnpm version NPM Downloads
@uiw/codemirror-theme-nordnpm version NPM Downloads
@uiw/codemirror-theme-okaidianpm version NPM Downloads
@uiw/codemirror-theme-quietlightnpm version NPM Downloads
@uiw/codemirror-theme-rednpm version NPM Downloads
@uiw/codemirror-theme-solarizednpm version NPM Downloads
@uiw/codemirror-theme-sublimenpm version NPM Downloads
@uiw/codemirror-theme-tokyo-nightnpm version NPM Downloads
@uiw/codemirror-theme-tokyo-night-stormnpm version NPM Downloads
@uiw/codemirror-theme-tokyo-night-daynpm version NPM Downloads
@uiw/codemirror-theme-vscodenpm version NPM Downloads
@uiw/codemirror-theme-whitenpm version NPM Downloads
@uiw/codemirror-theme-tomorrow-night-bluenpm version NPM Downloads
@uiw/codemirror-theme-xcodenpm version NPM Downloads

Usage

Open in CodeSandbox

import React from 'react';
import CodeMirror from '@uiw/react-codemirror';
import { javascript } from '@codemirror/lang-javascript';

function App() {
  const [value, setValue] = React.useState("console.log('hello world!');");
  const onChange = React.useCallback((val, viewUpdate) => {
    console.log('val:', val);
    setValue(val);
  }, []);
  return <CodeMirror value={value} height="200px" extensions={[javascript({ jsx: true })]} onChange={onChange} />;
}
export default App;

Support Language

Open in CodeSandbox

import CodeMirror from '@uiw/react-codemirror';
import { StreamLanguage } from '@codemirror/language';
import { go } from '@codemirror/legacy-modes/mode/go';

const goLang = `package main
import "fmt"

func main() {
  fmt.Println("Hello, 世界")
}`;

export default function App() {
  return <CodeMirror value={goLang} height="200px" extensions={[StreamLanguage.define(go)]} />;
}

Markdown Example

Markdown language code is automatically highlighted.

Open in CodeSandbox

import CodeMirror from '@uiw/react-codemirror';
import { markdown, markdownLanguage } from '@codemirror/lang-markdown';
import { languages } from '@codemirror/language-data';

const code = `## Title

\`\`\`jsx
function Demo() {
  return <div>demo</div>
}
\`\`\`

\`\`\`bash
# Not dependent on uiw.
npm install @codemirror/lang-markdown --save
npm install @codemirror/language-data --save
\`\`\`

[weisit ulr](https://uiwjs.github.io/react-codemirror/)

\`\`\`go
package main
import "fmt"
func main() {
  fmt.Println("Hello, 世界")
}
\`\`\`
`;

export default function App() {
  return <CodeMirror value={code} extensions={[markdown({ base: markdownLanguage, codeLanguages: languages })]} />;
}

Codemirror Merge

A component that highlights the changes between two versions of a file in a side-by-side view, highlighting added, modified, or deleted lines of code.

npm install react-codemirror-merge  --save
import CodeMirrorMerge from 'react-codemirror-merge';
import { EditorView } from 'codemirror';
import { EditorState } from '@codemirror/state';

const Original = CodeMirrorMerge.Original;
const Modified = CodeMirrorMerge.Modified;
let doc = `one
two
three
four
five`;

export const Example = () => {
  return (
    <CodeMirrorMerge>
      <Original value={doc} />
      <Modified
        value={doc.replace(/t/g, 'T') + 'Six'}
        extensions={[EditorView.editable.of(false), EditorState.readOnly.of(true)]}
      />
    </CodeMirrorMerge>
  );
};

Support Hook

Open in CodeSandbox

import { useEffect, useMemo, useRef } from 'react';
import { useCodeMirror } from '@uiw/react-codemirror';
import { javascript } from '@codemirror/lang-javascript';

const code = "console.log('hello world!');\n\n\n";
// Define the extensions outside the component for the best performance.
// If you need dynamic extensions, use React.useMemo to minimize reference changes
// which cause costly re-renders.
const extensions = [javascript()];

export default function App() {
  const editor = useRef();
  const { setContainer } = useCodeMirror({
    container: editor.current,
    extensions,
    value: code,
  });

  useEffect(() => {
    if (editor.current) {
      setContainer(editor.current);
    }
  }, [editor.current]);

  return <div ref={editor} />;
}

Using Theme

We have created a theme editor where you can define your own theme. We have also defined some themes ourselves, which can be installed and used directly. Below is a usage example:

import CodeMirror from '@uiw/react-codemirror';
import { javascript } from '@codemirror/lang-javascript';
import { okaidia } from '@uiw/codemirror-theme-okaidia';

const extensions = [javascript({ jsx: true })];

export default function App() {
  return (
    <CodeMirror
      value="console.log('hello world!');"
      height="200px"
      theme={okaidia}
      extensions={[javascript({ jsx: true })]}
    />
  );
}

Using custom theme

import CodeMirror from '@uiw/react-codemirror';
import { createTheme } from '@uiw/codemirror-themes';
import { javascript } from '@codemirror/lang-javascript';
import { tags as t } from '@lezer/highlight';

const myTheme = createTheme({
  theme: 'light',
  settings: {
    background: '#ffffff',
    backgroundImage: '',
    foreground: '#75baff',
    caret: '#5d00ff',
    selection: '#036dd626',
    selectionMatch: '#036dd626',
    lineHighlight: '#8a91991a',
    gutterBackground: '#fff',
    gutterForeground: '#8a919966',
  },
  styles: [
    { tag: t.comment, color: '#787b8099' },
    { tag: t.variableName, color: '#0080ff' },
    { tag: [t.string, t.special(t.brace)], color: '#5c6166' },
    { tag: t.number, color: '#5c6166' },
    { tag: t.bool, color: '#5c6166' },
    { tag: t.null, color: '#5c6166' },
    { tag: t.keyword, color: '#5c6166' },
    { tag: t.operator, color: '#5c6166' },
    { tag: t.className, color: '#5c6166' },
    { tag: t.definition(t.typeName), color: '#5c6166' },
    { tag: t.typeName, color: '#5c6166' },
    { tag: t.angleBracket, color: '#5c6166' },
    { tag: t.tagName, color: '#5c6166' },
    { tag: t.attributeName, color: '#5c6166' },
  ],
});
const extensions = [javascript({ jsx: true })];

export default function App() {
  const onChange = React.useCallback((value, viewUpdate) => {
    console.log('value:', value);
  }, []);
  return (
    <CodeMirror
      value="console.log('hello world!');"
      height="200px"
      theme={myTheme}
      extensions={extensions}
      onChange={onChange}
    />
  );
}

Use initialState to restore state from JSON-serialized representation

CodeMirror allows to serialize editor state to JSON representation with toJSON function for persistency or other needs. This JSON representation can be later used to recreate ReactCodeMirror component with the same internal state.

For example, this is how undo history can be saved in the local storage, so that it remains after the page reloads

import CodeMirror from '@uiw/react-codemirror';
import { historyField } from '@codemirror/commands';

// When custom fields should be serialized, you can pass them in as an object mapping property names to fields.
// See [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) documentation for more details
const stateFields = { history: historyField };

export function EditorWithInitialState() {
  const serializedState = localStorage.getItem('myEditorState');
  const value = localStorage.getItem('myValue') || '';

  return (
    <CodeMirror
      value={value}
      initialState={
        serializedState
          ? {
              json: JSON.parse(serializedState || ''),
              fields: stateFields,
            }
          : undefined
      }
      onChange={(value, viewUpdate) => {
        localStorage.setItem('myValue', value);

        const state = viewUpdate.state.toJSON(stateFields);
        localStorage.setItem('myEditorState', JSON.stringify(state));
      }}
    />
  );
}

Props

  • value?: string value of the auto created model in the editor.
  • width?: string width of editor. Defaults to auto.
  • height?: string height of editor. Defaults to auto.
  • theme?: 'light' / 'dark' / Extension Defaults to 'light'.
import React from 'react';
import { EditorState, EditorStateConfig, Extension } from '@codemirror/state';
import { EditorView, ViewUpdate } from '@codemirror/view';
export * from '@codemirror/view';
export * from '@codemirror/basic-setup';
export * from '@codemirror/state';
export interface UseCodeMirror extends ReactCodeMirrorProps {
  container?: HTMLDivElement | null;
}
export declare function useCodeMirror(props: UseCodeMirror): {
  state: EditorState | undefined;
  setState: import('react').Dispatch<import('react').SetStateAction<EditorState | undefined>>;
  view: EditorView | undefined;
  setView: import('react').Dispatch<import('react').SetStateAction<EditorView | undefined>>;
  container: HTMLDivElement | null | undefined;
  setContainer: import('react').Dispatch<import('react').SetStateAction<HTMLDivElement | null | undefined>>;
};
export interface ReactCodeMirrorProps
  extends Omit<EditorStateConfig, 'doc' | 'extensions'>,
    Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'placeholder'> {
  /** value of the auto created model in the editor. */
  value?: string;
  height?: string;
  minHeight?: string;
  maxHeight?: string;
  width?: string;
  minWidth?: string;
  maxWidth?: string;
  /** focus on the editor. */
  autoFocus?: boolean;
  /** Enables a placeholder—a piece of example content to show when the editor is empty. */
  placeholder?: string | HTMLElement;
  /**
   * `light` / `dark` / `Extension` Defaults to `light`.
   * @default light
   */
  theme?: 'light' | 'dark' | Extension;
  /**
   * Whether to optional basicSetup by default
   * @default true
   */
  basicSetup?: boolean | BasicSetupOptions;
  /**
   * This disables editing of the editor content by the user.
   * @default true
   */
  editable?: boolean;
  /**
   * This disables editing of the editor content by the user.
   * @default false
   */
  readOnly?: boolean;
  /**
   * Controls whether pressing the `Tab` key inserts a tab character and indents the text (`true`)
   * or behaves according to the browser's default behavior (`false`).
   * @default true
   */
  indentWithTab?: boolean;
  /** Fired whenever a change occurs to the document. */
  onChange?(value: string, viewUpdate: ViewUpdate): void;
  /** Some data on the statistics editor. */
  onStatistics?(data: Statistics): void;
  /** The first time the editor executes the event. */
  onCreateEditor?(view: EditorView, state: EditorState): void;
  /** Fired whenever any state change occurs within the editor, including non-document changes like lint results. */
  onUpdate?(viewUpdate: ViewUpdate): void;
  /**
   * Extension values can be [provided](https://codemirror.net/6/docs/ref/#state.EditorStateConfig.extensions) when creating a state to attach various kinds of configuration and behavior information.
   * They can either be built-in extension-providing objects,
   * such as [state fields](https://codemirror.net/6/docs/ref/#state.StateField) or [facet providers](https://codemirror.net/6/docs/ref/#state.Facet.of),
   * or objects with an extension in its `extension` property. Extensions can be nested in arrays arbitrarily deep—they will be flattened when processed.
   */
  extensions?: Extension[];
  /**
   * If the view is going to be mounted in a shadow root or document other than the one held by the global variable document (the default), you should pass it here.
   * Originally from the [config of EditorView](https://codemirror.net/6/docs/ref/#view.EditorView.constructor%5Econfig.root)
   */
  root?: ShadowRoot | Document;
  /**
   * Create a state from its JSON representation serialized with [toJSON](https://codemirror.net/docs/ref/#state.EditorState.toJSON) function
   */
  initialState?: {
    json: any;
    fields?: Record<'string', StateField<any>>;
  };
}
export interface ReactCodeMirrorRef {
  editor?: HTMLDivElement | null;
  state?: EditorState;
  view?: EditorView;
}
declare const ReactCodeMirror: React.ForwardRefExoticComponent<
  ReactCodeMirrorProps & React.RefAttributes<ReactCodeMirrorRef>
>;
export default ReactCodeMirror;
export interface BasicSetupOptions {
  lineNumbers?: boolean;
  highlightActiveLineGutter?: boolean;
  highlightSpecialChars?: boolean;
  history?: boolean;
  foldGutter?: boolean;
  drawSelection?: boolean;
  dropCursor?: boolean;
  allowMultipleSelections?: boolean;
  indentOnInput?: boolean;
  syntaxHighlighting?: boolean;
  bracketMatching?: boolean;
  closeBrackets?: boolean;
  autocompletion?: boolean;
  rectangularSelection?: boolean;
  crosshairCursor?: boolean;
  highlightActiveLine?: boolean;
  highlightSelectionMatches?: boolean;
  closeBracketsKeymap?: boolean;
  defaultKeymap?: boolean;
  searchKeymap?: boolean;
  historyKeymap?: boolean;
  foldKeymap?: boolean;
  completionKeymap?: boolean;
  lintKeymap?: boolean;
}
import { EditorSelection, SelectionRange } from '@codemirror/state';
import { ViewUpdate } from '@codemirror/view';
export interface Statistics {
  /** Get the number of lines in the editor. */
  lineCount: number;
  /** total length of the document */
  length: number;
  /** Get the proper [line-break](https://codemirror.net/docs/ref/#state.EditorState^lineSeparator) string for this state. */
  lineBreak: string;
  /** Returns true when the editor is [configured](https://codemirror.net/6/docs/ref/#state.EditorState^readOnly) to be read-only. */
  readOnly: boolean;
  /** The size (in columns) of a tab in the document, determined by the [`tabSize`](https://codemirror.net/6/docs/ref/#state.EditorState^tabSize) facet. */
  tabSize: number;
  /** Cursor Position */
  selection: EditorSelection;
  /** Make sure the selection only has one range. */
  selectionAsSingle: SelectionRange;
  /** Retrieves a list of all current selections. */
  ranges: readonly SelectionRange[];
  /** Get the currently selected code. */
  selectionCode: string;
  /**
   * The length of the given array should be the same as the number of active selections.
   * Replaces the content of the selections with the strings in the array.
   */
  selections: string[];
  /** Return true if any text is selected. */
  selectedText: boolean;
}
export declare const getStatistics: (view: ViewUpdate) => Statistics;

Development

  1. Install dependencies
$ npm install       # Installation dependencies
$ npm run build     # Compile all package
  1. Development @uiw/react-codemirror package:
$ cd core
# listen to the component compile and output the .js file
# listen for compilation output type .d.ts file
$ npm run watch # Monitor the compiled package `@uiw/react-codemirror`
  1. Launch documentation site
npm run start

Related

Contributors

As always, thanks to our amazing contributors!

Made with contributors.

License

Licensed under the MIT License.

42-pro-markdown-nicemk-nice@infinitebrahmanuniverse/nolb-_ui@zelty/ui-kit-bodemotestpublishbextmarkdown-nice-42-pro@everything-registry/sub-chunk-963@digitalzz/datax-form-renderxunit-viewerxzmdxhy-portalxhy-portal-mobilexandaywana-core7w5-toolstest-ui-storybookteng-xintreegetripdocstripdocs-js-sdkui-sb@exabyte-io/cove.jszhizhou-material@gdin/form@gdin/pro-formux-platform-code-mirror@hpe.com/hewsweepaitandem-designer@impressible/graffiti-admin-componentsreportelabreport-publishreport-publish-apsamaelnpmreportcssanity-plugin-groq-snippetstrapi-plugin-raw-querystorybook-addon-playground@one-for-all/page-engine@omnium/components@markslides/editor@marimo-team/frontend@marimo-team/frontend-wasm@marimo-team/islands@mashroom/mashroom-portal-demo-react-app2@kentico/xperience-admin-components@min98/filemanager-react@micromerce/formbuilder-react@music163/tango-ui@openapplus/react-auto-chartx-star-design@fandoc/faneditor@lalalic/flowise-ui@neon.id/field@pgkit/admin@perses-dev/components@perses-dev/prometheus-plugin@nethru/ui@nerdjs/nerd-ui@sanity/code-input@sanity/vision@questflow/canvas@sagold/rje-code-widgets@noscai/medusa-plugin-ses@veecode-platform/plugin-scaffolder@vrabbi/plugin-scaffolder@wcj/code-image@wzx-unreal/react-code-editor@vev/silke@voplus/morpho-documentelabnext_editorelabnext_report@strudel.cycles/react@strapi/design-system@stepzen/graphiql-code-exporter@uiw/react-code-preview@uiw/react-markdown-editor@libsqlstudio/gui@logicalclocks/quartz@soinlabs/ui@snek-at/jaen@spgandhi/weavy-uikit-react@sjognad/log@terminusdb/tdb-react-test-npm@terminusdb/terminusdb-documents-ui@terminusdb/terminusdb-documents-ui-template@terminusdb/terminusdb-react-documents-ui@termsurf/crow@simpleform/editor@simpleform/inula-editor@simtropolis/koenig-lexical@ultraviolet/plus@tandemui/designer@tandem-ui/designer@tryghost/admin-x-settings@staticcms/core@redocly/replay@rocket-js/ui42-markdownfeui-react-markdown
4.21.25

1 month ago

4.21.24

2 months ago

4.21.23

2 months ago

4.21.22

2 months ago

4.21.11

8 months ago

4.21.10

8 months ago

4.21.13

8 months ago

4.21.12

8 months ago

4.21.19

7 months ago

4.21.18

7 months ago

4.21.15

7 months ago

4.21.14

7 months ago

4.21.17

7 months ago

4.21.16

7 months ago

4.21.9

9 months ago

4.21.8

9 months ago

4.21.21

5 months ago

4.21.20

7 months ago

4.21.6

10 months ago

4.21.7

10 months ago

4.21.4

10 months ago

4.21.5

10 months ago

4.21.1

11 months ago

4.21.2

11 months ago

4.21.3

11 months ago

4.21.0

11 months ago

4.20.2

11 months ago

4.20.3

11 months ago

4.20.4

11 months ago

4.20.0

12 months ago

4.20.1

11 months ago

3.2.10

1 year ago

4.19.14

1 year ago

4.19.13

1 year ago

4.19.12

1 year ago

4.19.11

1 year ago

4.19.10

1 year ago

4.19.16

1 year ago

4.19.15

1 year ago

4.19.8

1 year ago

4.19.9

1 year ago

4.19.5

1 year ago

4.19.6

1 year ago

4.19.7

1 year ago

4.19.3

1 year ago

4.19.4

1 year ago

4.18.1

1 year ago

4.18.2

1 year ago

4.18.0

1 year ago

4.17.0

1 year ago

4.17.1

1 year ago

4.16.0

1 year ago

4.19.0

1 year ago

4.19.1

1 year ago

4.19.2

1 year ago

4.14.1

1 year ago

4.14.2

1 year ago

4.14.3

1 year ago

4.14.0

1 year ago

4.13.2

1 year ago

4.13.0

1 year ago

4.13.1

1 year ago

4.12.4

2 years ago

4.15.0

1 year ago

4.15.1

1 year ago

4.12.3

2 years ago

4.12.2

2 years ago

3.2.9

2 years ago

4.12.0

2 years ago

4.12.1

2 years ago

4.11.5

2 years ago

4.11.6

2 years ago

3.2.8

2 years ago

4.9.4

2 years ago

4.9.3

2 years ago

4.9.6

2 years ago

4.9.5

2 years ago

4.9.2

2 years ago

4.10.1

2 years ago

4.10.2

2 years ago

4.10.3

2 years ago

4.10.4

2 years ago

4.10.0

2 years ago

4.11.4

2 years ago

4.11.0

2 years ago

4.11.1

2 years ago

4.11.2

2 years ago

4.11.3

2 years ago

4.9.0

2 years ago

4.9.1

2 years ago

4.8.1

2 years ago

4.8.0

2 years ago

4.7.0

2 years ago

4.6.0

2 years ago

4.5.3

2 years ago

4.5.2

2 years ago

4.4.1

2 years ago

4.4.0

2 years ago

4.4.3

2 years ago

4.4.2

2 years ago

4.3.2

2 years ago

4.3.3

2 years ago

4.5.0

2 years ago

4.5.1

2 years ago

4.3.1

2 years ago

4.3.0

2 years ago

4.2.3

2 years ago

4.2.2

2 years ago

4.2.4

2 years ago

4.2.1

2 years ago

4.2.0

2 years ago

4.0.7

3 years ago

4.0.8

3 years ago

4.1.0

3 years ago

4.0.6

3 years ago

3.2.2

3 years ago

3.2.6

3 years ago

3.2.5

3 years ago

3.2.4

3 years ago

3.2.3

3 years ago

4.0.5

3 years ago

4.0.4

3 years ago

3.2.7

3 years ago

4.0.3

3 years ago

4.0.2

3 years ago

4.0.1

3 years ago

4.0.0-rc.14

3 years ago

4.0.0

3 years ago

4.0.0-rc.13

3 years ago

4.0.0-rc.12

3 years ago

4.0.0-rc.11

3 years ago

4.0.0-rc.10

3 years ago

4.0.0-rc.9

3 years ago

4.0.0-rc.8

3 years ago

4.0.0-rc.7

3 years ago

4.0.0-rc.1

3 years ago

4.0.0-rc.0

3 years ago

4.0.0-rc.3

3 years ago

4.0.0-rc.2

3 years ago

4.0.0-rc.5

3 years ago

4.0.0-rc.4

3 years ago

4.0.0-rc.6

3 years ago

3.2.1

3 years ago

3.1.0

3 years ago

3.0.13

3 years ago

3.0.14

3 years ago

3.0.15

3 years ago

3.0.12

3 years ago

3.0.11

3 years ago

3.0.10

3 years ago

3.0.9

3 years ago

3.0.8

3 years ago

3.0.7

3 years ago

3.0.6

3 years ago

3.0.4

3 years ago

3.0.5

3 years ago

3.0.3

3 years ago

3.0.2

3 years ago

3.0.1

4 years ago

3.0.0

4 years ago

2.3.4

4 years ago

2.3.5

4 years ago

2.3.3

4 years ago

2.3.2

4 years ago

2.3.1

4 years ago

2.3.0

4 years ago

2.2.1

4 years ago

2.2.0

4 years ago

2.1.0

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.1.0

4 years ago

1.0.28

5 years ago

1.0.27

5 years ago

1.0.26

5 years ago

1.0.25

5 years ago

1.0.24

5 years ago

1.0.23

5 years ago

1.0.22

5 years ago

1.0.21

5 years ago

1.0.19

5 years ago

1.0.18

5 years ago

1.0.17

6 years ago

1.0.16

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago