Skip to content

Commit

Permalink
v1.0.0-beta.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tsov committed Apr 29, 2018
1 parent 1ece81d commit 79923ee
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 26 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
# Changelog

## v1.0.0-beta.7 - ?
## v1.0.0-beta.8 - ?

### Added

### Changed

## v1.0.0-beta.7 - 2018-04-28

### Added

* ResizeMirror plugin

### Changed

* Fixed native drag events with draggable
* Mouse position bug in scrollable

## v1.0.0-beta.6 - 2018-04-04

### Added
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ or via CDN

```html
<!-- Entire bundle -->
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/draggable.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/draggable.bundle.js"></script>
<!-- legacy bundle for older browsers (IE11) -->
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/draggable.bundle.legacy.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/draggable.bundle.legacy.js"></script>
<!-- Draggable only -->
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/draggable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/draggable.js"></script>
<!-- Sortable only -->
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/sortable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/sortable.js"></script>
<!-- Droppable only -->
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/droppable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/droppable.js"></script>
<!-- Swappable only -->
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/swappable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/swappable.js"></script>
<!-- Plugins only -->
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins.js"></script>
```

## Browser Compatibility
Expand Down Expand Up @@ -138,7 +138,7 @@ For more information, please checkout the [contributing document](https://github

## Roadmap

We are currently working on `v1.0.0-beta.7`. Check out the [project board](https://github.com/Shopify/draggable/projects/3) to see tasks and follow progress on the release. Any Pull Requests should be pointed against the feature branch `v1.0.0-beta.7`.
We are currently working on `v1.0.0-beta.8`. Check out the [project board](https://github.com/Shopify/draggable/projects/3) to see tasks and follow progress on the release. Any Pull Requests should be pointed against the feature branch `v1.0.0-beta.8`.

## Related resources

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/draggable",
"version": "1.0.0-beta.6",
"version": "1.0.0-beta.7",
"private": false,
"license": "MIT",
"description": "The JavaScript Drag & Drop library your grandparents warned you about.",
Expand Down
4 changes: 2 additions & 2 deletions src/Draggable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import Draggable from '@shopify/draggable/lib/draggable';
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/draggable.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/draggable.bundle.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/draggable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/draggable.js"></script>
```

### API
Expand Down
4 changes: 2 additions & 2 deletions src/Droppable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import Droppable from '@shopify/draggable/lib/droppable';
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/draggable.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/draggable.bundle.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/droppable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/droppable.js"></script>
```

### API
Expand Down
4 changes: 2 additions & 2 deletions src/Plugins/Collidable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import Collidable from '@shopify/draggable/lib/plugins/collidable';
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins/collidable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins/collidable.js"></script>
```

### Options
Expand Down
4 changes: 2 additions & 2 deletions src/Plugins/ResizeMirror/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ import ResizeMirror from '@shopify/draggable/lib/plugins/resize-mirror';
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins/resize-mirror.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins/resize-mirror.js"></script>
```

### API
Expand Down
4 changes: 2 additions & 2 deletions src/Plugins/Snappable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import Snappable from '@shopify/draggable/lib/plugins/snappable';
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins/snappable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins/snappable.js"></script>
```

### Options
Expand Down
4 changes: 2 additions & 2 deletions src/Plugins/SwapAnimation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import SwapAnimation from '@shopify/draggable/lib/plugins/swap-animation';
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/plugins/swap-animation.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/plugins/swap-animation.js"></script>
```

### API
Expand Down
4 changes: 2 additions & 2 deletions src/Sortable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import Sortable from '@shopify/draggable/lib/sortable';
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/draggable.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/draggable.bundle.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/sortable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/sortable.js"></script>
```

### API
Expand Down
4 changes: 2 additions & 2 deletions src/Swappable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import Swappable from '@shopify/draggable/lib/swappable';
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/draggable.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/draggable.bundle.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].6/lib/swappable.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@shopify/[email protected].7/lib/swappable.js"></script>
```

### API
Expand Down

0 comments on commit 79923ee

Please sign in to comment.