9.1.26 • Published 28 days ago

@workday/canvas-kit-css-form-field v9.1.26

Weekly downloads
980
License
Apache-2.0
Repository
-
Last release
28 days ago

Canvas Kit Form Field

Form element styles and other common form styles.

Installation

yarn add @workday/canvas-kit-css

or

yarn add @workday/canvas-kit-css-form

Add your node_modules directory to your SASS includePaths. You will then be able to import index.scss.

@import '~@workday/canvas-kit-css-form/index.scss';

You must have PostCSS support. Add the postcss-inline-svg plugin to properly process and inline icons. Process your SASS through PostCSS once it has been compiled to CSS.

Usage

<form class="wdc-form">
  <div class="wdc-form-field-wrapper">
    <label class="wdc-form-label wdc-form-label-required" for="email">Email</label>
    <div class="wdc-form-field">
      <input type="text" class="wdc-form-textinput" placeholder="email@address.com" id="email" />
    </div>
  </div>

  <div class="wdc-form-field-wrapper">
    <label class="wdc-form-label wdc-form-label-required" for="password">Password</label>
    <div class="wdc-form-field">
      <input type="password" class="wdc-form-textinput" id="password" />
    </div>
  </div>
</form>

Inline Labels

Form labels are rendered above the fields by default. You can enable inline labels (side by side), by applying the .wdc-form-inline-labels class to .wdc-form.

<div class="wdc-form wdc-form-inline-labels">
  <div class="wdc-form-field-wrapper">
    <label htmlFor="textinput" class="wdc-form-label wdc-form-label-required">Input Label</label>
    <div class="wdc-form-field">
      <input
        type="text"
        class="wdc-form-textinput"
        placeholder="Here's a placeholder"
        id="textinput"
      />
    </div>
  </div>
</div>

If you need to toggle this programmatically (i.e. for mobile responsive), you can use the wdc-form-inline-labels() mixin.

@media (max-width: 640px) {
  .wdc-form {
    @include wdc-form-inline-labels();
  }
}

Accessibility

See canvas-kit-core for accessibility guidelines.

Form Controls

Form controls are available as both classes and mixins. Using the class is preferred.

Group form labels and fields using .wdc-form-field.

Labels

Use .wdc-form-label on <label> elements.

Required field labels
Labels for required fields should use .wdc-form-label-required to add a red asterisk next to the label.

<div class="wdc-form-field-wrapper">
  <label class="wdc-form-label wdc-form-label-required">Required Label</label>
  <label class="wdc-form-label">Input Label</label>
</div>

Plain Text

Use .wdc-form-text to style plain form text.

<div class="wdc-form-field-wrapper">
  <label class="wdc-form-label" for="text">Text Label</label>
  <div class="wdc-form-field">
    <span class="wdc-form-text" id="text">Here is some text</span>
  </div>
</div>

Text Input

Use .wdc-form-textinput to style text <input> elements.

<div class="wdc-form-field-wrapper">
  <label class="wdc-form-label" for="textinput">Input Label</label>
  <div class="wdc-form-field">
    <input
      type="text"
      class="wdc-form-textinput"
      placeholder="Here's a placeholder"
      id="textinput"
    />
  </div>
</div>

Text Area

Use .wdc-form-textarea to style <textarea> elements.

<div class="wdc-form-field-wrapper">
  <label class="wdc-form-label" for="textarea">Textarea Label</label>
  <div class="wdc-form-field">
    <textarea class="wdc-form-textarea" placeholder="Here's a placeholder" id="textarea"></textarea>
  </div>
</div>

Select

Use .wdc-form-select to style <select> elements.

<div class="wdc-form-field-wrapper">
  <label class="wdc-form-label">Select Label</label>
  <div class="wdc-form-field">
    <select class="wdc-form-select" id="select">
      <option disabled selected>Select an option</option>
      <option>Option 1</option>
      <option>Option 2</option>
      <option>Option 3</option>
    </select>
  </div>
</div>

Checkbox

Add .wdc-form-checkbox to a checkbox <input> element.

NOTE: excluding the .wdc-form-field wrapper or the following <label> element will break the layout and show a native checkbox.

Here is why: It's technically a bug that webkit browsers allow pseudo elements on inputs. This means that styling a checked checkbox by using input:after is not supported in Firefox, IE, etc. To get around this, we layer the before and after pseudo elements of the adjacent label ontop of the native checkbox to give the visual we want.

<div class="wdc-form-field-wrapper">
  <div class="wdc-form-field">
    <input type="checkbox" class="wdc-form-checkbox" />
    <label class="wdc-form-label">Checkbox Label</label>
  </div>
</div>

<div class="wdc-form-field-wrapper">
  <div class="wdc-form-field">
    <input type="checkbox" class="wdc-form-checkbox" disabled />
    <label class="wdc-form-label">Disabled Checkbox Label</label>
  </div>
