@internetarchive/collection-browser
Advanced tools
Comparing version 0.0.1-alpha.5 to 0.0.1-alpha.6
@@ -46,3 +46,4 @@ import { __decorate } from "tslib"; | ||
href="#" | ||
@click=${() => { | ||
@click=${(e) => { | ||
e.preventDefault(); | ||
this.sortField = 'week'; | ||
@@ -57,3 +58,4 @@ }} | ||
href="#" | ||
@click=${() => { | ||
@click=${(e) => { | ||
e.preventDefault(); | ||
this.titleSelectorVisible = !this.titleSelectorVisible; | ||
@@ -69,3 +71,4 @@ this.sortField = 'titleSorter'; | ||
href="#" | ||
@click=${() => { | ||
@click=${(e) => { | ||
e.preventDefault(); | ||
this.dateSortSelectorVisible = | ||
@@ -81,3 +84,4 @@ !this.dateSortSelectorVisible; | ||
href="#" | ||
@click=${() => { | ||
@click=${(e) => { | ||
e.preventDefault(); | ||
this.creatorSelectorVisible = !this.creatorSelectorVisible; | ||
@@ -84,0 +88,0 @@ this.sortField = 'creatorSorter'; |
@@ -6,3 +6,3 @@ { | ||
"author": "Internet Archive", | ||
"version": "0.0.1-alpha.5", | ||
"version": "0.0.1-alpha.6", | ||
"main": "dist/index.js", | ||
@@ -9,0 +9,0 @@ "module": "dist/index.js", |
@@ -51,3 +51,4 @@ import { SortParam } from '@internetarchive/search-service'; | ||
href="#" | ||
@click=${() => { | ||
@click=${(e: Event) => { | ||
e.preventDefault(); | ||
this.sortField = 'week'; | ||
@@ -62,3 +63,4 @@ }} | ||
href="#" | ||
@click=${() => { | ||
@click=${(e: Event) => { | ||
e.preventDefault(); | ||
this.titleSelectorVisible = !this.titleSelectorVisible; | ||
@@ -74,3 +76,4 @@ this.sortField = 'titleSorter'; | ||
href="#" | ||
@click=${() => { | ||
@click=${(e: Event) => { | ||
e.preventDefault(); | ||
this.dateSortSelectorVisible = | ||
@@ -86,3 +89,4 @@ !this.dateSortSelectorVisible; | ||
href="#" | ||
@click=${() => { | ||
@click=${(e: Event) => { | ||
e.preventDefault(); | ||
this.creatorSelectorVisible = !this.creatorSelectorVisible; | ||
@@ -89,0 +93,0 @@ this.sortField = 'creatorSorter'; |
Sorry, the diff of this file is not supported yet
541179
7230