igniteui-theming 2.1.0-beta.3 → 2.1.0-beta.4
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/package.json +1 -1
- package/sass/themes/_functions.scss +8 -0
- package/sass/themes/schemas/components/light/_avatar.scss +5 -3
- package/sass/themes/schemas/components/light/_button.scss +5 -3
- package/sass/themes/schemas/components/light/_chip.scss +5 -3
- package/sass/themes/schemas/components/light/_drop-down.scss +5 -3
- package/sass/themes/schemas/components/light/_grid-toolbar.scss +5 -3
- package/sass/themes/schemas/components/light/_grid.scss +15 -9
- package/sass/themes/schemas/components/light/_icon.scss +5 -3
- package/sass/themes/schemas/components/light/_input-group.scss +5 -3
- package/sass/themes/schemas/components/light/_pagination.scss +5 -3
- package/sass/themes/schemas/components/light/_tree.scss +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.4",
|
|
4
4
|
"description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
@each $fn, $args in $instructions {
|
|
66
66
|
$color: meta.function-exists($fn, $module: color);
|
|
67
67
|
$util: meta.function-exists($fn, $module: utils);
|
|
68
|
+
$self: meta.function-exists($fn);
|
|
68
69
|
|
|
69
70
|
@if $color {
|
|
70
71
|
$func: meta.get-function($fn, $module: color);
|
|
@@ -85,6 +86,13 @@
|
|
|
85
86
|
$result: meta.call($func, $result, $args...);
|
|
86
87
|
}
|
|
87
88
|
}
|
|
89
|
+
|
|
90
|
+
@if $self {
|
|
91
|
+
@if $fn == 'sizable' {
|
|
92
|
+
$func: meta.get-function($fn);
|
|
93
|
+
$result: meta.call($func, $args...);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
88
96
|
}
|
|
89
97
|
|
|
90
98
|
@return $result;
|
|
@@ -636,21 +636,27 @@ $light-grid: extend(
|
|
|
636
636
|
),
|
|
637
637
|
|
|
638
638
|
header-size: (
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
639
|
+
sizable: (
|
|
640
|
+
rem(32px),
|
|
641
|
+
rem(40px),
|
|
642
|
+
rem(50px),
|
|
643
|
+
),
|
|
642
644
|
),
|
|
643
645
|
|
|
644
646
|
drop-area-size: (
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
647
|
+
sizable: (
|
|
648
|
+
rem(24px),
|
|
649
|
+
rem(24px),
|
|
650
|
+
rem(32px),
|
|
651
|
+
),
|
|
648
652
|
),
|
|
649
653
|
|
|
650
654
|
group-area-size: (
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
655
|
+
sizable: (
|
|
656
|
+
rem(41px),
|
|
657
|
+
rem(49px),
|
|
658
|
+
rem(57px),
|
|
659
|
+
),
|
|
654
660
|
),
|
|
655
661
|
)
|
|
656
662
|
);
|