aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/format/css/value.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/data/format/css/value.lux')
-rw-r--r--stdlib/source/lux/data/format/css/value.lux22
1 files changed, 11 insertions, 11 deletions
diff --git a/stdlib/source/lux/data/format/css/value.lux b/stdlib/source/lux/data/format/css/value.lux
index a681bde1a..8967ed90a 100644
--- a/stdlib/source/lux/data/format/css/value.lux
+++ b/stdlib/source/lux/data/format/css/value.lux
@@ -9,7 +9,7 @@
["." text
format]
[collection
- ["." list ("#/." functor)]]]
+ ["." list ("#;." functor)]]]
[type
abstract]
[macro
@@ -797,7 +797,7 @@
(def: #export (cubic-bezier p0 p1 p2 p3)
(-> Frac Frac Frac Frac (Value Timing))
(|> (list p0 p1 p2 p3)
- (list/map %number)
+ (list;map %number)
(..apply "cubic-bezier")))
(do-template [<name> <brand>]
@@ -963,7 +963,7 @@
(let [[now after] next]
(..apply <function> (list& (:representation Angle angle)
(with-hint now)
- (list/map with-hint after)))))]
+ (list;map with-hint after)))))]
[linear-gradient "linear-gradient"]
[repeating-linear-gradient "repeating-linear-gradient"]
@@ -1090,7 +1090,7 @@
[now after] next]
(..apply <function> (list& (..shape shape)
(with-hint now)
- (list/map with-hint after)))))]
+ (list;map with-hint after)))))]
[radial-gradient "radial-gradient"]
[repeating-radial-gradient "repeating-radial-gradient"]
@@ -1162,7 +1162,7 @@
(case options
(#.Cons _)
(|> options
- (list/map ..font-name)
+ (list;map ..font-name)
(text.join-with ",")
(:abstraction Value))
@@ -1201,7 +1201,7 @@
(-> (List (List (Maybe (Value Grid)))) (Value Grid-Template))
(let [empty (: (Value Grid)
(:abstraction "."))]
- (|>> (list/map (|>> (list/map (|>> (maybe.default empty)
+ (|>> (list;map (|>> (list;map (|>> (maybe.default empty)
:representation))
(text.join-with ..grid-column-separator)
(text.enclose ["'" "'"])))
@@ -1238,7 +1238,7 @@
(def: #export (quotes [left0 right0] [left1 right1])
(-> [Quote Quote] [Quote Quote] (Value Quotes))
(|> (list left0 right0 left1 right1)
- (list/map (|>> ..quote-text %t))
+ (list;map (|>> ..quote-text %t))
(text.join-with ..quote-separator)
:abstraction))
@@ -1248,7 +1248,7 @@
[Frac Frac]
(Value Transform))
(|> (list a b c d tx ty)
- (list/map %number)
+ (list;map %number)
(..apply "matrix")))
(def: #export (matrix-3d [a0 b0 c0 d0] [a1 b1 c1 d1] [a2 b2 c2 d2] [a3 b3 c3 d3])
@@ -1258,14 +1258,14 @@
[Frac Frac Frac Frac]
(Value Transform))
(|> (list a0 b0 c0 d0 a1 b1 c1 d1 a2 b2 c2 d2 a3 b3 c3 d3)
- (list/map %number)
+ (list;map %number)
(..apply "matrix3d")))
(do-template [<name> <function> <input-types> <input-values>]
[(`` (def: #export (<name> [(~~ (template.splice <input-values>))])
(-> [(~~ (template.splice <input-types>))] (Value Transform))
(|> (list (~~ (template.splice <input-values>)))
- (list/map %number)
+ (list;map %number)
(..apply <function>))))]
[translate-2d "translate" [Frac Frac] [x y]]
@@ -1287,7 +1287,7 @@
[(`` (def: #export (<name> [(~~ (template.splice <input-values>))])
(-> [(~~ (template.splice <input-types>))] (Value Transform))
(|> (list (~~ (template.splice <input-values>)))
- (list/map ..angle)
+ (list;map ..angle)
(..apply <function>))))]
[rotate-2d "rotate" [Angle] [angle]]