You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The amount to pull the column, in terms of how many columns it should shift to the start of the total available.
931
+
* The order of the column, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
932
932
*/
933
-
"pull"?: string;
933
+
"order"?: string;
934
934
/**
935
-
* 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.
935
+
* The order of the column for lg screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
936
936
*/
937
-
"pullLg"?: string;
937
+
"orderLg"?: string;
938
938
/**
939
-
* 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.
939
+
* The order of the column for md screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
940
940
*/
941
-
"pullMd"?: string;
941
+
"orderMd"?: string;
942
942
/**
943
-
* 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.
943
+
* The order of the column for sm screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
944
944
*/
945
-
"pullSm"?: string;
945
+
"orderSm"?: string;
946
946
/**
947
-
* 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.
947
+
* The order of the column for xl screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
948
948
*/
949
-
"pullXl"?: string;
949
+
"orderXl"?: string;
950
950
/**
951
-
* 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.
951
+
* The order of the column for xs screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
952
952
*/
953
-
"pullXs"?: string;
954
-
/**
955
-
* The amount to push the column, in terms of how many columns it should shift to the end of the total available.
956
-
*/
957
-
"push"?: string;
958
-
/**
959
-
* 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.
960
-
*/
961
-
"pushLg"?: string;
962
-
/**
963
-
* 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.
964
-
*/
965
-
"pushMd"?: string;
966
-
/**
967
-
* 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.
968
-
*/
969
-
"pushSm"?: string;
970
-
/**
971
-
* 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.
972
-
*/
973
-
"pushXl"?: string;
974
-
/**
975
-
* 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.
976
-
*/
977
-
"pushXs"?: string;
953
+
"orderXs"?: string;
978
954
/**
979
955
* The size of the column, in terms of how many columns it should take up out of the total available. If `"auto"` is passed, the column will be the size of its content.
* The amount to pull the column, in terms of how many columns it should shift to the start of the total available.
6866
-
*/
6867
-
"pull"?: string;
6868
-
/**
6869
-
* 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.
6870
-
*/
6871
-
"pullLg"?: string;
6872
-
/**
6873
-
* 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.
6874
-
*/
6875
-
"pullMd"?: string;
6876
-
/**
6877
-
* 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.
6878
-
*/
6879
-
"pullSm"?: string;
6880
-
/**
6881
-
* 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.
6882
-
*/
6883
-
"pullXl"?: string;
6884
-
/**
6885
-
* 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.
6886
-
*/
6887
-
"pullXs"?: string;
6888
-
/**
6889
-
* The amount to push the column, in terms of how many columns it should shift to the end of the total available.
6841
+
* The order of the column, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
6890
6842
*/
6891
-
"push"?: string;
6843
+
"order"?: string;
6892
6844
/**
6893
-
* 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.
6845
+
* The order of the column for lg screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
6894
6846
*/
6895
-
"pushLg"?: string;
6847
+
"orderLg"?: string;
6896
6848
/**
6897
-
* 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.
6849
+
* The order of the column for md screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
6898
6850
*/
6899
-
"pushMd"?: string;
6851
+
"orderMd"?: string;
6900
6852
/**
6901
-
* 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.
6853
+
* The order of the column for sm screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
6902
6854
*/
6903
-
"pushSm"?: string;
6855
+
"orderSm"?: string;
6904
6856
/**
6905
-
* 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.
6857
+
* The order of the column for xl screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
6906
6858
*/
6907
-
"pushXl"?: string;
6859
+
"orderXl"?: string;
6908
6860
/**
6909
-
* 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.
6861
+
* The order of the column for xs screens, in terms of where the column should position itself in the columns renderer. If no value is passed, the column order implicit value will be the order in the html structure.
6910
6862
*/
6911
-
"pushXs"?: string;
6863
+
"orderXs"?: string;
6912
6864
/**
6913
6865
* The size of the column, in terms of how many columns it should take up out of the total available. If `"auto"` is passed, the column will be the size of its content.
0 commit comments