</div>

<div class="wdc-form-field-wrapper">
  <div class="wdc-form-field">
    <input type="checkbox" class="wdc-form-checkbox" checked readonly />
    <label class="wdc-form-label">Checked Checkbox Label</label>
  </div>
</div>

<div class="wdc-form-field-wrapper">
  <label class="wdc-form-label">Checkbox with lefthand label</label>
  <div class="wdc-form-field">
    <input type="checkbox" class="wdc-form-checkbox" checked readonly />
    <label class="wdc-form-label">Checked Checkbox Label</label>
  </div>
</div>

Checkbox Without a Label

This is highly discouraged. However, if you absolutely must show a checkbox without a label (i.e. as the first column in a table row), here is how it can be achieved:

<div class="wdc-form-checkbox-nolabel">
  <input type="checkbox" class="wdc-form-checkbox" id="checkbox2" />
  <label htmlFor="checkbox2" class="wdc-form-label"></label>
</div>

Checkbox Groups

Wrap a set of chekboxes in a .wdc-form-field-wrapper.wdc-form-group container. Place checkboxes within .wdc-form-group-fields. Each checkbox option should be in its own .wdc-form-field container.

<div class="wdc-form-field-wrapper wdc-form-group">
  <label class="wdc-form-label">Checkbox Group</label>

  <div class="wdc-form-group-fields">
    <div class="wdc-form-field">
      <input type="checkbox" class="wdc-form-checkbox" />
      <label class="wdc-form-label">Checkbox Label</label>
    </div>

    <div class="wdc-form-field">
      <input type="checkbox" class="wdc-form-checkbox" />
      <label class="wdc-form-label">Checkbox Label</label>
    </div>

    <div class="wdc-form-field">
      <input type="checkbox" class="wdc-form-checkbox" />
      <label class="wdc-form-label">Checkbox Label</label>
    </div>
  </div>
</div>

Radios

Wrap a set of radios in a .wdc-form-field-wrapper.wdc-form-group container. Place radio select options within .wdc-form-group-fields. Each radio select option should be in its own .wdc-form-field container.

The .wdc-form-group-fields wrapper is necessary to display error styling.

<div class="wdc-form-field-wrapper wdc-form-group">
  <label class="wdc-form-label">Radio Select Label</label>

  <div class="wdc-form-group-fields">
    <div class="wdc-form-field">
      <input type="radio" class="wdc-form-radio" name="radio" checked />
      <label class="wdc-form-label">Option 1</label>
    </div>

    <div class="wdc-form-field">
      <input type="radio" class="wdc-form-radio" name="radio" />
      <label class="wdc-form-label">Option 2</label>
    </div>

    <div class="wdc-form-field">
      <input type="radio" class="wdc-form-radio" name="radio" />
      <label class="wdc-form-label">Option 3</label>
    </div>
  </div>
</div>

States

State styling may be explicitly applied to form controls using the classes below.

StateClass
hover.wdc-form-hover
focus.wdc-form-focus
disabled.wdc-form-disabled
checked.wdc-form-checked

Examples

<div class="wdc-form-field-wrapper">
  <label class="wdc-form-label" for="textinput">Input Label</label>
  <div class="wdc-form-field">
    <input
      type="text"
      class="wdc-form-textinput wdc-form-focus"
      placeholder="Here's a placeholder"
      id="textinput"
    />
  </div>
</div>

<div class="wdc-form-field-wrapper">
  <div class="wdc-form-field">
    <input type="checkbox" class="wdc-form-checkbox wdc-form-disabled" />
    <label class="wdc-form-label">Checkbox</label>
  </div>
</div>

<div class="wdc-form-field-wrapper">
  <div class="wdc-form-field">
    <input type="radio" class="wdc-form-radio wdc-form-checked" name="radio" />
    <label class="wdc-form-label">Option</label>
  </div>
</div>

Errors and Alerts

Use .wdc-form-error or .wdc-form-alert to apply error or alert styling to form controls.

Error styling is available as both classes and mixins. Using the class is preferred.

Example

<div class="wdc-form">
  <div class="wdc-form-field-wrapper wdc-form-field-error">
    <label class="wdc-form-label">Input Label</label>
    <div class="wdc-form-field">
      <input type="text" class="wdc-form-textinput wdc-form-error" />
      <div class="wdc-form-error-message"><strong>Error:</strong> Error message</div>
    </div>
  </div>
</div>

Form Fields

Use .wdc-form-field-error for errors and .wdc-form-field-alert for alerts. Applying error and alert styling will display an icon on the left next to the input.

Messages
Add messages to errors and alerts by wrapping your message with .wdc-form-error-message or .wdc-form-alert-message. Using strong will bolden text with the respective error/alert color.

Place the message element after the form controls.

