mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 22:17:40 +08:00
chore(range): revert neutral point (#17550)
* Revert "fix(range): improved rtl support (#17479)" This reverts commit f832de5f4ac1e7db5a2a1c48ca7b85ad7ef671b5. revert range rtl support * Revert "feat(range): add neutral point (#17400)" This reverts commit 15acb4be37eef4d1c90229cf64fb836e249c225c. revert neutral point
This commit is contained in:
12
core/src/components.d.ts
vendored
12
core/src/components.d.ts
vendored
@ -3309,10 +3309,6 @@ export namespace Components {
|
||||
*/
|
||||
'name': string;
|
||||
/**
|
||||
* The neutral point of the range slider. Default: value is `0` or the `min` when `neutralPoint < min` or `max` when `max < neutralPoint`.
|
||||
*/
|
||||
'neutralPoint': number;
|
||||
/**
|
||||
* If `true`, a pin with integer value is shown when the knob is pressed.
|
||||
*/
|
||||
'pin': boolean;
|
||||
@ -3327,7 +3323,7 @@ export namespace Components {
|
||||
/**
|
||||
* the value of the range.
|
||||
*/
|
||||
'value': RangeValue | null;
|
||||
'value': RangeValue;
|
||||
}
|
||||
interface IonRangeAttributes extends StencilHTMLAttributes {
|
||||
/**
|
||||
@ -3363,10 +3359,6 @@ export namespace Components {
|
||||
*/
|
||||
'name'?: string;
|
||||
/**
|
||||
* The neutral point of the range slider. Default: value is `0` or the `min` when `neutralPoint < min` or `max` when `max < neutralPoint`.
|
||||
*/
|
||||
'neutralPoint'?: number;
|
||||
/**
|
||||
* Emitted when the range loses focus.
|
||||
*/
|
||||
'onIonBlur'?: (event: CustomEvent<void>) => void;
|
||||
@ -3393,7 +3385,7 @@ export namespace Components {
|
||||
/**
|
||||
* the value of the range.
|
||||
*/
|
||||
'value'?: RangeValue | null;
|
||||
'value'?: RangeValue;
|
||||
}
|
||||
|
||||
interface IonRefresherContent {
|
||||
|
Reference in New Issue
Block a user