9.1.26 • Published 1 year ago

@workday/canvas-kit-css-button v9.1.26

Weekly downloads
968
License
Apache-2.0
Repository
-
Last release
1 year ago

Canvas Kit Button

Button highlight actions available on a screen with a click or tap.

Installation

yarn add @workday/canvas-kit-css

or

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

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

@import '~@workday/canvas-kit-css-button/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

Button styles can be applied by using .wdc-btn. Most modifiers can be used by combining .wdc-btn with the modifier class (e.g. .wdc-btn-primary). Some modifiers can be combined (e.g. .wdc-btn-primary.wdc-btn-medium).

<button class="wdc-btn">Default</button>
<button class="wdc-btn wdc-btn-primary">Primary</button>
<button class="wdc-btn wdc-btn-medium">Default</button>
<button class="wdc-btn wdc-btn-small">Small Button</button>

Button Order

The primary button should always be displayed first from left to right. The only exception is when buttons are used in a sequence of screens (e.g. Task Orchestration) and on mobile screen sizes.

Button Options

  • Sizes
    • Large (Default)
    • Medium
    • Small
  • Colors
    • Default
    • Primary
    • Delete
  • States
    • Active
    • Hover
    • Focus
    • Disabled
  • Types
    • Icon Button
    • Icon Button (Rounded)
    • Dropdown Button
    • Split Button

Sizes

Large, medium, and small button sizes are available.

Default

The default button size when using .wdc-btn is large.

Medium

Medium buttons are used in grids only.

Use by adding .wdc-btn-medium.

<button class="wdc-btn wdc-btn-medium">Medium</button>

Small

Small buttons are used in page headers only.

Use by adding .wdc-btn-small.

<button class="wdc-btn wdc-btn-small">Small</button>

Colors

Colors can be applied to call attention to actions.

Default

Most common button with default background color. Default buttons are available in all sizes.

<button class="wdc-btn">Default</button>
<button class="wdc-btn wdc-btn-medium">Default</button>
<button class="wdc-btn wdc-btn-small">Default</button>

Primary

Primary buttons are orange and draw attention to the primary action on a screen. They should only appear once. Not all screens need require a primary button. The primary button should be always be the leftmost button in a group of buttons.

Use by adding .wdc-btn-primary. Primary button styling can be used with large and medium button sizes.

<button class="wdc-btn wdc-btn-primary">Primary</button>
<button class="wdc-btn wdc-btn-primary wdc-btn-medium">Primary</button>

Delete

Use by adding .wdc-btn-delete. Delete button styling can be used with large and medium button sizes.

<button class="wdc-btn wdc-btn-delete">Delete</button>
<button class="wdc-btn wdc-btn-delete wdc-btn-medium">Delete</button>

States

All buttons have an active, hover, focus, and disabled state. State styling may be explicitly applied to form controls using the classes below.

StateClass
active.wdc-btn-active
hover.wdc-btn-hover
focus.wdc-btn-focus
disabled.wdc-btn-disabled

Examples

<button class="wdc-btn wdc-btn-active">Active Button</button>
<button class="wdc-btn wdc-btn-hover">Hovered Button</button>
<button class="wdc-btn wdc-btn-focus">Focused Button</button>
<button class="wdc-btn" disabled>Disabled</button>
<button class="wdc-btn wdc-btn-disabled">Disabled Button</button>

Variants

Icon Button

Use when space is limited and the action is clearly communicated through an icon. For instance, an edit button.

Use by adding .wdc-btn-icon. A Workday icon should be used as the <button>'s content.

<button class="wdc-btn wdc-btn-icon">
  <svg ...>
</button>

Icon Button (Rounded)

This button is similar to the default button but has a fixed width. Use this button when placing an icon button inline with a group of buttons. Often used to style the Overflow Button used in button rows with more than four items.

Use by adding .wdc-btn-icon-rounded. A Workday icon should be used as the <button>'s content.