<div class="wdc-form-error-message"><strong>Error:</strong> Error message</div>

<div class="wdc-form-alert-message"><strong>Alert:</strong> Alert message</div>

Text Input

Use .wdc-form-error/.wdc-form-alert with .wdc-form-textinput.

<div class="wdc-form">
  <div class="wdc-form-field-wrapper wdc-form-field-error">
    <label class="wdc-form-label">Input Label</label>
    <div class="wdc-form-field">
      <input type="text" class="wdc-form-textinput wdc-form-error" />
      <div class="wdc-form-error-message"><strong>Error:</strong> Error message</div>
    </div>
  </div>
</div>

Text Area

Use .wdc-form-error/.wdc-form-alert with .wdc-form-textarea.

<div class="wdc-form">
  <div class="wdc-form-field-wrapper wdc-form-field-error">
    <label class="wdc-form-label">Input Label</label>
    <div class="wdc-form-field">
      <textarea class="wdc-form-textarea wdc-form-error"></textarea>
      <div class="wdc-form-error-message"><strong>Error:</strong> Error message</div>
    </div>
  </div>
</div>

Select

Use .wdc-form-error/.wdc-form-alert with .wdc-form-select.

<div class="wdc-form-field-wrapper wdc-form-field-alert">
  <label class="wdc-form-label">Select</label>
  <div class="wdc-form-field">
    <select class="wdc-form-select wdc-form-alert">
      <option disabled selected>Select an option</option>
      <option>Option 1</option>
      <option>Option 2</option>
      <option>Option 3</option>
    </select>
    <div class="wdc-form-alert-message"><strong>Alert:</strong> Alert message</div>
  </div>
</div>

Checkbox

Use .wdc-form-error/.wdc-form-alert with .wdc-form-checkbox.

If using a .wdc-form-field, apply .wdc-form-field-error-inline to ensure correct positioning for the error/alert icon.

<div class="wdc-form-field-wrapper wdc-form-field-error wdc-form-field-error-inline">
  <div class="wdc-form-field">
    <input type="checkbox" class="wdc-form-checkbox wdc-form-error" id="checkbox-error" />
    <label class="wdc-form-label">Checkbox Label</label>
    <div class="wdc-form-error-message"><strong>Error:</strong> Alert message</div>
  </div>
</div>

Checkbox and Radio Groups

Use .wdc-form-field-error/.wdc-form-field-alert with .wdc-form-group-fields to apply error/alert styling to entire group.

Checkbox Group

<div class="wdc-form-field-wrapper wdc-form-group">
  <label class="wdc-form-label">Checkbox Group</label>

  <div class="wdc-form-group-fields wdc-form-field-error">
    <div class="wdc-form-field">
      <input type="checkbox" class="wdc-form-checkbox" />
      <label class="wdc-form-label">Checkbox Label</label>
    </div>

    <div class="wdc-form-field">
      <input type="checkbox" class="wdc-form-checkbox" />
      <label class="wdc-form-label">Checkbox Label</label>
    </div>

    <div class="wdc-form-field">
      <input type="checkbox" class="wdc-form-checkbox" />
      <label class="wdc-form-label">Checkbox Label</label>
    </div>
  </div>
  <div class="wdc-form-alert-message"><strong>Error:</strong> Error message</div>
</div>

Radio Group

<div class="wdc-form-field-wrapper wdc-form-group">
  <label class="wdc-form-label">Radio Select Label</label>

  <div class="wdc-form-group-fields wdc-form-field-alert">
    <div class="wdc-form-field">
      <input type="radio" class="wdc-form-radio" name="radioAlert" checked />
      <label class="wdc-form-label">Option 1</label>
    </div>

    <div class="wdc-form-field">
      <input type="radio" class="wdc-form-radio" name="radioAlert" />
      <label class="wdc-form-label">Option 2</label>
    </div>

    <div class="wdc-form-field">
      <input type="radio" class="wdc-form-radio" name="radioAlert" />
      <label class="wdc-form-label">Option 3</label>
    </div>
  </div>

  <div class="wdc-form-alert-message"><strong>Alert:</strong> Alert message</div>
</div>
9.1.41

28 days ago

9.1.40

2 months ago

9.1.39

3 months ago

9.1.36

3 months ago

9.1.38

3 months ago

9.1.35

4 months ago

9.1.34

5 months ago

9.1.33

5 months ago

9.1.32

5 months ago

9.2.0-530-next.0

7 months ago

9.2.0-521-next.0

8 months ago

9.2.0-518-next.0

8 months ago

9.2.0-510-next.0

8 months ago

9.2.0-494-next.0

9 months ago

9.2.0-504-next.0

9 months ago

9.2.0-541-next.0

7 months ago

9.1.17

8 months ago

9.1.18

8 months ago

9.1.19

