temporary remove deprecations

This commit is contained in:
Volodymyr Kozieiev 2024-12-10 22:27:16 +00:00
parent 07480196bc
commit e3c7e897f0
No known key found for this signature in database
GPG Key ID: 82B04968DF4C0535
4 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
(ns legacy.status-im.utils.deprecated-types
{:deprecated true :superseded-by "utils.transforms"}
#_{:deprecated true :superseded-by "utils.transforms"}
(:refer-clojure :exclude [js->clj])
(:require
[cljs-bean.core :as clj-bean]))

View File

@ -450,8 +450,8 @@
(def channel-name quo.components.text-combinations.channel-name.view/view)
(def page-top quo.components.text-combinations.page-top.view/view)
(def standard-title quo.components.text-combinations.standard-title.view/view)
(def ^{:deprecated "quo.components.text-combinations.page-top.view should be used instead"}
text-combinations
(def ;; ^{:deprecated "quo.components.text-combinations.page-top.view should be used instead"}
text-combinations
quo.components.text-combinations.view/view)
(def username quo.components.text-combinations.username.view/view)

View File

@ -352,8 +352,8 @@
opacity 0-100 (optional) - if set theme is ignored and goes to 50 suffix internally"
(memoize resolve-color*))
(def ^{:deprecated true :superseded-by "resolve-color"}
custom-color
(def ;; ^{:deprecated true :superseded-by "resolve-color"}
custom-color
"(custom-color color suffix opacity)
color :primary/:purple/...
suffix 50/60

View File

@ -64,7 +64,7 @@
(into [touchable-highlight-class (utils/custom-pressable-props props)] children))
(defn touchable-without-feedback
{:deprecated "pressable should be used instead"}
#_{:deprecated "pressable should be used instead"}
[props child]
[touchable-without-feedback-class (utils/custom-pressable-props props) child])