Skip to content

Commit 0981ebf

Browse files
committed
docs(sassdoc): add suggested changes and fix all light component schemas
1 parent f22cc83 commit 0981ebf

File tree

116 files changed

+712
-735
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+712
-735
lines changed

projects/igniteui-angular/src/lib/core/styles/base/utilities/_bem.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,62 +314,71 @@ $bem--sep-mod-val: if(variable-exists(bem--sep-mod-val), $bem--sep-mod-val, '-')
314314
}
315315

316316
/// @alias bem-selector
317+
/// @see bem-selector
317318
@mixin bem($block, $e: null, $elem: null, $m: null, $mod: null, $mods: null) {
318319
#{bem-selector($block, $e: $e, $elem: $elem, $m: $m, $mod: $mod, $mods: $mods)} {
319320
@content;
320321
}
321322
}
322323

323324
/// @alias bem-block
325+
/// @see bem-block
324326
@mixin block($block) {
325327
@include bem-block($block) {
326328
@content;
327329
}
328330
}
329331

330332
/// @alias bem-elem
333+
/// @see bem-elem
331334
@mixin elem($elem, $m: null, $mod: null, $mods: null) {
332335
@include bem-elem($elem, $m: $m, $mod: $mod, $mods: $mods) {
333336
@content;
334337
}
335338
}
336339

337340
/// @alias bem-mod
341+
/// @see bem-mod
338342
@mixin mod($mod) {
339343
@include bem-mod($mod) {
340344
@content;
341345
}
342346
}
343347

344348
/// @alias bem-mods
349+
/// @see bem-mods
345350
@mixin mods($mods...) {
346351
@include bem-mods($mods...) {
347352
@content;
348353
}
349354
}
350355

351356
/// @alias bem-block
357+
/// @see bem-block
352358
@mixin b($block) {
353359
@include bem-block($block) {
354360
@content;
355361
}
356362
}
357363

358364
/// @alias bem-elem
365+
/// @see bem-elem
359366
@mixin e($elem, $m: null, $mod: null, $mods: null) {
360367
@include bem-elem($elem, $m: $m, $mod: $mod, $mods: $mods) {
361368
@content;
362369
}
363370
}
364371

365372
/// @alias bem-mod
373+
/// @see bem-mod
366374
@mixin m($mod) {
367375
@include bem-mod($mod) {
368376
@content;
369377
}
370378
}
371379

372380
/// @alias bem-mods
381+
/// @see bem-mods
373382
@mixin mx($mods...) {
374383
@include bem-mods($mods...) {
375384
@content;

projects/igniteui-angular/src/lib/core/styles/base/utilities/_functions.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,12 @@
143143
@return $rgba;
144144
}
145145

146+
/// Converts a rgba color to a hexidecimal color.
147+
///
148+
/// An alias of hexrgba.
149+
/// @access public
146150
/// @alias hexrgba
151+
/// @see hexrgba
147152
@function to-opaque($rgba, $background: #fff) {
148153
@return hexrgba($rgba, $background);
149154
}
@@ -272,7 +277,7 @@
272277
}
273278

274279
/// Extends a Map object with the properties of another Map object.
275-
/// @access private
280+
/// @access public
276281
/// @param {Map...} $maps - The source map to get extended.
277282
/// @returns {Map} - Returns the merged maps.
278283
@function extend($maps...) {

projects/igniteui-angular/src/lib/core/styles/themes/_palettes.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ $default-dark-palette: igx-palette(
7272
/// @access public
7373
/// @group palettes
7474
/// @alias default-palette
75+
/// @see $default-palette
7576
$light-palette: $default-palette;
7677

7778
/// Same as $light-palette but with modified grays and surface colors.

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_action-strip.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
////
44
/// @group schemas
5-
/// @access private
5+
/// @access public
66
/// @author <a href="https://github.com/desig9stein" target="_blank">Marin Popov</a>
77
////
88

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_avatar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import '../light/avatar';
22
////
33
/// @group schemas
4-
/// @access private
4+
/// @access public
55
/// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
66
////
77

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_badge.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
////
44
/// @group schemas
5-
/// @access private
5+
/// @access public
66
/// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
77
////
88

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_banner.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import '../light/banner';
22
////
33
/// @group schemas
4-
/// @access private
4+
/// @access public
55
/// @author <a href="https://github.com/desig9stein" target="_blank">Marin Popov</a>
66
////
77

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_bottom-nav.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import '../light/bottom-nav';
22
////
33
/// @group schemas
4-
/// @access private
4+
/// @access public
55
/// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
66
////
77

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_button-group.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import '../light/button-group';
22
////
33
/// @group schemas
4-
/// @access private
4+
/// @access public
55
/// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
66
////
77

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_button.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import '../light/button';
22
////
33
/// @group schemas
4-
/// @access private
4+
/// @access public
55
/// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
66
////
77

0 commit comments

Comments
 (0)