5.14.2 • Published 4 days ago

@gravity-ui/page-constructor v5.14.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 days ago

@gravity-ui/page-constructor · npm package CI Release storybook

Page constructor

Page-constructor is a library for rendering web pages or their parts based on JSON data (support for YAML format is to be added later).

When creating pages, component-based approach is used: a page is built using a set of ready-made blocks that can be placed in any order. Each block has a certain type and set of input data parameters.

For the format of input data and list of available blocks, see the documentation.

Install

npm install @gravity-ui/page-constructor

Required dependencies

Please note that to start using the package, your project must also have the following installed: @diplodoc/transform, @gravity-ui/uikit, react. Check out the peerDependencies section of package.json for accurate information.

Getting started

The page constructor is imported as a React component. To make sure it runs properly, wrap it in PageConstructorProvider:

import {PageConstructor, PageConstructorProvider} from '@gravity-ui/page-constructor';

const Page: WithChildren<PageProps> = ({content}) => (
  <PageConstructorProvider>
    <PageConstructor content={content} />
  </PageConstructorProvider>
);

Parameters

interface PageConstructorProps {
  content: PageContent; //Blocks data in JSON format.
  shouldRenderBlock?: ShouldRenderBlock; // A function that is invoked when rendering each block and  lets you set conditions for its display.
  custom?: Custom; //Custom blocks (see `Customization`).
  renderMenu?: () => React.ReactNode; //A function that renders the page menu with navigation (we plan to add rendering for the default menu version).
  navigation?: NavigationData; // Navigation data for using navigation component in JSON format
}

interface PageConstructorProviderProps {
  isMobile?: boolean; //A flag indicating that the code is executed in mobile mode.
  locale?: LocaleContextProps; //Info about the language and domain (used when generating and formatting links).
  location?: Location; //API of the browser or router history, the page URL.
  analytics?: AnalyticsContextProps; // function to handle analytics event

  ssrConfig?: SSR; //A flag indicating that the code is run on the server size.
  theme?: 'light' | 'dark'; //Theme to render the page with.
  mapsContext?: MapsContextType; //Params for map: apikey, type, scriptSrc, nonce
}

export interface PageContent extends Animatable {
  blocks: Block[];
  menu?: Menu;
  background?: MediaProps;
}

interface Custom {
  blocks?: CustomItems;
  subBlocks?: CustomItems;
  headers?: CustomItems;
  loadable?: LoadableConfig;
}

type ShouldRenderBlock = (block: Block, blockKey: string) => Boolean;

interface Location {
  history?: History;
  search?: string;
  hash?: string;
  pathname?: string;
  hostname?: string;
}

interface Locale {
  lang?: Lang;
  tld?: string;
}

interface SSR {
  isServer?: boolean;
}

interface NavigationData {
  logo: NavigationLogo;
  header: HeaderData;
}

interface NavigationLogo {
  icon: ImageProps;
  text?: string;
  url?: string;
}

interface HeaderData {
  leftItems: NavigationItem[];
  rightItems?: NavigationItem[];
}

interface NavigationLogo {
  icon: ImageProps;
  text?: string;
  url?: string;
}

Custom blocks

The page constructor lets you use blocks that are user-defined in their app. Blocks are regular React components.

To pass custom blocks to the constructor:

  1. Create a block in your app.

  2. In your code, create an object with the block type (string) as a key and an imported block component as a value.

  3. Pass the object you created to the custom.blocks, custom.headers or custom.subBlocks parameter of the PageConstructor component (custom.headers specifies the block headers to be rendered separately above general content).

  4. Now you can use the created block in input data (the content parameter) by specifying its type and data.

To use mixins and constructor style variables when creating custom blocks, add import in your file:

@import '~@gravity-ui/page-constructor/styles/styles.scss';

Loadable blocks

It's sometimes necessary that a block renders itself based on data to be loaded. In this case, loadable blocks are used.

To add custom loadable blocks, pass to the PageConstructor the custom.loadable property with data source names (string) for the component as a key and an object as a value.

export interface LoadableConfigItem {
  fetch: FetchLoadableData; // data loading method
  component: React.ComponentType; //blog to pass loaded data
}

type FetchLoadableData<TData = any> = (blockKey: string) => Promise<TData>;

Grid

The page constructor uses the bootstrap grid and its implementation based on React components that you can use in your own project (including separately from the constructor).

Usage example:

