mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
fix(col): handle RTL offset-*, pull-*, and push-* (#16702)
This commit is contained in:

committed by
Adam Bradley

parent
48ab42f8ad
commit
6d6472baf5
72
core/src/components.d.ts
vendored
72
core/src/components.d.ts
vendored
@ -828,75 +828,75 @@ export namespace Components {
|
||||
|
||||
interface IonCol {
|
||||
/**
|
||||
* The amount to offset the column, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offset'?: string;
|
||||
/**
|
||||
* The amount to offset the column for lg screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for lg screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetLg'?: string;
|
||||
/**
|
||||
* The amount to offset the column for md screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for md screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetMd'?: string;
|
||||
/**
|
||||
* The amount to offset the column for sm screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for sm screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetSm'?: string;
|
||||
/**
|
||||
* The amount to offset the column for xl screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for xl screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetXl'?: string;
|
||||
/**
|
||||
* The amount to offset the column for xs screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for xs screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetXs'?: string;
|
||||
/**
|
||||
* The amount to pull the column, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pull'?: string;
|
||||
/**
|
||||
* The amount to pull the column for lg screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for lg screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullLg'?: string;
|
||||
/**
|
||||
* The amount to pull the column for md screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for md screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullMd'?: string;
|
||||
/**
|
||||
* The amount to pull the column for sm screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for sm screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullSm'?: string;
|
||||
/**
|
||||
* The amount to pull the column for xl screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for xl screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullXl'?: string;
|
||||
/**
|
||||
* The amount to pull the column for xs screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for xs screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullXs'?: string;
|
||||
/**
|
||||
* The amount to push the column, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'push'?: string;
|
||||
/**
|
||||
* The amount to push the column for lg screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for lg screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushLg'?: string;
|
||||
/**
|
||||
* The amount to push the column for md screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for md screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushMd'?: string;
|
||||
/**
|
||||
* The amount to push the column for sm screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for sm screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushSm'?: string;
|
||||
/**
|
||||
* The amount to push the column for xl screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for xl screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushXl'?: string;
|
||||
/**
|
||||
* The amount to push the column for xs screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for xs screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushXs'?: string;
|
||||
/**
|
||||
@ -926,75 +926,75 @@ export namespace Components {
|
||||
}
|
||||
interface IonColAttributes extends StencilHTMLAttributes {
|
||||
/**
|
||||
* The amount to offset the column, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offset'?: string;
|
||||
/**
|
||||
* The amount to offset the column for lg screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for lg screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetLg'?: string;
|
||||
/**
|
||||
* The amount to offset the column for md screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for md screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetMd'?: string;
|
||||
/**
|
||||
* The amount to offset the column for sm screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for sm screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetSm'?: string;
|
||||
/**
|
||||
* The amount to offset the column for xl screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for xl screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetXl'?: string;
|
||||
/**
|
||||
* The amount to offset the column for xs screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to offset the column for xs screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'offsetXs'?: string;
|
||||
/**
|
||||
* The amount to pull the column, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pull'?: string;
|
||||
/**
|
||||
* The amount to pull the column for lg screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for lg screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullLg'?: string;
|
||||
/**
|
||||
* The amount to pull the column for md screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for md screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullMd'?: string;
|
||||
/**
|
||||
* The amount to pull the column for sm screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for sm screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullSm'?: string;
|
||||
/**
|
||||
* The amount to pull the column for xl screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for xl screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullXl'?: string;
|
||||
/**
|
||||
* The amount to pull the column for xs screens, in terms of how many columns it should shift to the left of the total available.
|
||||
* The amount to pull the column for xs screens, in terms of how many columns it should shift to the start of the total available.
|
||||
*/
|
||||
'pullXs'?: string;
|
||||
/**
|
||||
* The amount to push the column, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'push'?: string;
|
||||
/**
|
||||
* The amount to push the column for lg screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for lg screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushLg'?: string;
|
||||
/**
|
||||
* The amount to push the column for md screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for md screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushMd'?: string;
|
||||
/**
|
||||
* The amount to push the column for sm screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for sm screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushSm'?: string;
|
||||
/**
|
||||
* The amount to push the column for xl screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for xl screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushXl'?: string;
|
||||
/**
|
||||
* The amount to push the column for xs screens, in terms of how many columns it should shift to the right of the total available.
|
||||
* The amount to push the column for xs screens, in terms of how many columns it should shift to the end of the total available.
|
||||
*/
|
||||
'pushXs'?: string;
|
||||
/**
|
||||
|
Reference in New Issue
Block a user