@@ -62,6 +62,7 @@ $_light-carousel: extend(
62
62
/// @type {Map}
63
63
/// @requires {function} extend
64
64
/// @requires {map} $_light-carousel
65
+ /// @requires {map} $_square-shape-carousel
65
66
/// @requires {map} $_fluent-elevation-carousel
66
67
/// @see $default-palette
67
68
$_fluent-carousel : extend (
@@ -74,26 +75,40 @@ $_fluent-carousel: extend(
74
75
/// @type {Map}
75
76
/// @requires {function} extend
76
77
/// @requires {map} $_light-carousel
78
+ /// @requires {map} $_bootstrap-shape-carousel
79
+ /// @requires {map} $_bootstrap-elevation-carousel
77
80
$_bootstrap-carousel : extend (
78
81
$_light-carousel ,
79
82
$_bootstrap-shape-carousel ,
80
- $_fluent -elevation-carousel , (
83
+ $_bootstrap -elevation-carousel , (
81
84
variant : ' bootstrap'
82
85
)
83
86
);
84
87
85
88
/// Generates an indigo carousel schema.
86
89
/// @type {Map}
90
+ /// @prop {Map} button-background [igx-color: 'surface', rgba: .4] - The previous/next buttons idle background color.
91
+ /// @prop {Map} button-hover-background [igx-color: 'surface', rgba: .65] - The previous/next buttons hover background color.
92
+ /// @prop {Color} button-disabled-background [transparent] - The previous/next buttons disabled background color.
93
+ /// @prop {Map} button-arrow-color [igx-color: ('grays', 600)] - The previous/next buttons idle arrow color.
94
+ /// @prop {Map} button-hover-arrow-color [igx-color: ('grays', 700)] - The previous/next buttons hover arrow color.
95
+ /// @prop {Map} button-disabled-arrow-color [igx-color: ('grays' 400)] - The previous/next buttons disabled color.
96
+ /// @prop {Map} indicator-dot-color [igx-color: 'surface', rgba: .6] - The idle indicator dot color.
97
+ /// @prop {Map} indicator-active-dot-color [igx-color: 'surface'] - The active indicator dot color.
98
+ /// @prop {Number} border-radius [0] - The border radius fraction, between 0-1 to be used for carousel.
99
+ ///
87
100
/// @requires {function} extend
88
101
/// @requires {map} $_light-carousel
102
+ /// @requires {map} $_default-shape-carousel
103
+ /// @requires {map} $_indigo-elevation-carousel
89
104
$_indigo-carousel : extend (
90
105
$_light-carousel ,
91
- $_square -shape-carousel ,
106
+ $_default -shape-carousel ,
92
107
$_indigo-elevation-carousel , (
93
108
variant : ' indigo-design' ,
94
109
95
110
button- background: (
96
- igx- color: #fff ,
111
+ igx- color: ' surface ' ,
97
112
rgba: .4
98
113
),
99
114
@@ -102,7 +117,7 @@ $_indigo-carousel: extend(
102
117
),
103
118
104
119
button- hover- background: (
105
- igx- color: #fff ,
120
+ igx- color: ' surface ' ,
106
121
rgba: .65 ,
107
122
),
108
123
@@ -117,11 +132,13 @@ $_indigo-carousel: extend(
117
132
),
118
133
119
134
indicator- dot- color: (
120
- igx- color: #fff ,
135
+ igx- color: ' surface ' ,
121
136
rgba: .6
122
137
),
123
138
124
- indicator- active- dot- color: #fff ,
139
+ indicator- active- dot- color:(
140
+ igx- color: ' surface'
141
+ ),
125
142
)
126
143
);
127
144
0 commit comments