import {Grid, Row, Col} from '@gravity-ui/page-constructor';

const Page: React.FC<PageProps> = ({children}) => (
  <Grid>
    <Row>
      <Col sizes={{lg: 4, sm: 6, all: 12}}>{children}</Col>
    </Row>
  </Grid>
);

Navigation

Page navigation can also be used separately from the constructor:

import {Navigation} from '@gravity-ui/page-constructor';

const Page: React.FC<PageProps> = ({data, logo}) => <Navigation data={data} logo={logo} />;

Blocks

Each block is an atomic top-level component. They're stored in the src/units/constructor/blocks directory.

Sub-blocks

Sub-blocks are components that can be used in the block children property. In a config, a list of child components from sub-blocks is specified. Once rendered, these sub-blocks are passed to the block as children.

How to add a new block to the page-constructor

  1. In the src/blocks or src/sub-blocks directory, create a folder with the block or sub-block code.

  2. Add the block or sub-block name to enum BlockType orSubBlockType and describe its properties in the src/models/constructor-items/blocks.ts or src/models/constructor-items/sub-blocks.ts file in a similar way to the existing ones.

  3. Add export for the block in the src/blocks/index.ts file and for the sub-block in the src/sub-blocks/index.ts file.

  4. Add a new component or block to mapping in src/constructor-items.ts.

  5. Add a validator for the new block:

    • Add a schema.ts file to the block or sub-block directory. In this file, describe a parameter validator for the component in json-schema format.
    • Export it in the schema/validators/blocks.ts or schema/validators/sub-blocks.ts file.
    • Add it to enum or selectCases in the schema/index.ts file.
  6. In the block directory, add the README.md file with a description of input parameters.

  7. In the block directory add storybook demo in __stories__ folder. All demo content for story should be placed in data.json at story dir. The generic Story must accept the type of block props, otherwise incorrect block props will be displayed in Storybook.
  8. Add block data template to src/editor/data/templates/ folder, file name should match block type
  9. (optional) Add block preview icon to src/editor/data/previews/ folder, file name should match block type

Themes

The PageConstructor lets you use themes: you can set different values for individual block properties depending on the theme selected in the app.

To add a theme to a block property:

  1. In the models/blocks.ts file, define the type of the respective block property using the ThemeSupporting<T> generic, where T is the type of the property.

  2. In the file with the block's react component, get the value of the property with the theme via getThemedValue and useTheme hook (see examples in the MediaBlock.tsx block).

  3. Add theme support to the property validator: in the block's schema.ts file, wrap this property in withTheme.

i18n

The page-constructor is a uikit-based library, and we use an instance of i18n from uikit. To set up internationalization, you just need to use the configure from uikit:

import {configure} from '@gravity-ui/uikit';

configure({
  lang: 'ru',
});

Maps

To use maps, put the map type, scriptSrc and apiKey in field mapContext in PageConstructorProvider.

You can define environment variables for dev-mode in .env.development file within project root. STORYBOOK_GMAP_API_KEY - apiKey for google maps

Analytics

Init

To start using any analytics, pass a handler to the constructor. The handler must be created on a project side. The handler will receive the default and custom event objects. The passed handler will be fired on a button, link, navigation, and control clicks. As one handler is used for all events treatment, pay attention to how to treat different events while creating the handler. There are predefined fields that serve to help you to build complex logic.

Pass autoEvents: true to constructor to fire automatically configured events.

function sendEvents(events: MyEventType []) {
  ...
}

<PageConstructorProvider
    ...

    analytics={{sendEvents, autoEvents: true}}

    ...
/>

An event object has only one required field - name. It also has predefined fields, which serve to help manage complex logic. For example, counter.include can help to send event in a particular counter if several analytics systems are used in a project.

type AnalyticsEvent<T = {}> = T & {
  name: string;
  type?: string;
  counters?: AnalyticsCounters;
  context?: string;
};

It is possible to configure an event type needed for a project.

type MyEventType = AnalyticsEvent<{
  [key: string]?: string; // only a 'string' type is supported
}>;

Counter selector

It is possible to configure an event to which an analytics system to sent.

type AnalyticsCounters = {
  include?: string[]; // array of analytics counter ids that will be applied
  exclude?: string[]; // array of analytics counter ids that will not be applied
};

context parameter

Pass context value to define place in a project where an event is fired.

Use selector below or create logic that serves project needs.

