Skip to content

Commit

Permalink
Fix core macro refer availability
Browse files Browse the repository at this point in the history
  • Loading branch information
superstructor committed Feb 24, 2021
1 parent f80bb7e commit fa99444
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 26 deletions.
55 changes: 29 additions & 26 deletions src/re_com/core.cljs
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
(ns re-com.core
(:require [re-com.alert :as alert]
[re-com.box :as box]
[re-com.buttons :as buttons]
[re-com.checkbox :as checkbox]
[re-com.close-button :as close-button]
[re-com.datepicker :as datepicker]
[re-com.debug :as debug]
[re-com.dropdown :as dropdown]
[re-com.input-text :as input-text]
[re-com.typeahead :as typeahead]
[re-com.input-time :as input-time]
[re-com.splits :as splits]
[re-com.modal-panel :as modal-panel]
[re-com.multi-select :as multi-select]
[re-com.popover :as popover]
[re-com.progress-bar :as progress-bar]
[re-com.radio-button :as radio-button]
[re-com.selection-list :as selection-list]
[re-com.slider :as slider]
[re-com.tabs :as tabs]
[re-com.tag-dropdown :as tag-dropdown]
[re-com.text :as text]
[re-com.throbber :as throbber]
[re-com.tour :as tour]
[re-com.v-table :as v-table]
[re-com.simple-v-table :as simple-v-table]))
(:require-macros
[re-com.core])
(:require
[re-com.alert :as alert]
[re-com.box :as box]
[re-com.buttons :as buttons]
[re-com.checkbox :as checkbox]
[re-com.close-button :as close-button]
[re-com.datepicker :as datepicker]
[re-com.debug :as debug]
[re-com.dropdown :as dropdown]
[re-com.input-text :as input-text]
[re-com.typeahead :as typeahead]
[re-com.input-time :as input-time]
[re-com.splits :as splits]
[re-com.modal-panel :as modal-panel]
[re-com.multi-select :as multi-select]
[re-com.popover :as popover]
[re-com.progress-bar :as progress-bar]
[re-com.radio-button :as radio-button]
[re-com.selection-list :as selection-list]
[re-com.slider :as slider]
[re-com.tabs :as tabs]
[re-com.tag-dropdown :as tag-dropdown]
[re-com.text :as text]
[re-com.throbber :as throbber]
[re-com.tour :as tour]
[re-com.v-table :as v-table]
[re-com.simple-v-table :as simple-v-table]))

;; -----------------------------------------------------------------------------
;; re-com public API (see also re-com.util)
Expand Down
2 changes: 2 additions & 0 deletions src/re_com/validate.cljs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
(ns re-com.validate
(:require-macros
[re-com.validate])
(:require
[cljs-time.core :as time.core]
[clojure.set :refer [superset?]]
Expand Down

0 comments on commit fa99444

Please sign in to comment.