matcha-components 20.50.0 → 20.53.0

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/index.d.ts CHANGED
@@ -1525,7 +1525,6 @@ interface SliderOptions {
1525
1525
  ceil?: number;
1526
1526
  step?: number;
1527
1527
  disabled?: boolean;
1528
- range?: boolean;
1529
1528
  pushRange?: boolean;
1530
1529
  noSwitching?: boolean;
1531
1530
  minRange?: number;
@@ -1564,7 +1563,9 @@ declare class MatchaSliderComponent implements ControlValueAccessor, OnInit, OnD
1564
1563
  private cdr;
1565
1564
  private elementRef;
1566
1565
  value: number;
1567
- highValue: number;
1566
+ private _highValue;
1567
+ set highValue(val: number);
1568
+ get highValue(): number;
1568
1569
  options: SliderOptions;
1569
1570
  color: string;
1570
1571
  disabled: boolean | string;
@@ -1578,6 +1579,7 @@ declare class MatchaSliderComponent implements ControlValueAccessor, OnInit, OnD
1578
1579
  private draggingPointer;
1579
1580
  private lastUpdateTime;
1580
1581
  private animationFrameId;
1582
+ private isRangeInternal;
1581
1583
  private readonly defaultOptions;
1582
1584
  private onChange;
1583
1585
  private onTouched;
@@ -1590,6 +1592,7 @@ declare class MatchaSliderComponent implements ControlValueAccessor, OnInit, OnD
1590
1592
  get highPercentage(): number;
1591
1593
  get selectionBarStyle(): any;
1592
1594
  get isAtMaxValue(): boolean;
1595
+ get isAtMinValue(): boolean;
1593
1596
  get isDisabled(): boolean;
1594
1597
  ngOnInit(): void;
1595
1598
  ngOnDestroy(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matcha-components",
3
- "version": "20.50.0",
3
+ "version": "20.53.0",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.3.0"