Skip to content

Commit

Permalink
chore: adjust input namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Son89 committed Mar 3, 2023
1 parent 1f0e205 commit 629b902
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(ns quo2.components.input.style
(ns quo2.components.inputs.input.style
(:require [quo2.components.markdown.text :as text]
[quo2.foundations.colors :as colors]))

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(ns quo2.components.input.view
(ns quo2.components.inputs.input.view
(:require [oops.core :as oops]
[quo2.components.icon :as icon]
[quo2.components.input.style :as style]
[quo2.components.inputs.input.style :as style]
[quo2.components.markdown.text :as text]
[react-native.core :as rn]
[reagent.core :as reagent]))
Expand Down
4 changes: 2 additions & 2 deletions src/quo2/core.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
quo2.components.icon
quo2.components.info.info-message
quo2.components.info.information-box
quo2.components.input.view
quo2.components.inputs.input.view
quo2.components.inputs.title-input.view
quo2.components.list-items.channel
quo2.components.list-items.menu-item
Expand Down Expand Up @@ -142,7 +142,7 @@
(def permission-context quo2.components.drawers.permission-context.view/view)

;;;; INPUTS
(def input quo2.components.input.view/input)
(def input quo2.components.inputs.input.view/input)
(def title-input quo2.components.inputs.title-input.view/title-input)

;;;; LIST ITEMS
Expand Down
4 changes: 2 additions & 2 deletions src/status_im2/contexts/quo_preview/inputs/input.cljs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(ns status-im2.contexts.quo-preview.inputs.input
(:require
[clojure.string :as string]
[quo2.components.input.view :as quo2]
[quo2.core :as quo]
[quo2.foundations.colors :as colors]
[react-native.core :as rn]
[reagent.core :as reagent]
Expand Down Expand Up @@ -94,7 +94,7 @@
:padding-vertical 60
:background-color background-color}}
[rn/view {:style {:width 300}}
[quo2/input
[quo/input
(cond-> @state
:always (assoc
:on-clear #(swap! state assoc :value "")
Expand Down

0 comments on commit 629b902

Please sign in to comment.