<button class="wdc-btn wdc-btn-primary">Primary</button>
<button class="wdc-btn">Button</button>
<button class="wdc-btn">Button</button>
<button class="wdc-btn wdc-btn-icon-rounded">
  <svg ...>
</button>

Dropdown Button

Use this button to display a menu of related actions.

Use by adding .wdc-btn-dropdown.

<button class="wdc-btn wdc-btn-dropdown">
  Dropdown
</button>

Split Button

Unlike a dropdown button, Split Buttons allow the user to take an action in one click, or view more with the menu. If there are multiple primary actions, a split button can be used with primary styling.

Use by wrapping two buttons using a <div> with .wdc-btn-split. The first button should have .wdc-btn-split-text and will contain the button text. The second button should have .wdc-btn-split-icon and be a closed element.

Apply primary styling to the button by adding .wdc-btn-primary to the buttons within the .wdc-btn-split.

<div class="wdc-btn-split">
  <button class="wdc-btn wdc-btn-split-text">
    Split Button
  </button>
  <button class="wdc-btn wdc-btn-split-icon" />
</div>

<div class="wdc-btn-split">
  <button class="wdc-btn wdc-btn-primary wdc-btn-split-text">
    Split Button
  </button>
  <button class="wdc-btn wdc-btn-primary wdc-btn-split-icon" />
</div>

Accessibility

See canvas-kit-core for accessibility guidelines.

9.2.0-530-next.0

2 years ago

9.2.0-521-next.0

2 years ago

9.2.0-518-next.0

2 years ago

9.2.0-510-next.0

2 years ago

9.2.0-494-next.0

2 years ago

9.2.0-504-next.0

2 years ago

9.2.0-541-next.0

2 years ago

9.1.17

2 years ago

9.1.18

2 years ago

9.1.19

2 years ago

9.1.13

2 years ago

9.1.14

2 years ago

9.1.15

2 years ago

9.1.16

2 years ago

9.1.10

2 years ago

9.1.11

2 years ago

9.1.12

2 years ago

9.1.28

2 years ago

9.1.29

2 years ago

9.1.24

2 years ago

9.1.25

2 years ago

9.1.26

2 years ago

9.1.0-471-next.0

2 years ago

9.1.27

2 years ago

9.1.20

2 years ago

9.1.22

2 years ago

9.1.23

2 years ago

9.1.39

1 year ago

9.1.35

1 year ago

9.1.36

1 year ago

9.1.37

1 year ago

9.1.38

1 year ago

9.1.31

2 years ago

9.1.32

2 years ago

9.1.33

2 years ago

9.1.34

1 year ago

9.1.30

2 years ago

9.2.0-526-next.0

2 years ago

9.1.42

1 year ago

9.1.40

1 year ago

9.1.41

1 year ago

9.2.0-496-next.0

2 years ago

9.2.0-500-next.0

2 years ago

9.2.0-502-next.0

2 years ago

9.1.0-469-next.0

2 years ago

9.2.0-532-next.0

2 years ago

9.1.0-477-next.0

2 years ago

9.2.0-514-next.0

2 years ago

9.2.0-536-next.0

2 years ago

9.2.0-508-next.0

2 years ago

9.0.19

2 years ago

9.0.20

2 years ago

9.0.21

2 years ago

9.2.0-498-next.0

2 years ago

9.1.0-475-next.0

2 years ago

9.1.0-473-next.0

2 years ago

9.1.9

2 years ago

9.1.8

2 years ago

9.1.7

2 years ago

9.1.6

2 years ago

9.1.5

2 years ago

9.1.4

2 years ago

9.1.3

2 years ago

9.1.2

2 years ago

9.2.0-490-next.0

2 years ago

9.2.0-506-next.0

2 years ago

9.2.0-512-next.0

2 years ago

9.2.0-534-next.0

2 years ago

9.1.1

2 years ago

9.1.0

2 years ago

9.2.0-523-next.0

2 years ago

8.6.19