8 months ago

9.1.13

9 months ago

9.1.14

9 months ago

9.1.15

8 months ago

9.1.16

8 months ago

9.1.10

9 months ago

9.1.11

9 months ago

9.1.12

9 months ago

9.1.28

6 months ago

9.1.29

6 months ago

9.1.24

7 months ago

9.1.25

7 months ago

9.1.26

7 months ago

9.1.0-471-next.0

10 months ago

9.1.27

6 months ago

9.1.20

8 months ago

9.1.22

7 months ago

9.1.23

7 months ago

9.1.31

5 months ago

9.1.30

5 months ago

9.2.0-526-next.0

8 months ago

9.2.0-496-next.0

9 months ago

9.2.0-500-next.0

9 months ago

9.2.0-502-next.0

9 months ago

9.1.0-469-next.0

10 months ago

9.2.0-532-next.0

7 months ago

9.1.0-477-next.0

10 months ago

9.2.0-514-next.0

8 months ago

9.2.0-536-next.0

7 months ago

9.2.0-508-next.0

8 months ago

9.0.19

10 months ago

9.0.20

10 months ago

9.0.21

10 months ago

9.2.0-498-next.0

9 months ago

9.1.0-475-next.0

10 months ago

9.1.0-473-next.0

10 months ago

9.1.9

9 months ago

9.1.8

9 months ago

9.1.7

10 months ago

9.1.6

10 months ago

9.1.5

10 months ago

9.1.4

10 months ago

9.1.3

10 months ago

9.1.2

10 months ago

9.2.0-490-next.0

10 months ago

9.2.0-506-next.0

9 months ago

9.2.0-512-next.0

8 months ago

9.2.0-534-next.0

7 months ago

9.1.1

10 months ago

9.1.0

10 months ago

9.2.0-523-next.0

8 months ago

8.6.19

9 months ago

8.6.18

9 months ago

8.6.17

10 months ago

8.6.23

7 months ago

8.6.22

8 months ago

8.6.21

8 months ago

8.6.20

8 months ago

8.6.25

7 months ago

8.6.24

7 months ago

9.2.0-492-next.0

10 months ago

9.2.0-528-next.0

8 months ago

9.1.0-465-next.0

11 months ago

9.0.18

11 months ago

9.1.0-467-next.0

11 months ago

9.0.17

11 months ago

9.1.0-443-next.0

11 months ago

9.1.0-454-next.0

11 months ago

9.1.0-459-next.0

11 months ago

9.1.0-448-next.0

11 months ago

8.6.5

12 months ago

8.6.7

12 months ago

8.6.6

12 months ago

8.6.9

12 months ago

8.6.8

12 months ago

7.2.0-427-next.2

12 months ago

9.1.0-445-next.0

11 months ago

9.1.0-456-next.0

11 months ago

9.1.0-452-next.0

11 months ago

9.0.9

11 months ago

9.0.8

11 months ago

9.0.7

12 months ago

9.0.6

12 months ago

9.0.5

12 months ago

9.0.4

12 months ago

9.0.3

12 months ago

9.0.2

12 months ago

9.0.1

12 months ago

9.0.0

12 months ago

9.1.0-439-next.0

12 months ago

9.1.0-425-next.0

12 months ago

9.1.0-450-next.0

11 months ago

9.1.0-461-next.0

11 months ago

9.1.0-431-next.0

12 months ago

9.0.16

11 months ago

9.0.13

11 months ago

9.0.12

11 months ago

9.0.15

11 months ago

9.0.14

11 months ago

9.0.11

11 months ago

9.0.10

11 months ago

9.1.0-429-next.0

12 months ago

9.1.0-435-next.0

12 months ago

8.6.12

11 months ago

8.6.11

11 months ago

8.6.10

12 months ago

8.6.16

11 months ago

8.6.15

11 months ago

8.6.14

11 months ago

8.6.13

11 months ago

8.6.3

1 year ago

8.6.2

1 year ago

8.6.4

1 year ago

8.6.1

1 year ago

8.6.0

1 year ago

7.4.9

1 year ago

8.5.11

1 year ago

8.5.10

1 year ago

8.5.13

1 year ago

8.5.12

1 year ago

8.5.4

1 year ago

8.5.3

1 year ago

8.5.6

1 year ago

8.5.5

1 year ago

8.5.0

1 year ago

8.5.2

1 year ago

8.5.1

1 year ago

8.5.8

1 year ago

8.5.7

1 year ago

8.5.9

1 year ago

7.4.10

1 year ago

7.4.11

1 year ago

7.4.12

1 year ago

8.4.11

1 year ago

8.4.12

1 year ago

8.4.13

1 year ago

8.3.10

1 year ago

8.3.11

1 year ago

8.3.12

1 year ago

6.9.0-next.0

2 years ago

7.2.0-next.2

