mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
feat(range): add reference point for start position of range slider (#25598)
Resolves #24348 Co-authored-by: Sachin Garg <sg@rawzor.com>
This commit is contained in:
8
core/src/components.d.ts
vendored
8
core/src/components.d.ts
vendored
@ -2076,6 +2076,10 @@ export namespace Components {
|
||||
"value"?: any | null;
|
||||
}
|
||||
interface IonRange {
|
||||
/**
|
||||
* The start position of the range active bar. This feature is only available with a single knob (dualKnobs="false"). Valid values are greater than or equal to the min value and less than or equal to the max value.
|
||||
*/
|
||||
"activeBarStart"?: number;
|
||||
/**
|
||||
* The color to use from your application's color palette. Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`. For more information on colors, see [theming](/docs/theming/basics).
|
||||
*/
|
||||
@ -5961,6 +5965,10 @@ declare namespace LocalJSX {
|
||||
"value"?: any | null;
|
||||
}
|
||||
interface IonRange {
|
||||
/**
|
||||
* The start position of the range active bar. This feature is only available with a single knob (dualKnobs="false"). Valid values are greater than or equal to the min value and less than or equal to the max value.
|
||||
*/
|
||||
"activeBarStart"?: number;
|
||||
/**
|
||||
* The color to use from your application's color palette. Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`. For more information on colors, see [theming](/docs/theming/basics).
|
||||
*/
|
||||
|
Reference in New Issue
Block a user