igniteui-theming 3.1.0-beta.3 → 3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "3.1.0-beta.3",
3
+ "version": "3.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": {
@@ -400,8 +400,20 @@ $light-stepper: (
400
400
  ),
401
401
  step-separator-style: 'dashed',
402
402
  complete-step-separator-style: 'solid',
403
- border-radius-indicator: (rem(100px), rem(0), rem(100px)),
404
- border-radius-step-header: (rem(0), rem(0), rem(100px))
403
+ border-radius-indicator: (
404
+ border-radius: (
405
+ rem(100px),
406
+ rem(0),
407
+ rem(100px),
408
+ ),
409
+ ),
410
+ border-radius-step-header: (
411
+ border-radius: (
412
+ rem(0),
413
+ rem(0),
414
+ rem(100px),
415
+ ),
416
+ )
405
417
  );
406
418
 
407
419
  /// Generates a fluent stepper schema.
@@ -456,14 +468,18 @@ $fluent-stepper: extend(
456
468
  disabled-indicator-background: transparent,
457
469
  disabled-indicator-outline: transparent,
458
470
  border-radius-indicator: (
459
- rem(2px),
460
- rem(0),
461
- rem(100px),
471
+ border-radius: (
472
+ rem(2px),
473
+ rem(0),
474
+ rem(100px),
475
+ ),
462
476
  ),
463
477
  border-radius-step-header: (
464
- rem(2px),
465
- rem(0),
466
- rem(100px),
478
+ border-radius: (
479
+ rem(2px),
480
+ rem(0),
481
+ rem(100px),
482
+ ),
467
483
  ),
468
484
  )
469
485
  );
@@ -615,14 +631,18 @@ $bootstrap-stepper: extend(
615
631
  step-separator-style: 'solid',
616
632
  complete-step-separator-style: 'solid',
617
633
  border-radius-indicator: (
618
- rem(2px),
619
- rem(0),
620
- rem(100px),
634
+ border-radius: (
635
+ rem(2px),
636
+ rem(0),
637
+ rem(100px),
638
+ ),
621
639
  ),
622
640
  border-radius-step-header: (
623
- rem(2px),
624
- rem(0),
625
- rem(100px),
641
+ border-radius: (
642
+ rem(2px),
643
+ rem(0),
644
+ rem(100px),
645
+ ),
626
646
  ),
627
647
  )
628
648
  );