2 years ago

8.6.18

2 years ago

8.6.17

2 years ago

8.6.23

2 years ago

8.6.22

2 years ago

8.6.21

2 years ago

8.6.20

2 years ago

8.6.25

2 years ago

8.6.24

2 years ago

9.2.0-492-next.0

2 years ago

9.2.0-528-next.0

2 years ago

9.1.0-465-next.0

2 years ago

9.0.18

2 years ago

9.1.0-467-next.0

2 years ago

9.0.17

2 years ago

9.1.0-443-next.0

2 years ago

9.1.0-454-next.0

2 years ago

9.1.0-459-next.0

2 years ago

9.1.0-448-next.0

2 years ago

8.6.5

2 years ago

8.6.7

2 years ago

8.6.6

2 years ago

8.6.9

2 years ago

8.6.8

2 years ago

7.2.0-427-next.2

2 years ago

9.1.0-445-next.0

2 years ago

9.1.0-456-next.0

2 years ago

9.1.0-452-next.0

2 years ago

9.0.9

2 years ago

9.0.8

2 years ago

9.0.7

2 years ago

9.0.6

2 years ago

9.0.5

2 years ago

9.0.4

2 years ago

9.0.3

2 years ago

9.0.2

2 years ago

9.0.1

2 years ago

9.0.0

2 years ago

9.1.0-439-next.0

2 years ago

9.1.0-425-next.0

2 years ago

9.1.0-450-next.0

2 years ago

9.1.0-461-next.0

2 years ago

9.1.0-431-next.0

2 years ago

9.0.16

2 years ago

9.0.13

2 years ago

9.0.12

2 years ago

9.0.15

2 years ago

9.0.14

2 years ago

9.0.11

2 years ago

9.0.10

2 years ago

9.1.0-429-next.0

2 years ago

9.1.0-435-next.0

2 years ago

8.6.12

2 years ago

8.6.11

2 years ago

8.6.10

2 years ago

8.6.16

2 years ago

8.6.15

2 years ago

8.6.14

2 years ago

8.6.13

2 years ago

8.7.0-403-next.0

2 years ago

8.5.0-337-next.4

2 years ago

8.6.3

2 years ago

8.6.2

2 years ago

8.6.4

2 years ago

8.6.1

2 years ago

8.6.0

2 years ago

8.5.0-343-next.3

2 years ago

8.6.0-388-next.2

2 years ago

7.4.9

2 years ago

8.6.0-360-next.0

2 years ago

8.5.11

2 years ago

8.5.10

2 years ago

8.5.13

2 years ago

8.5.12

2 years ago

8.5.0-342-next.2

2 years ago

8.5.0-340-next.1

2 years ago

8.7.0-402-next.0

2 years ago

8.6.0-383-next.0

2 years ago

8.5.4

2 years ago

8.5.3

2 years ago

8.5.6

2 years ago

8.5.5

2 years ago

8.5.0

2 years ago

8.5.2

2 years ago

8.5.1

2 years ago

8.5.8

2 years ago

8.5.7

2 years ago

8.5.9

2 years ago

8.5.0-339-next.0

2 years ago

7.4.10

2 years ago

7.4.11

2 years ago

7.4.12

2 years ago

8.5.0-345-next.1

2 years ago

8.4.11

2 years ago

8.4.12

2 years ago

8.4.13

2 years ago

8.5.0-333-next.3

2 years ago

8.3.10

2 years ago

8.3.11

2 years ago

8.3.12

2 years ago

6.9.0-next.0

3 years ago

7.2.0-next.2

3 years ago

7.2.0-next.1

3 years ago

7.2.0-next.0

3 years ago

7.0.12

3 years ago

7.0.13

3 years ago

7.0.10

3 years ago

7.0.11

3 years ago

7.0.14

3 years ago

7.0.15

3 years ago

8.4.0-303-next.2

2 years ago

8.5.0-321-next.0

2 years ago

8.5.0-329-next.1

