1
1
# NAME
2
2
3
- CSS::Sass::Type - Data Types for custom Sass Functions
3
+ CSS::Sass::Value - Data Types for custom Sass Functions
4
4
5
5
# Mapping ` Sass_Values ` to perl data structures
6
6
7
7
You can use ` maps ` and ` lists ` like normal ` hash ` or ` array ` references. Lists
8
8
can have two different separators used for stringification. This is detected by
9
- checking if the object is derived from ` CSS::Sass::Type ::List::Space ` . The default
10
- is a comma separated list, which you get by instantiating ` CSS::Sass::Type ::List `
11
- or ` CSS::Sass::Type ::List::Comma ` .
12
-
13
- my $null = CSS::Sass::Type ->new(undef); # => 'null'
14
- my $number = CSS::Sass::Type ->new(42.35); # => 42.35
15
- my $string = CSS::Sass::Type ->new("foobar"); # => 'foobar'
16
- my $map = CSS::Sass::Type ->new({ key => "foobar" }); # 'key: foobar'
17
- my $list = CSS::Sass::Type ->new([ "foo", 42, "bar" ]); # 'foo, 42, bar'
18
- my $space = CSS::Sass::Type ::List::Space->new("foo", "bar"); # 'foo bar'
19
- my $comma = CSS::Sass::Type ::List::Comma->new("foo", "bar"); # 'foo, bar'
9
+ checking if the object is derived from ` CSS::Sass::Value ::List::Space ` . The default
10
+ is a comma separated list, which you get by instantiating ` CSS::Sass::Value ::List `
11
+ or ` CSS::Sass::Value ::List::Comma ` .
12
+
13
+ my $null = CSS::Sass::Value ->new(undef); # => 'null'
14
+ my $number = CSS::Sass::Value ->new(42.35); # => 42.35
15
+ my $string = CSS::Sass::Value ->new("foobar"); # => 'foobar'
16
+ my $map = CSS::Sass::Value ->new({ key => "foobar" }); # 'key: foobar'
17
+ my $list = CSS::Sass::Value ->new([ "foo", 42, "bar" ]); # 'foo, 42, bar'
18
+ my $space = CSS::Sass::Value ::List::Space->new("foo", "bar"); # 'foo bar'
19
+ my $comma = CSS::Sass::Value ::List::Comma->new("foo", "bar"); # 'foo, bar'
20
20
21
21
You can also return these native perl types from custom functions. They will
22
- automatically be upgraded to real ` CSS::Sass::Type ` objects. All types
22
+ automatically be upgraded to real ` CSS::Sass::Value ` objects. All types
23
23
overload the ` stringify ` and ` eq ` operators (so far).
24
24
25
- ## CSS::Sass::Type
25
+ ## CSS::Sass::Value
26
26
27
27
Acts as a base class for all other types and is mainly an abstract class.
28
28
It only implements a generic constructor, which accepts native perl data types
29
- (undef, numbers, strings, array-refs and hash-refs) and ` CSS::Sass::Type ` objects.
29
+ (undef, numbers, strings, array-refs and hash-refs) and ` CSS::Sass::Value ` objects.
30
30
31
- ## CSS::Sass::Type ::Null
31
+ ## CSS::Sass::Value ::Null
32
32
33
- my $null = CSS::Sass::Type ::Null->new;
33
+ my $null = CSS::Sass::Value ::Null->new;
34
34
my $string = "$null"; # eq 'null'
35
35
my $value = $null->value; # == undef
36
36
37
- ## CSS::Sass::Type ::Boolean
37
+ ## CSS::Sass::Value ::Boolean
38
38
39
- my $bool = CSS::Sass::Type ::Boolean->new(42);
39
+ my $bool = CSS::Sass::Value ::Boolean->new(42);
40
40
my $string = "$bool"; # eq 'true'
41
41
my $value = $bool->value; # == 1
42
42
43
- ## CSS::Sass::Type ::Number
43
+ ## CSS::Sass::Value ::Number
44
44
45
- my $number = CSS::Sass::Type ::Boolean->new(42, 'px');
45
+ my $number = CSS::Sass::Value ::Boolean->new(42, 'px');
46
46
my $string = "$number"; # eq '42px'
47
47
my $value = $number->value; # == 42
48
48
my $unit = $number->unit; # eq 'px'
49
49
50
- ## CSS::Sass::Type ::String
50
+ ## CSS::Sass::Value ::String
51
51
52
- my $string = CSS::Sass::Type ->new("foo bar"); # => "foo bar"
52
+ my $string = CSS::Sass::Value ->new("foo bar"); # => "foo bar"
53
53
my $quoted = "$string"; # eq '"foo bar"'
54
54
my $unquoted = $string->value; # eq 'foo bar'
55
55
56
- ## CSS::Sass::Type ::Color
56
+ ## CSS::Sass::Value ::Color
57
57
58
- my $color = CSS::Sass::Type ::Color->new(64, 128, 32, 0.25);
58
+ my $color = CSS::Sass::Value ::Color->new(64, 128, 32, 0.25);
59
59
my $string = "$color"; # eq 'rgba(64, 128, 32, 0.25)'
60
60
my $r = $color->r; # == 64
61
61
my $g = $color->g; # == 128
62
62
my $b = $color->b; # == 32
63
63
my $a = $color->a; # == 0.25
64
64
65
- ## CSS::Sass::Type ::Map
65
+ ## CSS::Sass::Value ::Map
66
66
67
- my $map = CSS::Sass::Type ::Map->new(key => 'value');
68
- my $string = "$map"; # eq 'key: value'
69
- my $value = $map->{'key'}; # eq 'value'
67
+ my $map = CSS::Sass::Value ::Map->new(key => 'value');
68
+ my $string = "$map"; # eq 'key: " value" '
69
+ my $value = $map->{'key'}; # eq '" value" '
70
70
71
- ## CSS::Sass::Type ::List::Comma
71
+ ## CSS::Sass::Value ::List::Comma
72
72
73
- my $list = CSS::Sass::Type ::List::Comma->new('foo', 'bar');
74
- my $string = "$list"; # eq 'foo, bar'
73
+ my $list = CSS::Sass::Value ::List::Comma->new('foo', 'bar');
74
+ my $string = "$list"; # eq '" foo", " bar" '
75
75
my $value = $list->[0]; # eq 'foo'
76
76
77
- ## CSS::Sass::Type ::List::Space
77
+ ## CSS::Sass::Value ::List::Space
78
78
79
- my $list = CSS::Sass::Type ::List::Space->new('foo', 'bar');
80
- my $string = "$list"; # eq 'foo bar'
79
+ my $list = CSS::Sass::Value ::List::Space->new('foo', 'bar');
80
+ my $string = "$list"; # eq '" foo" " bar" '
81
81
my $value = $list->[-1]; # eq 'bar'
82
82
83
83
# SEE ALSO
@@ -86,8 +86,8 @@ It only implements a generic constructor, which accepts native perl data types
86
86
87
87
# AUTHOR
88
88
89
- David Caldwell
< [email protected] >
90
-
89
+ David Caldwell
& lt ; [email protected] >
90
+ Marcel Greter
& lt ; [email protected] >
91
91
92
92
# LICENSE
93
93
0 commit comments