// analyticsHandler.ts
if (isCounterAllowed(counterName, counters)) {
  analyticsCounter.reachGoal(counterName, name, parameters);
}

Reserved event types

Several predefined event types are used to mark automatically configured events. Use the types to filter default events, for example.

enum PredefinedEventTypes {
  Default = 'default-event', // default events which fire on every button click
  Play = 'play', // React player event
  Stop = 'stop', // React player event
}

Development

npm ci
npm run dev

Release flow

In usual cases we use two types of commits:

  1. fix: a commit of the type fix patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).
  2. feat: a commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).
  3. BREAKING CHANGE: a commit that has a footer BREAKING CHANGE:, or appends a ! after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.
  4. To set release package version manually you need to add Release-As: <version> to your commit message e.g.
git commit -m 'chore: bump release

Release-As: 1.2.3'

You can see all information here.

When you receive the approval of your pull-request from the code owners and pass all the checks, please do the following:

  1. You should check if there is a release pull-request from robot with changes from another contributor (it looks like chore(main): release 0.0.0). If it exists, you should check why it is not merged. If the contributor agrees to release a shared version, follow the next step. If not, ask him to release his version, then follow the next step.
  2. Squash and merge your PR (It is important to release a new version with Github-Actions)
  3. Wait until robot creates a PR with a new version of the package and information about your changes in CHANGELOG.md. You can see the process on the Actions tab.
  4. Check your changes in CHANGELOG.md and approve robot's PR.
  5. Squash and merge PR. You can see release process on the Actions tab.

Alpha versions release

If you want to release alpha version of the package from your branch you can do it manually:

  1. Go to tab Actions
  2. Select workflow "Release alpha version" on the left page's side
  3. You can see on the right side the button "Run workflow". Here you can choose the branch.
  4. You can also see field with manually version. If you release alpha in your branch for the first time, do not set anything here. After first release you have to set the new version manually because we don't change package.json in case that the branch can expire very soon. Use the prefix alpha in you manual version otherwise you will get error.
  5. Push "Run workflow" and wait until the action will finish. You can release versions as many as you want but do not abuse it and release versions if you really need it. In other cases use npm pack.

Beta-major versions release

If you want to release a new major version, you will probably need for a beta versions before a stable one, please do the following:

  1. Create or update the branch beta.
  2. Add there your changes.
  3. When you ready for a new beta version, release it manually with an empty commit (or you can add this commit message with footer to the last commit):
git commit -m 'fix: last commit

Release-As: 3.0.0-beta.0' --allow-empty
  1. Release please robot will create a new PR to the branch beta with updated CHANGELOG.md and bump version of the package
  2. You can repeat it as many as you want. When you ready to release the latest major version without beta tag, you have to create PR from branch beta to branch main. Notice that it is normal that your package version will be with beta tag. Robot knows that and change it properly. 3.0.0-beta.0 will become 3.0.0

Release flow for previous major-versions

If you want to release a new version in previous major after commit it to the main, please do the following:

  1. Update necessary branch, the previous major release branch names are:
    1. version-1.x.x/fixes - for major 1.x.x
    2. version-2.x.x - for major 2.x.x
  2. Checkout a new branch from the previous major release branch
  3. Cherry-pick your commit from the branch main
  4. Create PR, get an approval and merge into the previous major release branch
  5. Squash and merge your PR (It is important to release a new version with Github-Actions)
  6. Wait until robot creates a PR with a new version of the package and information about your changes in CHANGELOG.md. You can see the process on the Actions tab.
  7. Check your changes in CHANGELOG.md and approve robot's PR.
  8. Squash and merge PR. You can see release process on the Actions tab.

Page constructor editor

Editor provides user interface for page content management with realtime preview.

How to use:

import {Editor} from '@gravity-ui/page-constructor/editor';

interface MyAppEditorProps {
  initialContent: PageContent;
  transformContent: ContentTransformer;
  onChange: (content: PageContent) => void;
}

export const MyAppEditor = ({initialContent, onChange, transformContent}: MyAppEditorProps) => (
  <Editor content={initialContent} onChange={onChange} transformContent={transformContent} />
);

Tests

Comprehensive documentation is available at the provided link.

5.14.2

4 days ago

5.14.1

10 days ago

5.14.0

10 days ago

5.13.0

14 days ago

4.59.0

25 days ago

5.11.1

25 days ago

5.12.0

25 days ago

4.60.0

25 days ago

5.10.1

27 days ago

4.58.1