2 years ago

8.4.0-285-next.3

2 years ago

5.3.17

3 years ago

5.3.16

3 years ago

5.3.15

3 years ago

5.3.14

3 years ago

8.5.0-313-next.0

2 years ago

6.9.0-next.4

3 years ago

6.9.0-next.3

3 years ago

6.9.0-next.2

3 years ago

6.9.0-next.6

3 years ago

6.9.0-next.5

3 years ago

8.4.0-296-next.0

2 years ago

8.2.3

3 years ago

8.2.2

3 years ago

8.2.4

3 years ago

7.4.4

3 years ago

7.4.3

3 years ago

7.4.2

3 years ago

7.4.1

3 years ago

7.4.8

2 years ago

7.4.7

2 years ago

7.4.6

3 years ago

7.4.5

3 years ago

6.6.1

3 years ago

6.6.0

3 years ago

7.1.0-next.1

3 years ago

7.1.0-next.0

3 years ago

7.4.0

3 years ago

8.2.1

3 years ago

8.2.0

3 years ago

8.4.5

2 years ago

7.3.14

3 years ago

8.4.4

2 years ago

7.3.13

3 years ago

8.4.7

2 years ago

7.3.16

3 years ago

8.4.6

2 years ago

7.3.15

3 years ago

8.4.1

2 years ago

7.3.10

3 years ago

8.4.0

2 years ago

8.4.3

2 years ago

7.3.12

3 years ago

8.4.2

2 years ago

7.3.11

3 years ago

7.4.0-next.0

3 years ago

8.4.9

2 years ago

7.3.18

3 years ago

7.4.0-next.1

3 years ago

8.4.8

2 years ago

7.4.0-next.2

3 years ago

7.3.17

3 years ago

6.8.1

3 years ago

6.8.0

3 years ago

6.8.3

3 years ago

6.8.2

3 years ago

6.8.5

3 years ago

6.8.4

3 years ago

6.8.7

3 years ago

6.8.6

3 years ago

6.8.9

3 years ago

6.8.8

3 years ago

8.4.0-299-next.0

2 years ago

7.0.8

3 years ago

7.0.7

3 years ago

7.0.6

3 years ago

7.0.5

3 years ago

7.0.9

3 years ago

7.0.0

3 years ago

7.0.4

3 years ago

7.0.3

3 years ago

7.0.2

3 years ago

7.0.1

3 years ago

6.8.15

3 years ago

6.8.14

3 years ago

6.8.13

3 years ago

6.8.12

3 years ago

6.8.11

3 years ago

6.8.10

3 years ago

8.0.9

3 years ago

8.0.8

3 years ago

8.0.5

3 years ago

8.0.4

3 years ago

8.0.7

3 years ago

8.0.6

3 years ago

7.2.6

3 years ago

7.2.5

3 years ago

7.2.4

3 years ago

7.2.3

3 years ago

7.2.9

3 years ago

7.2.8

3 years ago

7.2.7

3 years ago

8.5.0-327-next.0

2 years ago

8.4.0-283-next.1

3 years ago

7.2.2

3 years ago

7.2.1

3 years ago

7.2.0

3 years ago

8.0.1

3 years ago

8.0.0

3 years ago

8.0.3

3 years ago

8.4.0-294-next.1

2 years ago

8.0.2

3 years ago

8.5.0-325-next.2

2 years ago

8.4.0-281-next.0

3 years ago

8.5.0-331-next.2

2 years ago

7.3.0-next.0

3 years ago

7.3.0-next.1

3 years ago

8.4.0-292-next.0

2 years ago

7.3.1

3 years ago

7.3.0

3 years ago

8.1.0

3 years ago

8.1.2

3 years ago

8.1.1

3 years ago

8.3.6

2 years ago

8.3.5

2 years ago

8.3.8

2 years ago

8.3.7

2 years ago

8.3.2

2 years ago

8.3.1

2 years ago

8.3.4

