@enigmatry/scss-foundation 1.2.78 → 1.2.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/coverage/clover.xml +2 -2
- package/coverage/lcov-report/index.html +1 -1
- package/package.json +1 -1
- package/src/modules/layout/_grid.scss +4 -3
- package/src/modules/text/_modification.scss +1 -1
- package/tests/display/items.tests.scss +1 -1
- package/tests/layout/grid-core.tests.scss +1 -1
- package/tests/layout/grid.tests.scss +1 -1
- package/tests/lists/row-coloring.tests.scss +1 -1
- package/tests/position/absolute.tests.scss +1 -1
- package/tests/position/fixed.tests.scss +1 -1
- package/tests/position/set-position.tests.scss +1 -1
- package/tests/text/modification.tests.scss +1 -1
package/coverage/clover.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
2
|
+
<coverage generated="1685710678291" clover="3.2.0">
|
|
3
|
+
<project timestamp="1685710678291" name="All files">
|
|
4
4
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0" elements="0" coveredelements="0" complexity="0" loc="0" ncloc="0" packages="0" files="0" classes="0"/>
|
|
5
5
|
</project>
|
|
6
6
|
</coverage>
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
87
87
|
Code coverage generated by
|
|
88
88
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
89
|
-
at 2023-06-
|
|
89
|
+
at 2023-06-02T12:57:58.288Z
|
|
90
90
|
</div>
|
|
91
91
|
<script src="prettify.js"></script>
|
|
92
92
|
<script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enigmatry/scss-foundation",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.80",
|
|
4
4
|
"author": "Enigmatry",
|
|
5
5
|
"description": "Collection of SCSS utilities useful for the most of projects.",
|
|
6
6
|
"homepage": "https://github.com/enigmatry/entry-angular-building-blocks/tree/master/libs/scss-foundation#readme",
|
|
@@ -4,7 +4,8 @@ $breakpoints: () !default;
|
|
|
4
4
|
@use 'sass:map';
|
|
5
5
|
@use 'sass:math';
|
|
6
6
|
@use 'sass:meta';
|
|
7
|
-
@use '
|
|
7
|
+
@use '../../../node_modules/sass-true';
|
|
8
|
+
@use '../../../node_modules/sass-true/sass/throw';
|
|
8
9
|
@use '../../modules/variables' as vars;
|
|
9
10
|
@forward '../../modules/responsiveness/breakpoints' with (
|
|
10
11
|
$breakpoints: $breakpoints
|
|
@@ -21,7 +22,7 @@ $offset-prefix: 'offset-';
|
|
|
21
22
|
|
|
22
23
|
@mixin generate($spacing:0, $divisions: 12) {
|
|
23
24
|
@if meta.type-of($spacing) != number {
|
|
24
|
-
@include
|
|
25
|
+
@include throw.error(
|
|
25
26
|
$message: 'Please provide number parameter! Given value: ' + $spacing,
|
|
26
27
|
$source: 'generate($spacing, $divisions)',
|
|
27
28
|
$catch: vars.$testing
|
|
@@ -29,7 +30,7 @@ $offset-prefix: 'offset-';
|
|
|
29
30
|
}
|
|
30
31
|
@else {
|
|
31
32
|
@if ((meta.type-of($divisions) != number) or (($divisions < 2) or ($divisions > 1000))) {
|
|
32
|
-
@include
|
|
33
|
+
@include throw.error(
|
|
33
34
|
$message: 'Please provide positive number for divisions, between 2 and 1000! Given value: ' + $divisions,
|
|
34
35
|
$source: 'generate($spacing, $divisions)',
|
|
35
36
|
$catch: vars.$testing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* stylelint-disable declaration-block-no-redundant-longhand-properties */
|
|
2
2
|
/* stylelint-disable shorthand-property-no-redundant-values */
|
|
3
|
-
@use 'true';
|
|
3
|
+
@use '../../node_modules/sass-true/sass/true';
|
|
4
4
|
@use '../../src/modules/position/absolute';
|
|
5
5
|
|
|
6
6
|
@include true.describe('position($top, $right, $bottom, $left)') {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* stylelint-disable declaration-block-no-redundant-longhand-properties */
|
|
2
2
|
/* stylelint-disable shorthand-property-no-redundant-values */
|
|
3
|
-
@use 'true';
|
|
3
|
+
@use '../../node_modules/sass-true/sass/true';
|
|
4
4
|
@use '../../src/modules/position/fixed';
|
|
5
5
|
|
|
6
6
|
@include true.describe('position($top, $right, $bottom, $left)') {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* stylelint-disable declaration-block-no-redundant-longhand-properties */
|
|
2
|
-
@use 'true';
|
|
2
|
+
@use '../../node_modules/sass-true/sass/true';
|
|
3
3
|
@use '../../src/modules/position/set-position' as position;
|
|
4
4
|
|
|
5
5
|
@include true.describe('set-position($top, $right, $bottom, $left, $position)') {
|