27 days ago

5.11.0

26 days ago

5.10.0

1 month ago

4.58.0

1 month ago

4.57.3

1 month ago

5.9.1

1 month ago

4.57.0

1 month ago

4.57.1

1 month ago

5.9.0

1 month ago

5.8.0

1 month ago

5.7.2

1 month ago

5.7.1

2 months ago

5.7.0

2 months ago

5.5.0

2 months ago

5.6.1

2 months ago

5.6.0

2 months ago

5.2.0

2 months ago

5.3.0

2 months ago

5.4.0

2 months ago

5.1.1-alpha.0

2 months ago

5.1.0

2 months ago

5.0.1

2 months ago

5.0.0

2 months ago

4.56.1

2 months ago

4.56.0

2 months ago

4.55.0

2 months ago

4.54.0

2 months ago

4.53.0

2 months ago

4.51.2-alpha.0

3 months ago

4.52.0

3 months ago

4.51.0

3 months ago

4.51.1

3 months ago

4.49.2

3 months ago

4.50.0

3 months ago

4.49.1

3 months ago

4.49.0

3 months ago

4.48.0

3 months ago

4.47.2

4 months ago

4.47.0

4 months ago

4.46.1

4 months ago

4.46.2

4 months ago

4.47.0-beta.0

4 months ago

4.46.0

4 months ago

4.45.0

4 months ago

4.44.0

4 months ago

4.44.0-beta.0

5 months ago

4.43.2-alpha.0

5 months ago

4.42.5-alpha.1

5 months ago

4.43.1

5 months ago

4.42.5-alpha.0

5 months ago

4.43.0

5 months ago

4.42.5

5 months ago

4.42.4

5 months ago

4.42.3

5 months ago

4.42.1

5 months ago

4.42.2

5 months ago

4.37.3

6 months ago

4.37.2

6 months ago

4.37.1

6 months ago

4.37.0

6 months ago

4.37.4

6 months ago

4.24.0-alpha.0

7 months ago

4.25.0

7 months ago

4.18.2-alpha.0

7 months ago

4.18.2-alpha.1

7 months ago

4.26.0

7 months ago

4.0.1

9 months ago

4.0.0

9 months ago

4.14.0

8 months ago

4.19.2-alpha.0

7 months ago

4.25.0-alpha.0

7 months ago

4.24.0

7 months ago

4.25.1

7 months ago

4.13.0

8 months ago

4.13.1

8 months ago

4.36.0

6 months ago

4.39.1

5 months ago

4.39.0

5 months ago

4.16.0

7 months ago

3.19.0

8 months ago

3.19.1

8 months ago

4.28.0

7 months ago

4.28.1

7 months ago

4.26.0-alpha.0

7 months ago

4.10.1-alpha.0

8 months ago

4.38.1

6 months ago

4.38.0

6 months ago

4.15.0

8 months ago

4.15.1

8 months ago

4.15.2

8 months ago

4.15.3

8 months ago

4.27.0

7 months ago

4.36.0-alpha.1

6 months ago

4.36.0-alpha.0

6 months ago

4.27.0-alpha.0

7 months ago

3.17.2-alpha.0

9 months ago

4.5.3

8 months ago

3.17.0

9 months ago

3.17.2

9 months ago

3.17.1

9 months ago

4.21.0

7 months ago

5.0.0-alpha.0

7 months ago

3.17.3

8 months ago

4.4.1

9 months ago

4.33.0

6 months ago

4.10.0

8 months ago

4.27.3-alpha.0

7 months ago

4.20.2

7 months ago

3.18.0

8 months ago

4.20.0

7 months ago

4.20.1

7 months ago

4.3.0

9 months ago

1.28.1-alpha.0

7 months ago

1.28.1-alpha.1

7 months ago

4.31.1-alpha.0

6 months ago

3.15.0

9 months ago

4.23.0

7 months ago

4.23.0-alpha.0

7 months ago

4.12.0

8 months ago

4.35.1

6 months ago

4.35.0

6 months ago

4.22.0

7 months ago

3.16.0

9 months ago

4.1.0

9 months ago

4.1.2

9 months ago

4.1.1

9 months ago

4.11.0

8 months ago

4.11.1

8 months ago

4.34.1

6 months ago

4.34.0

6 months ago

4.3.12-alpha.3

8 months ago

4.9.0

8 months ago

4.3.12-alpha.1

8 months ago

4.9.1-alpha.0