2 years ago

8.3.3

2 years ago

8.3.9

2 years ago

6.7.0

3 years ago

6.7.2

3 years ago

6.7.1

3 years ago

8.3.0

3 years ago

8.4.0-295-next.0

2 years ago

7.2.11

3 years ago

7.2.10

3 years ago

7.1.5

3 years ago

7.1.4

3 years ago

7.5.0-228-next.0

3 years ago

8.5.0-323-next.1

2 years ago

7.1.3

3 years ago

7.1.2

3 years ago

7.1.1

3 years ago

7.1.0

3 years ago

5.4.0-next.1

3 years ago

7.5.0-220-next.0

3 years ago

8.1.3

3 years ago

8.4.10

2 years ago

8.4.0-304-next.0

2 years ago

7.3.5

3 years ago

7.3.4

3 years ago

7.3.3

3 years ago

7.3.2

3 years ago

7.3.9

3 years ago

7.3.8

3 years ago

7.3.7

3 years ago

7.3.6

3 years ago

6.3.0-next.0

3 years ago

6.3.0-next.1

3 years ago

6.0.7

4 years ago

6.0.6

4 years ago

5.2.9

4 years ago

6.0.1

4 years ago

6.0.0

4 years ago

6.0.3

4 years ago

6.0.2

4 years ago

6.0.5

4 years ago

6.0.4

4 years ago

6.1.5

3 years ago

5.3.9

3 years ago

5.3.8

3 years ago

5.3.7

3 years ago

5.3.6

3 years ago

5.3.5

4 years ago

5.3.4

4 years ago

5.3.13

3 years ago

5.3.12

3 years ago

5.3.11

3 years ago

5.3.10

3 years ago

6.5.0-next.0

3 years ago

6.3.10

3 years ago

6.3.11

3 years ago

6.4.0-next.2

3 years ago

6.4.0-next.0

3 years ago

6.4.0-next.1

3 years ago

5.2.12

4 years ago

5.2.11

4 years ago

5.2.10

4 years ago

6.5.0

3 years ago

5.3.0-next.18

4 years ago

5.3.0-next.32

3 years ago

5.3.0-next.24

4 years ago

5.3.3

4 years ago

5.3.2

4 years ago

5.3.1

4 years ago

5.3.0

4 years ago

6.1.0

4 years ago

6.1.2

3 years ago

6.1.1

4 years ago

6.1.4

3 years ago

6.1.3

3 years ago

6.2.1

3 years ago

6.2.0

3 years ago

6.2.3

3 years ago

6.2.2

3 years ago

6.3.4

3 years ago

6.3.3

3 years ago

6.3.6

3 years ago

6.3.5

3 years ago

6.3.8

3 years ago

6.3.7

3 years ago

6.3.9

3 years ago

6.3.0

3 years ago

6.3.2

3 years ago

6.3.1

3 years ago

6.4.3

3 years ago

6.4.2

3 years ago

6.4.5

3 years ago

6.4.4

3 years ago

6.4.6

3 years ago

6.4.1

3 years ago

6.4.0

3 years ago

6.5.1

3 years ago

5.2.8

4 years ago

5.2.7

4 years ago

5.3.0-next.10

4 years ago

5.3.0-next.11

4 years ago

5.3.0-next.9

4 years ago

5.3.0-next.6

4 years ago

5.2.6

4 years ago

5.2.5

4 years ago

5.2.4

4 years ago

5.3.0-next.3

4 years ago

5.3.0-next.2

4 years ago

5.2.3

4 years ago

5.2.2

4 years ago

5.2.1

4 years ago

5.2.0

4 years ago

5.2.1-next.3

4 years ago

5.2.1-next.4

4 years ago

5.1.1-next.11

4 years ago

5.1.1-next.10

4 years ago

5.1.1-next.13

4 years ago

5.1.1-next.12

4 years ago

5.2.1-next.2

4 years ago

5.2.1-next.1

4 years ago

