Skip to content
This repository has been archived by the owner on Dec 13, 2021. It is now read-only.

Commit

Permalink
update to lineupjs 3.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Nov 8, 2018
1 parent d6fc93c commit 73bb6a0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Usage
**Installation**

```bash
npm install --save vue-lineup@next
npm install --save vue-lineup
```

**Minimal Usage Example**
Expand Down Expand Up @@ -99,6 +99,8 @@ Development Environment
git clone https://github.com/datavisyn/vue-lineup.git
cd vue-lineup
npm install
# install peer dependency
npm install --no-save vue
```

**Build distribution packages**
Expand Down
13 changes: 4 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"name": "vue-lineup",
"description": "LineUp is an interactive technique designed to create, visualize and explore rankings of items based on a set of heterogeneous attributes.",
"homepage": "https://github.com/datavisyn/vue-lineup",
"version": "1.0.0",
"version": "1.0.6",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]"
"email": "[email protected]",
"url": "https://www.sgratzl.com"
},
"license": "MIT",
"bugs": {
Expand Down Expand Up @@ -48,7 +49,7 @@
"vue-template-compiler": "^2.5.17"
},
"dependencies": {
"lineupjs": "^3.1.5",
"lineupjs": "~3.1.7",
"vue-class-component": "^6.3.0",
"vue-property-decorator": "^7.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions src/components/column/LineUpStringColumnDesc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script lang="ts">
import { Component, Prop } from 'vue-property-decorator';
import {
builderAdapter, IStringColumnDesc, IBuilderAdapterStringColumnDescProps,
builderAdapter, ILinkColumnDesc, IBuilderAdapterStringColumnDescProps,
} from 'lineupjs';
import LineUpColumnDesc from './LineUpColumnDesc.vue';
import { noUndefined } from '../utils';
Expand Down Expand Up @@ -36,7 +36,7 @@ export default class LineUpStringColumnDesc extends LineUpColumnDesc implements
})
public patternTemplates?: string[];
public build(): IStringColumnDesc {
public build(): ILinkColumnDesc {
return builderAdapter.buildString(noUndefined(this));
}
}
Expand Down

0 comments on commit 73bb6a0

Please sign in to comment.