2 years ago

7.2.0-next.1

2 years ago

7.2.0-next.0

2 years ago

7.0.12

2 years ago

7.0.13

2 years ago

7.0.10

2 years ago

7.0.11

2 years ago

7.0.14

2 years ago

7.0.15

2 years ago

5.3.17

2 years ago

5.3.16

2 years ago

5.3.15

2 years ago

5.3.14

2 years ago

6.9.0-next.4

2 years ago

6.9.0-next.3

2 years ago

6.9.0-next.2

2 years ago

6.9.0-next.6

2 years ago

6.9.0-next.5

2 years ago

8.2.3

1 year ago

8.2.2

1 year ago

8.2.4

1 year ago

7.4.4

1 year ago

7.4.3

2 years ago

7.4.2

2 years ago

7.4.1

2 years ago

7.4.8

1 year ago

7.4.7

1 year ago

7.4.6

1 year ago

7.4.5

1 year ago

6.6.1

2 years ago

6.6.0

2 years ago

7.1.0-next.1

2 years ago

7.1.0-next.0

2 years ago

7.4.0

2 years ago

8.2.1

1 year ago

8.2.0

1 year ago

8.4.5

1 year ago

7.3.14

2 years ago

8.4.4

1 year ago

7.3.13

2 years ago

8.4.7

1 year ago

7.3.16

2 years ago

8.4.6

1 year ago

7.3.15

2 years ago

8.4.1

1 year ago

7.3.10

2 years ago

8.4.0

1 year ago

8.4.3

1 year ago

7.3.12

2 years ago

8.4.2

1 year ago

7.3.11

2 years ago

7.4.0-next.0

2 years ago

8.4.9

1 year ago

7.3.18

2 years ago

7.4.0-next.1

2 years ago

8.4.8

1 year ago

7.4.0-next.2

2 years ago

7.3.17

2 years ago

6.8.1

2 years ago

6.8.0

2 years ago

6.8.3

2 years ago

6.8.2

2 years ago

6.8.5

2 years ago

6.8.4

2 years ago

6.8.7

2 years ago

6.8.6

2 years ago

6.8.9

2 years ago

6.8.8

2 years ago

7.0.8

2 years ago

7.0.7

2 years ago

7.0.6

2 years ago

7.0.5

2 years ago

7.0.9

2 years ago

7.0.0

2 years ago

7.0.4

2 years ago

7.0.3

2 years ago

7.0.2

2 years ago

7.0.1

2 years ago

6.8.15

2 years ago

6.8.14

2 years ago

6.8.13

2 years ago

6.8.12

2 years ago

6.8.11

2 years ago

6.8.10

2 years ago

8.0.9

1 year ago

8.0.8

1 year ago

8.0.5

2 years ago

8.0.4

2 years ago

8.0.7

1 year ago

8.0.6

2 years ago

7.2.6

2 years ago

7.2.5

2 years ago

7.2.4

2 years ago

7.2.3

2 years ago

7.2.9

2 years ago

7.2.8

2 years ago

7.2.7

2 years ago

7.2.2

2 years ago

7.2.1

2 years ago

7.2.0

2 years ago

8.0.1

2 years ago

8.0.0

2 years ago

8.0.3

2 years ago

8.0.2

2 years ago

7.3.0-next.0

2 years ago

7.3.0-next.1

2 years ago

7.3.1

2 years ago

7.3.0

2 years ago

8.1.0

1 year ago

8.1.2

1 year ago

8.1.1

1 year ago

8.3.6

1 year ago

8.3.5

1 year ago

8.3.8

1 year ago

8.3.7

1 year ago

8.3.2

1 year ago

8.3.1

1 year ago

8.3.4

1 year ago

8.3.3

1 year ago

8.3.9

1 year ago

6.7.0

2 years ago

6.7.2

2 years ago

6.7.1

2 years ago

8.3.0

1 year ago

7.2.11

2 years ago

7.2.10

2 years ago

7.1.5

2 years ago

7.1.4

2 years ago

7.5.0-228-next.0

2 years ago

7.1.3

2 years ago

7.1.2

2 years ago

7.1.1

2 years ago

7.1.0

2 years ago

5.4.0-next.1

2 years ago

7.5.0-220-next.0

2 years ago

8.1.3

1 year ago

8.4.10

1 year ago

7.3.5

2 years ago

7.3.4

2 years ago

7.3.3

2 years ago

7.3.2

2 years ago

7.3.9

2 years ago

7.3.8

2 years ago

7.3.7

2 years ago

7.3.6

2 years ago

6.3.0-next.0

2 years ago

6.3.0-next.1

2 years ago

6.0.7

2 years ago

6.0.6

2 years ago

5.2.9

3 years ago

6.0.1

2 years ago

6.0.0

2 years ago

6.0.3

2 years ago