5.2.1-next.0

4 years ago

5.1.1-next.9

4 years ago

5.1.1-next.8

4 years ago

5.1.1-next.7

4 years ago

5.1.1-next.6

4 years ago

5.1.1-next.5

4 years ago

5.1.1-next.4

4 years ago

5.1.1-next.3

4 years ago

5.1.1-next.2

4 years ago

5.0.4-next.34

4 years ago

5.1.0

4 years ago

5.1.1-next.0

4 years ago

5.0.4-next.24

4 years ago

5.0.4-next.23

4 years ago

5.0.4-next.22

4 years ago

5.0.4-next.21

4 years ago

4.8.3

4 years ago

5.0.4-next.28

4 years ago

5.0.4-next.27

4 years ago

5.0.4-next.29

4 years ago

5.0.4-next.31

4 years ago

5.0.4-next.30

4 years ago

5.0.4-next.32

4 years ago

5.0.4-next.20

4 years ago

5.0.4-next.19

4 years ago

5.0.4-next.13

4 years ago

5.0.4-next.12

4 years ago

5.0.4-next.15

4 years ago

5.0.4-next.14

4 years ago

5.0.4-next.17

4 years ago

5.0.4-next.16

4 years ago

5.0.4-next.18

4 years ago

5.0.4-next.8

4 years ago

5.0.4

4 years ago

4.8.2

4 years ago

5.0.4-next.7

4 years ago

5.0.4-next.6

4 years ago

5.0.4-next.5

4 years ago

5.0.4-next.1

4 years ago

5.0.3

4 years ago

4.8.1

4 years ago

5.0.3-next.4

4 years ago

5.0.3-next.5

4 years ago

5.0.3-next.3

4 years ago

5.0.3-next.2

4 years ago

5.0.3-next.1

4 years ago

5.0.3-next.0

4 years ago

5.0.2

4 years ago

5.0.1

4 years ago

4.8.0

4 years ago

5.0.2-next.2

4 years ago

5.0.2-next.1

4 years ago

5.0.2-next.0

4 years ago

5.0.0-rc.0

4 years ago

5.0.0

4 years ago

4.7.1-next.18

4 years ago

4.7.1-next.14

4 years ago

4.7.1-next.15

4 years ago

4.7.1-next.16

4 years ago

5.0.1-next.1

4 years ago

5.0.1-next.2

4 years ago

5.0.1-next.3

4 years ago

5.0.0-beta.2

4 years ago

4.7.1-next.0

4 years ago

4.7.1-next.1

4 years ago

4.7.1-next.2

4 years ago

4.7.1-next.3

4 years ago

4.7.1-next.4

4 years ago

4.7.1-next.5

4 years ago

4.7.1-next.6

4 years ago

4.7.1-next.7

4 years ago

4.7.1-next.8

4 years ago

4.7.1-next.9

4 years ago

4.7.1-next.10

4 years ago

4.7.1-next.11

4 years ago

4.7.1-next.12

4 years ago

5.0.0-beta.1

4 years ago

4.7.0

4 years ago

4.6.1-next.3

4 years ago

4.6.1-next.2

4 years ago

4.6.1-next.0

4 years ago

4.6.1-next.1

4 years ago

4.6.0

4 years ago

4.5.2-next.3

4 years ago

4.5.2-next.1

4 years ago

4.5.2-next.2

4 years ago

4.5.2-next.0

4 years ago

4.5.1

4 years ago

4.5.1-next.3

4 years ago

4.5.1-next.4

4 years ago

4.5.1-next.2

4 years ago

4.5.1-next.1

4 years ago

4.5.1-next.0

4 years ago

4.5.0

4 years ago

4.4.3-next.17

4 years ago

4.4.3-next.16

4 years ago

4.4.3-next.18

4 years ago

4.4.3-next.15

4 years ago

4.4.3-next.14

4 years ago

4.4.3-next.13

4 years ago

4.4.3-next.12

4 years ago

