File tree Expand file tree Collapse file tree 9 files changed +149
-68
lines changed Expand file tree Collapse file tree 9 files changed +149
-68
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Demo http://repo.mvc-works.org/fuzzy-filter/
11
11
[ ![ Clojars Project] ( https://img.shields.io/clojars/v/mvc-works/fuzzy-filter.svg )] ( https://clojars.org/mvc-works/fuzzy-filter )
12
12
13
13
``` edn
14
- [mvc-works/fuzzy-filter " 0.0.4 " ]
14
+ [mvc-works/fuzzy-filter " 0.0.5 " ]
15
15
```
16
16
17
17
``` edn
Original file line number Diff line number Diff line change 1
1
2
2
{:pom {:group-id " mvc-works" ,
3
3
:artifact-id " fuzzy-filter" ,
4
- :version " 0.0.4 " ,
4
+ :version " 0.0.5 " ,
5
5
:name " A customzed fuzzy search function" }
6
6
:packaging {:jar {:enabled true
7
7
:remote-repository {:id " clojars"
Original file line number Diff line number Diff line change 21
21
"license" : " MIT" ,
22
22
"devDependencies" : {
23
23
"http-server" : " ^0.11.1" ,
24
- "shadow-cljs" : " ^2.6.9 "
24
+ "shadow-cljs" : " ^2.7.4 "
25
25
},
26
26
"dependencies" : {
27
- "shortid" : " ^2.2.13 "
27
+ "shortid" : " ^2.2.14 "
28
28
}
29
29
}
Original file line number Diff line number Diff line change 1
1
2
2
{:source-paths [" src" " cli" ]
3
3
:dependencies [[mvc-works/hsl " 0.1.2" ]
4
- [mvc-works/verbosely " 0.1.2" ]
5
- [mvc-works/shell-page " 0.1.8" ]
6
- [respo " 0.8.20" ]
7
- [respo/ui " 0.3.7" ]
8
- [respo/alerts " 0.3.6" ]
9
- [respo/value " 0.2.4" ]
10
- [respo/markdown " 0.2.1" ]
11
- [respo/reel " 0.3.2" ]]
4
+ [mvc-works/shell-page " 0.1.9" ]
5
+ [respo " 0.10.2" ]
6
+ [respo/ui " 0.3.10" ]
7
+ [respo/alerts " 0.3.9" ]
8
+ [respo/value " 0.2.5" ]
9
+ [respo/markdown " 0.2.4" ]
10
+ [respo/reel " 0.3.4" ]]
12
11
:open-file-command [" subl" [" %s:%s:%s" :file :line :column ]]
13
12
:socket-repl {:port 0 }
14
13
:builds {:client {:target :browser
15
14
:output-dir " target/"
16
15
:asset-path " ./"
17
- :modules {:client {:entries [ fuzzy-filter.main] }}
16
+ :modules {:client {:init-fn fuzzy-filter.main/main! }}
18
17
:devtools {:after-load fuzzy-filter.main/reload!
19
18
:http-root " target"
20
- :http-port 7000
21
- :loader-mode :eval }
19
+ :http-port 7000 }
22
20
:compiler-options {:infer-externs :auto }
23
21
:release {:output-dir " dist/"
24
22
:module-hash-names 8
Original file line number Diff line number Diff line change 2
2
(ns fuzzy-filter.comp.container
3
3
(:require [hsl.core :refer [hsl]]
4
4
[respo-ui.core :as ui]
5
- [respo.macros
5
+ [respo.core
6
6
:refer
7
7
[defcomp cursor-> action-> mutation-> <> div button textarea span input pre]]
8
- [verbosely.core :refer [verbosely!]]
9
8
[respo.comp.space :refer [=<]]
10
9
[reel.comp.reel :refer [comp-reel]]
11
10
[respo-md.comp.md :refer [comp-md]]
Original file line number Diff line number Diff line change 2
2
(ns fuzzy-filter.comp.visual
3
3
(:require [hsl.core :refer [hsl]]
4
4
[respo-ui.core :as ui]
5
- [respo.macros
5
+ [respo.core
6
6
:refer
7
7
[defcomp cursor-> list-> <> div button textarea span input pre]]
8
8
[respo.comp.space :refer [=<]]))
Original file line number Diff line number Diff line change 42
42
(clear-cache! )
43
43
(reset! *reel (refresh-reel @*reel schema/store updater))
44
44
(println " Code updated." ))
45
-
46
- (set! (.-onload js/window) main!)
You can’t perform that action at this time.
0 commit comments