diff options
author | Zero~Informatique | 2020-02-14 09:19:53 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-02-24 00:04:39 +0100 |
commit | 370e3db3455f548699ff5e046e0f8dcc304991ac (patch) | |
tree | e29fe9e2afb940eea74c8ed510c46a1eb0fa4d84 /viewer/src/plugins/buefy.ts | |
parent | e42f4e864bac21ed3b19d1869df2cdd4f8c3433c (diff) | |
download | ldgallery-370e3db3455f548699ff5e046e0f8dcc304991ac.tar.gz |
viewer: major code and search mode overhaul
Updated libraries to the lastest version
SCSS Formatter as suggested VSC extensions
Renamed toolbar-color by scrollbar-color
LD components use Props in favor of touching the stores directly (when possible)
Moved most common algorithms to a "services" folder
Complete search overhaul (lots of code change)
Diffstat (limited to 'viewer/src/plugins/buefy.ts')
-rw-r--r-- | viewer/src/plugins/buefy.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/plugins/buefy.ts b/viewer/src/plugins/buefy.ts index 74b6176..ebdf64e 100644 --- a/viewer/src/plugins/buefy.ts +++ b/viewer/src/plugins/buefy.ts | |||
@@ -24,7 +24,7 @@ import Taginput from 'buefy/src/components/taginput'; | |||
24 | // @ts-ignore | 24 | // @ts-ignore |
25 | import Loading from 'buefy/src/components/loading'; | 25 | import Loading from 'buefy/src/components/loading'; |
26 | // @ts-ignore | 26 | // @ts-ignore |
27 | import Radio from 'buefy/src/components/radio'; | 27 | import Button from 'buefy/src/components/button'; |
28 | // @ts-ignore | 28 | // @ts-ignore |
29 | import SnackBar from 'buefy/src/components/snackbar'; | 29 | import SnackBar from 'buefy/src/components/snackbar'; |
30 | 30 | ||
@@ -32,7 +32,7 @@ import "@/assets/scss/buefy.scss"; | |||
32 | 32 | ||
33 | Vue.use(Taginput); | 33 | Vue.use(Taginput); |
34 | Vue.use(Loading); | 34 | Vue.use(Loading); |
35 | Vue.use(Radio); | 35 | Vue.use(Button); |
36 | Vue.use(SnackBar); | 36 | Vue.use(SnackBar); |
37 | 37 | ||
38 | declare module 'vue/types/vue' { | 38 | declare module 'vue/types/vue' { |