8 months ago

4.40.3

5 months ago

4.40.2

5 months ago

4.40.1

5 months ago

4.40.0

5 months ago

4.40.6

5 months ago

4.40.5

5 months ago

4.40.4

5 months ago

3.12.1

9 months ago

3.12.0

9 months ago

4.8.0

8 months ago

3.14.0

9 months ago

3.13.0

9 months ago

3.18.0-alpha.1

8 months ago

3.18.0-alpha.0

8 months ago

4.7.0

8 months ago

4.13.2-alpha.0

8 months ago

4.15.1-alpha.0

8 months ago

4.42.0

5 months ago

4.27.2-alpha.0

7 months ago

1.27.4-alpha.0

7 months ago

3.10.1

10 months ago

3.10.0

10 months ago

3.10.3

10 months ago

1.27.4-alpha.1

7 months ago

3.10.2

10 months ago

4.6.1

8 months ago

4.6.0

8 months ago

4.31.1

6 months ago

4.31.0

6 months ago

5.0.1-alpha.0

7 months ago

1.12.0-alpha.0

8 months ago

4.19.0-alpha.0

7 months ago

3.12.2

9 months ago

4.41.0

5 months ago

3.11.0

10 months ago

4.5.0

8 months ago

4.5.2

8 months ago

4.5.1

8 months ago

4.30.0

6 months ago

4.28.0-alpha.0

7 months ago

4.18.1

7 months ago

4.18.0

7 months ago

4.17.0

7 months ago

4.29.1

7 months ago

4.29.2

6 months ago

4.29.0

7 months ago

4.20.0-alpha.4

7 months ago

4.41.1-alpha.0

5 months ago

4.20.0-alpha.3

7 months ago

4.20.0-alpha.5

7 months ago

4.29.1-alpha.0

6 months ago

4.20.0-alpha.0

7 months ago

4.20.0-alpha.2

7 months ago

4.20.0-alpha.1

7 months ago

4.29.1-alpha.1

6 months ago

1.27.2

8 months ago

1.27.3

8 months ago

1.27.0

8 months ago

1.27.1

8 months ago

4.19.0

7 months ago

4.19.1

7 months ago

3.12.2-alpha.0

9 months ago

3.12.2-alpha.3

9 months ago

3.12.2-alpha.4

9 months ago

3.12.2-alpha.1

9 months ago

3.12.2-alpha.2

9 months ago

1.28.1

7 months ago

4.18.1-alpha.1

7 months ago

1.28.2

7 months ago

1.28.0

7 months ago

1.28.3

7 months ago

4.18.1-alpha.0

7 months ago

3.9.2

10 months ago

3.9.1

10 months ago

3.9.0

10 months ago

3.8.3

10 months ago

3.8.2

11 months ago

3.8.1

11 months ago

3.8.0

11 months ago

3.7.0

11 months ago

3.6.2-alpha.3

11 months ago

3.6.2-alpha.0

11 months ago

3.6.2-alpha.1

11 months ago

3.6.2

11 months ago

3.1.3-alpha.11

11 months ago

3.1.3-alpha.10

11 months ago

3.6.1

11 months ago

3.1.3-alpha.9

11 months ago

3.1.3-alpha.8

11 months ago

3.1.3-alpha.7

11 months ago

3.6.0

11 months ago

3.5.0

11 months ago

3.5.0-alpha.0

11 months ago

3.4.0

11 months ago

3.0.1-alpha.0

11 months ago

3.2.0-alpha.0

11 months ago

3.3.0

11 months ago

3.2.0

11 months ago

3.1.3-alpha.1

11 months ago

3.1.3-alpha.0

11 months ago

3.1.3-alpha.6

11 months ago

3.1.3-alpha.5

11 months ago

3.1.3-alpha.4

11 months ago

3.1.3-alpha.3

11 months ago

3.1.3-alpha.2

11 months ago

2.22.3

11 months ago

3.1.2

11 months ago

3.1.1

11 months ago

2.19.0

12 months ago

2.22.1

11 months ago

2.22.0

11 months ago

2.19.0-alpha.0

12 months ago

2.22.2

11 months ago

2.22.0-alpha.0

11 months ago

3.1.0

11 months ago

2.18.0

12 months ago

2.21.0

11 months ago

2.17.0

12 months ago

3.0.0

11 months ago

2.20.0

12 months ago

2.20.1

11 months ago

4.0.0-beta.0