6.0.2

2 years ago

6.0.5

2 years ago

6.0.4

2 years ago

6.1.5

2 years ago

5.3.9

2 years ago

5.3.8

2 years ago

5.3.7

2 years ago

5.3.6

2 years ago

5.3.5

2 years ago

5.3.4

2 years ago

5.3.13

2 years ago

5.3.12

2 years ago

5.3.11

2 years ago

5.3.10

2 years ago

6.5.0-next.0

2 years ago

6.3.10

2 years ago

6.3.11

2 years ago

6.4.0-next.2

2 years ago

6.4.0-next.0

2 years ago

6.4.0-next.1

2 years ago

5.2.12

2 years ago

5.2.11

2 years ago

5.2.10

3 years ago

6.5.0

2 years ago

5.3.0-next.18

2 years ago

5.3.0-next.32

2 years ago

5.3.0-next.24

2 years ago

5.3.3

2 years ago

5.3.2

2 years ago

5.3.1

2 years ago

5.3.0

2 years ago

6.1.0

2 years ago

6.1.2

2 years ago

6.1.1

2 years ago

6.1.4

2 years ago

6.1.3

2 years ago

6.2.1

2 years ago

6.2.0

2 years ago

6.2.3

2 years ago

6.2.2

2 years ago

6.3.4

2 years ago

6.3.3

2 years ago

6.3.6

2 years ago

6.3.5

2 years ago

6.3.8

2 years ago

6.3.7

2 years ago

6.3.9

2 years ago

6.3.0

2 years ago

6.3.2

2 years ago

6.3.1

2 years ago

6.4.3

2 years ago

6.4.2

2 years ago

6.4.5

2 years ago

6.4.4

2 years ago

6.4.6

2 years ago

6.4.1

2 years ago

6.4.0

2 years ago

6.5.1

2 years ago

5.2.8

3 years ago

5.2.7

3 years ago

5.3.0-next.10

3 years ago

5.3.0-next.11

3 years ago

5.3.0-next.9

3 years ago

5.3.0-next.6

3 years ago

5.2.6

3 years ago

5.2.5

3 years ago

5.2.4

3 years ago

5.3.0-next.3

3 years ago

5.3.0-next.2

3 years ago

5.2.3

3 years ago

5.2.2

3 years ago

5.2.1

3 years ago

5.2.0

3 years ago

5.2.1-next.3

3 years ago

5.2.1-next.4

3 years ago

5.1.1-next.11

3 years ago

5.1.1-next.10

3 years ago

5.1.1-next.13

3 years ago

5.1.1-next.12

3 years ago

5.2.1-next.2

3 years ago

5.2.1-next.1

3 years ago

5.2.1-next.0

3 years ago

5.1.1-next.9

3 years ago

5.1.1-next.8

3 years ago

5.1.1-next.7

3 years ago

5.1.1-next.6

3 years ago

5.1.1-next.5

3 years ago

5.1.1-next.4

3 years ago

5.1.1-next.3

3 years ago

5.1.1-next.2

3 years ago

5.0.4-next.34

3 years ago

5.1.0

3 years ago

5.1.1-next.0

3 years ago

5.0.4-next.24

3 years ago

5.0.4-next.23

3 years ago

5.0.4-next.22

3 years ago

5.0.4-next.21

3 years ago

4.8.3

3 years ago

5.0.4-next.28

3 years ago

5.0.4-next.27

3 years ago

5.0.4-next.29

3 years ago

5.0.4-next.31

3 years ago

5.0.4-next.30

3 years ago

5.0.4-next.32

3 years ago

5.0.4-next.20

3 years ago

5.0.4-next.19

3 years ago

5.0.4-next.13

3 years ago

5.0.4-next.12

3 years ago

5.0.4-next.15

3 years ago

5.0.4-next.14

3 years ago

5.0.4-next.17

3 years ago

5.0.4-next.16

3 years ago

5.0.4-next.18

3 years ago

5.0.4-next.8

3 years ago

5.0.4

3 years ago

4.8.2

3 years ago

5.0.4-next.7

3 years ago

5.0.4-next.6

3 years ago

5.0.4-next.5

3 years ago

5.0.4-next.1

3 years ago

5.0.3

3 years ago

4.8.1

3 years ago

5.0.3-next.4

3 years ago

5.0.3-next.5

3 years ago

5.0.3-next.3

3 years ago

5.0.3-next.2

3 years ago

5.0.3-next.1

3 years ago

5.0.3-next.0

3 years ago

5.0.2

3 years ago

5.0.1

3 years ago

4.8.0

3 years ago

5.0.2-next.2

3 years ago

5.0.2-next.1

3 years ago

5.0.2-next.0

3 years ago

5.0.0-rc.0

3 years ago

5.0.0

3 years ago

4.7.1-next.18

