Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alesgenova committed Nov 8, 2018
1 parent bffe740 commit c8a9b1e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ Splitters can be arbitrarily nested into each other to achieve any layout.
<div slot="0" class="fill red"></div>
<div slot="1" class="fill green"></div>
<split-me slot="2" n="2" d="vertical" fixed>
<div slot="0" class="fill blue"></div>
<div slot="1" class="fill magenta"></div>
<div slot="0" class="fill blue"></div>
<div slot="1" class="fill magenta"></div>
</split-me>
</split-me>
```
Expand All @@ -125,15 +125,15 @@ Splitters can be arbitrarily nested into each other to achieve any layout.

### Properties

| Property | Attribute | Description | Type |
| ---------- | ----------- | ------------------------------------------------------------------------------------------------------- | --------------------------- |
| `d` | `d` | The direction of the splitter. | `"horizontal" | "vertical"` |
| `fixed` | `fixed` | Prevent the splitter from being resized. | `boolean` |
| `maxSizes` | `max-sizes` | The maximum sizes of the slots. Same format as `sizes` | `number[] \| string` |
| `minSizes` | `min-sizes` | The minimum sizes of the slots. Same format as `sizes` | `number[] \| string` |
| `n` | `n` | The number of slots in the splitter. | `number` |
| `sizes` | `sizes` | The initial sizes of the slots. Acceptable formats are: `sizes="0.33, 0.67"` or `sizes="50%, 25%, 25%"` | `number[] \| string` |
| `throttle` | `throttle` | The minimum time (in ms) between resize events while dragging. | `number` |
| Property | Attribute | Description | Type |
| ---------- | ----------- | ------------------------------------------------------------------------------------------------------- | ---------------------------- |
| `d` | `d` | The direction of the splitter. | `"horizontal" \| "vertical"` |
| `fixed` | `fixed` | Prevent the splitter from being resized. | `boolean` |
| `maxSizes` | `max-sizes` | The maximum sizes of the slots. Same format as `sizes` | `number[] \| string` |
| `minSizes` | `min-sizes` | The minimum sizes of the slots. Same format as `sizes` | `number[] \| string` |
| `n` | `n` | The number of slots in the splitter. | `number` |
| `sizes` | `sizes` | The initial sizes of the slots. Acceptable formats are: `sizes="0.33, 0.67"` or `sizes="50%, 25%, 25%"` | `number[] \| string` |
| `throttle` | `throttle` | The minimum time (in ms) between resize events while dragging. | `number` |

### Events

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "split-me",
"version": "1.1.4",
"version": "1.1.5",
"description": "Universal web component to create arbitrary split layouts ",
"module": "dist/esm/index.js",
"main": "dist/index.js",
Expand All @@ -23,16 +23,16 @@
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@stencil/core": "^0.14.1",
"@types/jest": "^23.3.2",
"@stencil/core": "^0.15.2",
"@types/jest": "^23.3.9",
"@types/lodash.throttle": "^4.1.4",
"@types/puppeteer": "1.9.0",
"husky": "^1.0.1",
"jest": "23.5.0",
"@types/puppeteer": "1.10.0",
"husky": "^1.1.3",
"jest": "23.6.0",
"pixelmatch": "4.0.2",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"puppeteer": "1.7.0"
"prettier": "^1.15.1",
"pretty-quick": "^1.8.0",
"puppeteer": "1.10.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit c8a9b1e

Please sign in to comment.