matcha-components 20.50.0 → 20.52.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/fesm2022/matcha-components.mjs +487 -476
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +4 -2
- package/package.json +1 -1
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
|
-
|
|
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;
|