4.4.3-next.11

4 years ago

5.0.0-beta.0

4 years ago

4.4.3-next.10

4 years ago

4.4.3-next.9

4 years ago

4.4.3-next.8

4 years ago

4.4.3-next.7

4 years ago

4.4.3-next.6

4 years ago

4.4.3-next.5

4 years ago

4.4.3-next.4

4 years ago

4.4.3-next.3

4 years ago

4.4.3-next.0

5 years ago

4.4.3-next.1

5 years ago

4.4.2

5 years ago

4.4.2-next.4

5 years ago

4.4.2-next.3

5 years ago

4.4.2-next.2

5 years ago

4.4.1-next.4

5 years ago

4.4.1

5 years ago

4.4.1-next.3

5 years ago

4.4.1-next.2

5 years ago

4.4.1-next.0

5 years ago

4.4.1-next.1

5 years ago

4.3.2-next.6

5 years ago

4.4.0

5 years ago

4.3.2-next.4

5 years ago

4.3.2-next.3

5 years ago

4.3.2-next.5

5 years ago

4.3.2-next.2

5 years ago

4.3.2-next.1

5 years ago

4.3.2-next.0

5 years ago

4.3.1

5 years ago

4.3.1-next.4

5 years ago

4.3.1-next.2

5 years ago

4.3.1-next.3

5 years ago

4.3.1-next.1

5 years ago

4.3.1-next.0

5 years ago

4.3.0

5 years ago

4.1.3-next.28

5 years ago

4.1.3-next.27

5 years ago

4.1.3-next.26

5 years ago

4.1.3-next.25

5 years ago

4.1.3-next.24

5 years ago

4.1.3-next.23

5 years ago

4.1.3-next.22

5 years ago

4.1.3-next.20

5 years ago

4.1.3-next.21

5 years ago

4.1.3-next.17

5 years ago

4.1.3-next.18

5 years ago

4.1.3-next.16

5 years ago

4.2.0

5 years ago

4.1.3-next.15

5 years ago

4.1.3-next.13

5 years ago

4.1.3-next.11

5 years ago

4.1.3-next.12

5 years ago

4.1.3-next.10

5 years ago

4.1.3-next.8

5 years ago

4.1.3-next.9

5 years ago

4.1.3-next.6

5 years ago

4.1.3-next.7

5 years ago

4.1.3-next.4

5 years ago

4.1.3-next.3

5 years ago

4.1.3-next.1

5 years ago

4.1.3-next.0

5 years ago

4.1.2

5 years ago

4.0.3

5 years ago

4.1.2-next.0

5 years ago

4.0.2

5 years ago

4.1.1

5 years ago

4.1.1-next.5

5 years ago

4.1.1-next.4

5 years ago

4.1.1-next.0

5 years ago

4.1.1-next.3

5 years ago

4.1.1-next.2

5 years ago

4.0.1-next.19

5 years ago

4.0.1-next.18

5 years ago

4.1.0

5 years ago

4.0.1-next.17

5 years ago

4.0.1-next.16

5 years ago

4.0.1-next.15

5 years ago

4.0.1-next.14

5 years ago

4.0.1

5 years ago

4.0.1-next.12

5 years ago

4.0.1-next.11

5 years ago

4.0.1-next.9

5 years ago

4.0.1-next.10

5 years ago

4.0.1-next.7

5 years ago

4.0.1-next.8

5 years ago

4.0.1-next.6

5 years ago

4.0.1-next.5

5 years ago

4.0.1-next.4

5 years ago

4.0.1-next.1

5 years ago

4.0.1-next.2

5 years ago

4.0.1-next.0

5 years ago

3.8.1-next.16

5 years ago

3.8.1-next.17

5 years ago

4.0.0

5 years ago

4.0.0-beta.5

5 years ago

3.8.1-next.15

5 years ago

3.8.1-next.14

5 years ago

3.8.1-next.13

5 years ago

3.8.1-next.12

