Skip to content

Commit

Permalink
fix: linting violations
Browse files Browse the repository at this point in the history
  • Loading branch information
6eDesign committed Jan 15, 2020
1 parent 19d4b07 commit 07c868f
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion docs/bundle.css

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

4 changes: 2 additions & 2 deletions docs/bundle.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/test.css

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

6 changes: 3 additions & 3 deletions docs/test.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/test.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/test.js.map

Large diffs are not rendered by default.

19 changes: 10 additions & 9 deletions src/Components/Datepicker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@
];
export let style = '';
// theming variables:
export let buttonBackgroundColor = '#fff';
export let buttonBorderColor = '#eee';
export let buttonTextColor = '#333';
export let highlightColor = '#f7901e';
export let dayBackgroundColor = 'none';
export let dayTextColor = '#4a4a4a';
export let dayHighlightedBackgroundColor = '#efefef';
export let dayHighlightedTextColor = '#4a4a4a';
internationalize({ daysOfWeek, monthsOfYear });
let sortedDaysOfWeek = weekStart === 0 ? daysOfWeek : (() => {
Expand Down Expand Up @@ -232,15 +242,6 @@
dispatch('open');
}
// theming variables:
export let buttonBackgroundColor = '#fff';
export let buttonBorderColor = '#eee';
export let buttonTextColor = '#333';
export let highlightColor = '#f7901e';
export let dayBackgroundColor = 'none';
export let dayTextColor = '#4a4a4a';
export let dayHighlightedBackgroundColor = '#efefef';
export let dayHighlightedTextColor = '#4a4a4a';
</script>

<div
Expand Down

0 comments on commit 07c868f

Please sign in to comment.