11 months ago

2.16.0

12 months ago

2.15.0-alpha

1 year ago

3.0.0-alpha.6

11 months ago

3.0.0-alpha.1

12 months ago

3.0.0-alpha.0

12 months ago

3.0.0-alpha.3

12 months ago

3.0.0-alpha.2

12 months ago

3.0.0-alpha.5

12 months ago

3.0.0-alpha.4

12 months ago

2.15.0

1 year ago

2.14.0

1 year ago

2.22.0-alpha

11 months ago

2.13.1

1 year ago

2.23.0-alpha.0

11 months ago

2.23.0-alpha.1

11 months ago

2.13.0

1 year ago

2.13.0-alpha.0

1 year ago

2.11.0

1 year ago

2.12.0-alpha

1 year ago

2.12.0

1 year ago

2.10.0

1 year ago

2.9.0

1 year ago

2.8.4

1 year ago

2.4.0

1 year ago

2.0.0-alpha.0

1 year ago

2.2.2-alpha.1

1 year ago

2.3.0

1 year ago

2.3.2

1 year ago

2.3.1

1 year ago

2.2.2-alpha.4

1 year ago

2.2.1-alpha.0

1 year ago

2.2.1

1 year ago

2.2.0

1 year ago

2.3.2-alpha.0

1 year ago

2.1.1

1 year ago

2.1.0

1 year ago

2.0.3

1 year ago

2.0.2

1 year ago

2.8.1

1 year ago

2.8.0

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.25.1

1 year ago

1.25.4

1 year ago

1.25.2

1 year ago

1.25.3

1 year ago

2.2.2-aplha.2

1 year ago

2.7.0

1 year ago

2.0.0-beta.1

1 year ago

1.26.0

1 year ago

1.26.3

1 year ago

1.26.1

1 year ago

1.26.2

1 year ago

2.8.3

1 year ago

2.8.2

1 year ago

1.26.2-alpha.0

1 year ago

2.6.0

1 year ago

1.24.0-alpha.0

1 year ago

2.5.0

1 year ago

1.26.0-alpha.0

1 year ago

1.26.0-alpha.1

1 year ago

1.26.0-alpha.2

1 year ago

1.25.0-alpha.0

1 year ago

1.25.0

1 year ago

1.24.0

1 year ago

2.0.0-beta.0

1 year ago

1.22.1-alpha.1

1 year ago

1.22.1-alpha.2

1 year ago

1.22.1-alpha.3

1 year ago

1.23.0

1 year ago

1.22.1-alpha.0

1 year ago

1.22.0-alpha.0

1 year ago

1.22.0

1 year ago

1.22.1

1 year ago

1.21.0

1 year ago

1.20.5

1 year ago

1.20.4

1 year ago

1.20.3

1 year ago

1.20.1

1 year ago

1.20.2

1 year ago

1.19.1

1 year ago

1.20.0

1 year ago

1.19.0

1 year ago

1.18.1

1 year ago

1.18.0

1 year ago

1.17.0

1 year ago

1.15.0-alpha.25

1 year ago

1.16.4

1 year ago

1.15.0-alpha.24

1 year ago

1.15.0-alpha.23

1 year ago

1.16.3

1 year ago

1.15.0-alpha.22

1 year ago

1.15.0-alpha.21

1 year ago

1.15.0-alpha.20

1 year ago

1.15.0-alpha.18

1 year ago

1.15.0-alpha.19

1 year ago

1.15.0-alpha.17

1 year ago

1.15.0-alpha.16

1 year ago

1.15.0-alpha.15

1 year ago

1.16.1-alpha.1

1 year ago

1.16.2

1 year ago

1.16.1-alpha.0

1 year ago

1.16.1

1 year ago

1.16.0

1 year ago

1.15.4

1 year ago

1.15.0-alpha.14

1 year ago

1.14.1

1 year ago

1.14.4

1 year ago

1.14.3

1 year ago

1.14.2

1 year ago

1.15.0

1 year ago

1.15.3

1 year ago

1.15.2

1 year ago

1.15.1

1 year ago

1.15.0-alpha.13

1 year ago

1.15.0-alpha.10

1 year ago

1.15.0-alpha.12

1 year ago

1.15.0-alpha.11

1 year ago

1.15.0-alpha.4

1 year ago

1.15.0-alpha.5

1 year ago

1.15.0-alpha.6

1 year ago

1.15.0-alpha.7