5 years ago

3.8.1-next.11

5 years ago

3.8.1-next.10

5 years ago

3.8.1-next.8

5 years ago

3.8.1-next.9

5 years ago

3.8.1-next.7

5 years ago

3.8.1-next.6

5 years ago

3.8.1-next.5

5 years ago

3.8.1-next.4

5 years ago

3.8.1-next.3

5 years ago

3.8.1-next.2

5 years ago

3.8.1-next.0

5 years ago

3.8.1-next.1

5 years ago

3.8.0

5 years ago

3.7.1-next.8

5 years ago

3.7.1-next.7

5 years ago

3.7.1-next.6

5 years ago

3.7.1-next.3

5 years ago

3.7.1-next.4

5 years ago

3.7.1-next.5

5 years ago

4.0.0-beta.4

5 years ago

3.7.1-next.2

5 years ago

3.7.1-next.0

5 years ago

4.0.0-beta.3

5 years ago

4.0.0-beta.2

5 years ago

3.6.1-next.14

5 years ago

3.7.0

5 years ago

3.6.1-next.13

5 years ago

3.6.1-next.12

5 years ago

3.6.1-next.11

5 years ago

3.6.1-next.10

5 years ago

3.6.1-next.9

5 years ago

3.6.1-next.8

5 years ago

3.6.1-next.7

5 years ago

3.6.1-next.6

5 years ago

3.6.1-next.5

5 years ago

3.6.1-next.4

5 years ago

3.6.1-next.3

5 years ago

3.6.1-next.2

5 years ago

3.6.1-next.1

5 years ago

3.6.1-next.0

5 years ago

4.0.0-beta.1

5 years ago

3.5.1-next.10

5 years ago

3.6.0

5 years ago

3.5.1-next.9

5 years ago

3.5.1-next.8

5 years ago

4.0.0-beta.0

5 years ago

3.5.1-next.7

5 years ago

3.5.1-next.6

5 years ago

3.5.1-next.5

5 years ago

3.5.1-next.4

5 years ago

3.5.1-next.1

5 years ago

3.5.1-next.2

5 years ago

3.5.1-next.3

5 years ago

3.5.1-next.0

5 years ago

3.5.0

5 years ago

3.4.1-next.17

5 years ago

3.4.1-next.16

5 years ago

3.4.1-next.15

5 years ago

3.4.1-next.14

5 years ago

3.4.1-next.13

5 years ago

3.4.1-next.12

5 years ago

3.4.1-next.11

5 years ago

3.4.1-next.10

5 years ago

3.4.1-next.8

5 years ago

3.4.1-next.9

5 years ago

3.4.1-next.6

5 years ago

3.4.1-next.7

5 years ago

3.4.1-next.4

5 years ago

3.4.1-next.5

5 years ago

3.4.1-next.3

5 years ago

3.4.1-next.2

5 years ago

3.4.1-next.0

5 years ago

3.4.1-next.1

5 years ago

3.3.3-next.31

5 years ago

3.3.3-next.30

5 years ago

3.3.3-next.29

5 years ago

3.3.3-next.26

5 years ago

3.3.3-next.28

5 years ago

3.3.3-next.27

5 years ago

3.3.3-next.21

5 years ago

3.3.3-next.25

5 years ago

3.3.3-next.19

5 years ago

3.3.3-next.18

5 years ago

3.3.3-next.15

5 years ago

3.3.3-next.14

5 years ago

3.3.3-next.17

5 years ago

3.3.3-next.16

5 years ago

3.3.0

5 years ago

3.2.0

5 years ago

3.1.0

6 years ago

3.0.0

6 years ago

3.0.0-beta.0

6 years ago

3.0.0-alpha.6

6 years ago

3.0.0-alpha.5

6 years ago

3.0.0-alpha.4

6 years ago

3.0.0-alpha.3

6 years ago

3.0.0-alpha.2

6 years ago

3.0.0-alpha.1

6 years ago