3 years ago

4.7.1-next.14

3 years ago

4.7.1-next.15

3 years ago

4.7.1-next.16

3 years ago

5.0.1-next.1

3 years ago

5.0.1-next.2

3 years ago

5.0.1-next.3

3 years ago

5.0.0-beta.2

3 years ago

4.7.1-next.0

3 years ago

4.7.1-next.1

3 years ago

4.7.1-next.2

3 years ago

4.7.1-next.3

3 years ago

4.7.1-next.4

3 years ago

4.7.1-next.5

3 years ago

4.7.1-next.6

3 years ago

4.7.1-next.7

3 years ago

4.7.1-next.8

3 years ago

4.7.1-next.9

3 years ago

4.7.1-next.10

3 years ago

4.7.1-next.11

3 years ago

4.7.1-next.12

3 years ago

5.0.0-beta.1

3 years ago

4.7.0

3 years ago

4.6.1-next.3

3 years ago

4.6.1-next.2

3 years ago

4.6.1-next.1

3 years ago

4.6.0

3 years ago

4.5.2-next.3

3 years ago

4.5.2-next.2

3 years ago

4.5.2-next.1

3 years ago

4.5.2-next.0

3 years ago

4.5.1

3 years ago

4.5.1-next.3

3 years ago

4.5.1-next.4

3 years ago

4.5.1-next.2

3 years ago

4.5.1-next.1

3 years ago

4.5.1-next.0

3 years ago

4.5.0

3 years ago

4.4.3-next.15

3 years ago

4.4.3-next.17

3 years ago

4.4.3-next.16

3 years ago

4.4.3-next.18

3 years ago

4.4.3-next.14

3 years ago

4.4.3-next.13

3 years ago

4.4.3-next.12

3 years ago

4.4.3-next.11

3 years ago

5.0.0-beta.0

3 years ago

4.4.3-next.10

3 years ago

4.4.3-next.9

3 years ago

4.4.3-next.8

3 years ago

4.4.3-next.7

3 years ago

4.4.3-next.6

3 years ago

4.4.3-next.5

3 years ago

4.4.3-next.4

3 years ago

4.4.3-next.3

3 years ago

4.4.3-next.0

3 years ago

4.4.3-next.1

3 years ago

4.4.2

3 years ago

4.4.2-next.4

3 years ago

4.4.2-next.3

3 years ago

4.4.2-next.2

3 years ago

4.4.1-next.4

3 years ago

4.4.1

3 years ago

4.4.1-next.3

3 years ago

4.4.1-next.2

3 years ago

4.4.1-next.0

3 years ago

4.4.1-next.1

3 years ago

4.3.2-next.6

3 years ago

4.4.0

3 years ago

4.3.2-next.4

3 years ago

4.3.2-next.3

3 years ago

4.3.2-next.5

3 years ago

4.3.2-next.2

3 years ago

4.3.2-next.1

4 years ago

4.3.2-next.0

4 years ago

4.3.1

4 years ago

4.3.1-next.4

4 years ago

4.3.1-next.2

4 years ago

4.3.1-next.3

4 years ago

4.3.1-next.1

4 years ago

4.3.1-next.0

4 years ago

4.1.3-next.28

4 years ago

4.3.0

4 years ago

4.1.3-next.27

4 years ago

4.1.3-next.26

4 years ago

4.1.3-next.25

4 years ago

4.1.3-next.24

4 years ago

4.1.3-next.23

4 years ago

4.1.3-next.22

4 years ago

4.1.3-next.20

4 years ago

4.1.3-next.21

4 years ago

4.1.3-next.17

4 years ago

4.1.3-next.18

4 years ago

4.1.3-next.16

4 years ago

4.2.0

4 years ago

4.1.3-next.15

4 years ago

4.1.3-next.13

4 years ago

4.1.3-next.12

4 years ago

4.1.3-next.11

4 years ago

4.1.3-next.10

4 years ago

4.1.3-next.8

4 years ago

4.1.3-next.9

4 years ago

4.1.3-next.6

4 years ago

4.1.3-next.7

4 years ago

4.1.3-next.4

4 years ago

4.1.3-next.3

4 years ago

4.1.3-next.0

4 years ago

4.1.3-next.1

4 years ago

4.1.2

4 years ago

4.0.3

4 years ago

4.1.2-next.0

4 years ago

4.0.2

4 years ago

4.1.1

4 years ago

4.1.1-next.5

4 years ago

4.1.1-next.4

4 years ago

4.1.1-next.3

4 years ago

4.1.1-next.0

4 years ago

4.1.1-next.2

4 years ago

4.0.1-next.19

4 years ago

4.1.0

4 years ago

4.0.1-next.18

4 years ago

4.0.1-next.17

4 years ago

4.0.1-next.16

4 years ago

4.0.1-next.15