1 year ago

1.15.0-alpha.8

1 year ago

1.15.0-alpha.9

1 year ago

1.15.0-alpha.2

1 year ago

1.15.0-alpha.3

1 year ago

1.15.0-alpha.1

1 year ago

1.15.0-alpha.0

1 year ago

1.14.0

1 year ago

1.13.2-alpha.1

1 year ago

1.14.0-alpha.8

1 year ago

1.14.0-alpha.7

1 year ago

1.14.0-alpha.6

1 year ago

1.14.0-alpha.5

1 year ago

1.14.0-alpha.4

1 year ago

1.14.0-alpha.3

1 year ago

1.13.2-alpha.0

1 year ago

1.13.2

1 year ago

1.13.1-alpha.0

1 year ago

1.12.1-alpha.1

1 year ago

1.14.0-alpha.0

1 year ago

1.14.0-alpha.2

1 year ago

1.14.0-alpha.1

1 year ago

1.13.1

1 year ago

1.13.0

1 year ago

1.12.1-alpha.0

1 year ago

1.10.5

1 year ago

1.10.4

1 year ago

1.10.3

1 year ago

1.9.1-alpha.0

1 year ago

1.10.2

1 year ago

1.9.1-alpha.1

1 year ago

1.9.1-alpha.2

1 year ago

1.10.8

1 year ago

1.9.1-alpha.3

1 year ago

1.10.7

1 year ago

1.9.1-alpha.4

1 year ago

1.10.6

1 year ago

1.6.1

1 year ago

1.6.0

1 year ago

1.4.2-alpha.0

1 year ago

1.7.0-alpha.10

1 year ago

1.13.0-alpha.0

1 year ago

1.11.1

1 year ago

1.9.1

1 year ago

1.8.0-alfa.1

1 year ago

1.9.0

1 year ago

1.8.0-alfa.0

1 year ago

1.8.0-alfa.2

1 year ago

1.6.0-alpha.1

1 year ago

1.6.0-alpha.0

1 year ago

1.10.7-alpha.1

1 year ago

1.10.7-alpha.0

1 year ago

1.10.7-alpha.2

1 year ago

1.8.2-alpha.1

1 year ago

1.8.2-alpha.0

1 year ago

1.10.1

1 year ago

1.10.0

1 year ago

1.12.1

1 year ago

1.12.0

1 year ago

1.10.2-alpha.1

1 year ago

1.10.2-alpha.0

1 year ago

1.7.0-alpha.9

1 year ago

1.8.2

1 year ago

1.7.0-alpha.7

1 year ago

1.8.1

1 year ago

1.7.0-alpha.8

1 year ago

1.8.0

1 year ago

1.7.0-alpha.5

1 year ago

1.7.0-alpha.6

1 year ago

1.7.0-alpha.3

1 year ago

1.4.2

1 year ago

1.7.0-alpha.4

1 year ago

1.7.0-alpha.1

1 year ago

1.7.0-alpha.2

1 year ago

1.7.0-alpha.0

1 year ago

1.4.2-alpha

1 year ago

1.9.3-alpha.0

1 year ago

1.9.3-alpha.1

1 year ago

1.9.3

1 year ago

1.9.2

1 year ago

1.11.0

1 year ago

1.9.0-alpha.0

1 year ago

1.7.1-alpha.2

1 year ago

1.7.1-alpha.3

1 year ago

1.7.1-alpha.0

1 year ago

1.7.1

1 year ago

1.7.1-alpha.1

1 year ago

1.7.0

1 year ago

1.7.1-alpha.4

1 year ago

1.5.0-alpha.0

2 years ago

1.4.1

2 years ago

1.4.0-alpha.0

2 years ago

1.4.0

2 years ago

1.3.0-alpha.0

2 years ago

1.3.0

2 years ago

1.2.5-alpha.1

2 years ago

1.2.5-alpha.0

2 years ago

1.2.3-alpha.7

2 years ago

1.2.5

2 years ago

1.2.3-alpha.5

2 years ago

1.2.3-alpha.6

2 years ago

1.2.4

2 years ago

1.2.3-alpha.4

2 years ago

1.2.3-alpha.3

2 years ago

1.2.3-alpha.2

2 years ago

1.2.3-alpha.1

2 years ago

1.2.3-alpha.0

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0-alpha.1

2 years ago

1.2.0-alpha.0

2 years ago

1.1.0-alpha.0

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago