igniteui-theming 3.3.0-beta.4 → 3.3.1
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1",
|
|
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": {
|
|
@@ -1556,11 +1556,12 @@ $indigo-flat-button: extend(
|
|
|
1556
1556
|
/// @prop {Map} focus-border-color [color: 'gray'] - The focus border color of a outlined button.
|
|
1557
1557
|
/// @prop {Map} focus-visible-border-color [color: 'gray'] - The focus-visible border color of a outlined button.
|
|
1558
1558
|
/// @prop {Map} active-border-color [color: 'gray'] - The active border color of a outlined button.
|
|
1559
|
-
/// @prop {Color} active-background [transparent] - The active background color of a
|
|
1560
|
-
/// @prop {Color} active-foreground [color: ('gray', 900)] - The active text color of a
|
|
1559
|
+
/// @prop {Color} active-background [transparent] - The active background color of a outlined button.
|
|
1560
|
+
/// @prop {Color} active-foreground [color: ('gray', 900)] - The active text color of a outlined button.
|
|
1561
1561
|
/// @prop {Map} shadow-color [color: ('gray', 300)] - The shadow color of a outlined button.
|
|
1562
1562
|
/// @prop {Color} disabled-background [transparent] - The disabled background color of a outlined button.
|
|
1563
|
-
/// @prop {List} border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for
|
|
1563
|
+
/// @prop {List} border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the outlined button.
|
|
1564
|
+
/// @prop {List} size [(rem(28px), rem(32px), rem(36px))] - The size used for the outlined button.
|
|
1564
1565
|
/// @requires {Map} $material-outlined-button
|
|
1565
1566
|
/// @requires {Map} $indigo-base-button
|
|
1566
1567
|
$indigo-outlined-button: extend(
|
|
@@ -1636,6 +1637,13 @@ $indigo-outlined-button: extend(
|
|
|
1636
1637
|
rem(20px),
|
|
1637
1638
|
),
|
|
1638
1639
|
),
|
|
1640
|
+
size: (
|
|
1641
|
+
sizable: (
|
|
1642
|
+
rem(28px),
|
|
1643
|
+
rem(32px),
|
|
1644
|
+
rem(36px),
|
|
1645
|
+
),
|
|
1646
|
+
),
|
|
1639
1647
|
)
|
|
1640
1648
|
);
|
|
1641
1649
|
|
|
@@ -1649,7 +1657,8 @@ $indigo-outlined-button: extend(
|
|
|
1649
1657
|
/// @prop {Map} focus-visible-foreground [ color: ('gray', 50)] - The focus-visible text color of a raised button.
|
|
1650
1658
|
/// @prop {Map} active-background [color: ('gray', 50)] - The active background color of a raised button.
|
|
1651
1659
|
/// @prop {Map} shadow-color [color: ('primary', 200)] - The shadow color of a raised button.
|
|
1652
|
-
/// @prop {List} border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for
|
|
1660
|
+
/// @prop {List} border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the raised button.
|
|
1661
|
+
/// @prop {List} size [(rem(28px), rem(32px), rem(36px))] - The size used for the raised button.
|
|
1653
1662
|
/// @requires {Map} $material-raised-button
|
|
1654
1663
|
/// @requires {Map} $indigo-base-button
|
|
1655
1664
|
$indigo-raised-button: extend(
|
|
@@ -1717,6 +1726,13 @@ $indigo-raised-button: extend(
|
|
|
1717
1726
|
rem(20px),
|
|
1718
1727
|
),
|
|
1719
1728
|
),
|
|
1729
|
+
size: (
|
|
1730
|
+
sizable: (
|
|
1731
|
+
rem(28px),
|
|
1732
|
+
rem(32px),
|
|
1733
|
+
rem(36px),
|
|
1734
|
+
),
|
|
1735
|
+
),
|
|
1720
1736
|
)
|
|
1721
1737
|
);
|
|
1722
1738
|
|
|
@@ -1792,6 +1808,7 @@ $indigo-fab-button: extend(
|
|
|
1792
1808
|
/// @prop {Map} focus-visible-border-color [color: ('gray' 300)] - The focus-visible border color of the button.
|
|
1793
1809
|
/// @prop {Map} active-border-color [color: ('gray' 300)] - The active border color of the button.
|
|
1794
1810
|
/// @prop {List} size [(rem(28px), rem(32px), rem(36px))] - The size used for the icon button.
|
|
1811
|
+
/// @prop {Number} default-size [2] - The default size used for the icon button component.
|
|
1795
1812
|
/// @requires {Map} $material-icon-button
|
|
1796
1813
|
/// @requires {Map} $indigo-base-button
|
|
1797
1814
|
$indigo-icon-button: extend(
|
|
@@ -1855,6 +1872,7 @@ $indigo-icon-button: extend(
|
|
|
1855
1872
|
rem(36px),
|
|
1856
1873
|
),
|
|
1857
1874
|
),
|
|
1875
|
+
default-size: 2,
|
|
1858
1876
|
)
|
|
1859
1877
|
);
|
|
1860
1878
|
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
/// @prop {Map} disabled-foreground [color: ('gray', 500)] - The disabled foreground color of the material icon button.
|
|
22
22
|
/// @prop {List} border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the material icon button.
|
|
23
23
|
/// @prop {List} size [(rem(24px), rem(30px), rem(36px))] - The size used for the material icon button.
|
|
24
|
+
/// @prop {Number} default-size [2] - The default size used for the icon button.
|
|
24
25
|
$material-base-icon-button: (
|
|
25
26
|
background: transparent,
|
|
26
27
|
border-color: transparent,
|
|
@@ -69,6 +70,7 @@ $material-base-icon-button: (
|
|
|
69
70
|
rem(36px),
|
|
70
71
|
),
|
|
71
72
|
),
|
|
73
|
+
default-size: 2,
|
|
72
74
|
);
|
|
73
75
|
|
|
74
76
|
/// Generates a material flat icon button schema.
|
|
@@ -153,6 +155,7 @@ $light-icon-button: (
|
|
|
153
155
|
/// @prop {Map} disabled-foreground [color: ('gray', 400)] - The disabled foreground color of the fluent icon button.
|
|
154
156
|
/// @prop {List} border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for the fluent flat icon button.
|
|
155
157
|
/// @prop {List} size [(rem(24px), rem(32px), rem(38px))] - The size used for the fluent icon button.
|
|
158
|
+
/// @prop {Number} default-size [2] - The default size used for the icon button.
|
|
156
159
|
$fluent-base-icon-button: (
|
|
157
160
|
background: transparent,
|
|
158
161
|
foreground: (
|
|
@@ -211,6 +214,7 @@ $fluent-base-icon-button: (
|
|
|
211
214
|
rem(38px),
|
|
212
215
|
),
|
|
213
216
|
),
|
|
217
|
+
default-size: 2,
|
|
214
218
|
);
|
|
215
219
|
|
|
216
220
|
/// Generates a fluent flat icon button schema.
|
|
@@ -339,6 +343,7 @@ $fluent-icon-button: (
|
|
|
339
343
|
/// @prop {Map} disabled-foreground [color: ('primary', 100)] - The disabled foreground color of the bootstrap icon button.
|
|
340
344
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for the bootstrap icon button.
|
|
341
345
|
/// @prop {List} size [(rem(31px), rem(38px), rem(48px))] - The size used for the bootstrap icon button.
|
|
346
|
+
/// @prop {Number} default-size [2] - The default size used for the icon button
|
|
342
347
|
$bootstrap-base-icon-button: (
|
|
343
348
|
background: transparent,
|
|
344
349
|
foreground: (
|
|
@@ -374,6 +379,7 @@ $bootstrap-base-icon-button: (
|
|
|
374
379
|
rem(48px),
|
|
375
380
|
),
|
|
376
381
|
),
|
|
382
|
+
default-size: 2,
|
|
377
383
|
);
|
|
378
384
|
|
|
379
385
|
/// Generates a bootstrap flat icon button schema.
|
|
@@ -533,6 +539,7 @@ $bootstrap-icon-button: (
|
|
|
533
539
|
/// @prop {Map} disabled-foreground [color: ('gray', 400)] - The disabled foreground color of the indigo icon button.
|
|
534
540
|
/// @prop {List} border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the indigo icon button.
|
|
535
541
|
/// @prop {List} size [(rem(28px), rem(32px), rem(36px))] - The size used for the indigo icon button.
|
|
542
|
+
/// @prop {Number} default-size [2] - The default size used for the icon button.
|
|
536
543
|
$indigo-base-icon-button: (
|
|
537
544
|
background: transparent,
|
|
538
545
|
foreground: (
|
|
@@ -569,6 +576,7 @@ $indigo-base-icon-button: (
|
|
|
569
576
|
rem(36px),
|
|
570
577
|
),
|
|
571
578
|
),
|
|
579
|
+
default-size: 2,
|
|
572
580
|
);
|
|
573
581
|
|
|
574
582
|
/// Generates an indigo flat icon button schema.
|