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

Commit

Permalink
add new options
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Oct 15, 2018
1 parent 9b1c0ca commit 7870630
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/components/LineUp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@ export default class LineUp extends Vue implements IBuilderAdapterProps {
})
public dynamicHeight?: (data: Array<IGroupItem | IGroupData>, ranking: Ranking) => (IDynamicHeight | null);
@Prop({
type: Boolean,
default: undefined,
})
public ignoreUnsupportedBrowser?: boolean;
private changed = new Set<keyof IBuilderAdapterProps>();
private readonly adapter = new builderAdapter.Adapter({
Expand Down
6 changes: 6 additions & 0 deletions src/components/column/LineUpNumberColumnDesc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ export default class LineUpNumberColumnDesc extends LineUpColumnDesc implements
})
public mapping?: 'linear' | 'sqrt' | 'pow1.1' | 'pow2' | 'pow3';
@Prop({
type: String,
default: undefined,
})
public colorMapping?: string;
@Prop({
type: String,
default: undefined,
Expand Down
2 changes: 0 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"node" ],
"paths": {
"@/*": [
"src/*"
Expand Down

0 comments on commit 7870630

Please sign in to comment.