4 years ago

4.0.1-next.14

4 years ago

4.0.1

4 years ago

4.0.1-next.12

4 years ago

4.0.1-next.11

4 years ago

4.0.1-next.10

4 years ago

4.0.1-next.9

4 years ago

4.0.1-next.7

4 years ago

4.0.1-next.8

4 years ago

4.0.1-next.6

4 years ago

4.0.1-next.5

4 years ago

4.0.1-next.4

4 years ago

4.0.1-next.1

4 years ago

4.0.1-next.2

4 years ago

4.0.1-next.0

4 years ago

4.0.0

4 years ago

3.8.1-next.16

4 years ago

3.8.1-next.17

4 years ago

4.0.0-beta.5

4 years ago

3.8.1-next.15

4 years ago

3.8.1-next.14

4 years ago

3.8.1-next.13

4 years ago

3.8.1-next.12

4 years ago

3.8.1-next.11

4 years ago

3.8.1-next.10

4 years ago

3.8.1-next.9

4 years ago

3.8.1-next.8

4 years ago

3.8.1-next.7

4 years ago

3.8.1-next.6

4 years ago

3.8.1-next.5

4 years ago

3.8.1-next.4

4 years ago

3.8.1-next.3

4 years ago

3.8.1-next.2

4 years ago

3.8.1-next.0

4 years ago

3.8.1-next.1

4 years ago

3.8.0

4 years ago

3.7.1-next.7

4 years ago

3.7.1-next.8

4 years ago

3.7.1-next.6

4 years ago

3.7.1-next.3

4 years ago

3.7.1-next.4

4 years ago

3.7.1-next.5

4 years ago

4.0.0-beta.4

4 years ago

3.7.1-next.2

4 years ago

3.7.1-next.0

4 years ago

4.0.0-beta.3

4 years ago

3.6.1-next.14

4 years ago

3.7.0

4 years ago

3.6.1-next.13

4 years ago

3.6.1-next.12

4 years ago

3.6.1-next.11

4 years ago

3.6.1-next.10

4 years ago

3.6.1-next.9

4 years ago

3.6.1-next.8

4 years ago

3.6.1-next.7

4 years ago

3.6.1-next.6

4 years ago

3.6.1-next.5

4 years ago

3.6.1-next.4

4 years ago

3.6.1-next.3

4 years ago

3.6.1-next.2

4 years ago

3.6.1-next.1

4 years ago

3.6.1-next.0

4 years ago

4.0.0-beta.1

4 years ago

3.5.1-next.10

4 years ago

3.6.0

4 years ago

3.5.1-next.9

4 years ago

3.5.1-next.8

4 years ago

4.0.0-beta.0

4 years ago

3.5.1-next.7

4 years ago

3.5.1-next.6

4 years ago

3.5.1-next.5

4 years ago

3.5.1-next.4

4 years ago

3.5.1-next.3

4 years ago

3.5.1-next.1

4 years ago

3.5.1-next.2

4 years ago

3.5.1-next.0

4 years ago

3.5.0

4 years ago

3.4.1-next.17

4 years ago

3.4.1-next.16

4 years ago

3.4.1-next.15

4 years ago

3.4.1-next.14

4 years ago

3.4.1-next.13

4 years ago

3.4.1-next.12

4 years ago

3.4.1-next.11

4 years ago

3.4.1-next.10

4 years ago

3.4.1-next.9

4 years ago

3.4.1-next.8

4 years ago

3.4.1-next.6

4 years ago

3.4.1-next.7

4 years ago

3.4.1-next.4

4 years ago

3.4.1-next.5

4 years ago

3.4.1-next.3

4 years ago

3.4.1-next.2

4 years ago

3.4.1-next.0

4 years ago

3.4.1-next.1

4 years ago

3.3.3-next.31

4 years ago

3.4.0

4 years ago

3.3.3-next.30

4 years ago

3.3.3-next.29

4 years ago

3.3.3-next.28

4 years ago

3.3.3-next.27

4 years ago

3.3.3-next.26

4 years ago

3.3.3-next.21

4 years ago

3.3.3-next.25

4 years ago

3.3.3-next.19

4 years ago

3.3.3-next.18

4 years ago

3.3.3-next.17

4 years ago

3.3.3-next.15

4 years ago

3.3.3-next.14

4 years ago

3.3.3-next.16

4 years ago

3.3.0

4 years ago

3.2.0

4 years ago

3.1.1

4 years ago

3.1.0

4 years ago

3.0.0

5 years ago

3.0.0-beta.0

5 years ago

3.0.0-alpha.6

5 years ago

3.0.0-alpha.5

5 years ago

3.0.0-alpha.4

5 years ago

3.0.0-alpha.3

5 years ago

3.0.0-alpha.2

5 years ago

3.0.0-alpha.1

5 years ago