@ionic/core 8.7.4-dev.11757059097.1bf52e75 → 8.7.4-dev.11757091109.1d47c1bd
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/components/ion-card-content.js +2 -3
- package/components/ion-col.js +48 -47
- package/components/ion-datetime.js +3 -22
- package/components/ion-input-otp.js +4 -5
- package/components/ion-input.js +4 -5
- package/components/ion-row.js +1 -1
- package/components/ion-textarea.js +4 -5
- package/dist/cjs/ion-card_5.cjs.entry.js +1 -1
- package/dist/cjs/ion-col_3.cjs.entry.js +42 -48
- package/dist/cjs/ion-datetime_3.cjs.entry.js +3 -22
- package/dist/cjs/ion-input-otp.cjs.entry.js +3 -3
- package/dist/cjs/ion-input.cjs.entry.js +3 -3
- package/dist/cjs/ion-textarea.cjs.entry.js +3 -3
- package/dist/cjs/ionic.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/card-content/card-content.js +1 -2
- package/dist/collection/components/col/col.css +171 -4
- package/dist/collection/components/col/col.js +203 -58
- package/dist/collection/components/datetime/datetime.js +3 -22
- package/dist/collection/components/input/input.js +1 -1
- package/dist/collection/components/input-otp/input-otp.js +1 -1
- package/dist/collection/components/row/row.css +2 -0
- package/dist/collection/components/textarea/textarea.js +1 -1
- package/dist/docs.json +250 -17
- package/dist/esm/ion-card_5.entry.js +1 -1
- package/dist/esm/ion-col_3.entry.js +43 -49
- package/dist/esm/ion-datetime_3.entry.js +3 -22
- package/dist/esm/ion-input-otp.entry.js +3 -3
- package/dist/esm/ion-input.entry.js +3 -3
- package/dist/esm/ion-textarea.entry.js +3 -3
- package/dist/esm/ionic.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/html.html-data.json +24 -0
- package/dist/ionic/ionic.esm.js +1 -1
- package/dist/ionic/p-0edc2fcf.entry.js +4 -0
- package/dist/ionic/p-417569b5.entry.js +4 -0
- package/dist/ionic/p-80faabb9.entry.js +4 -0
- package/dist/ionic/p-9af1c2e0.entry.js +4 -0
- package/dist/ionic/{p-19bda0d1.entry.js → p-b8c602ec.entry.js} +1 -1
- package/dist/ionic/p-dc2f441a.entry.js +4 -0
- package/dist/types/components/col/col.d.ts +48 -5
- package/dist/types/components/datetime/datetime.d.ts +0 -2
- package/dist/types/components.d.ts +72 -0
- package/hydrate/index.js +105 -124
- package/hydrate/index.mjs +105 -124
- package/package.json +1 -1
- package/dist/ionic/p-1224cc8f.entry.js +0 -4
- package/dist/ionic/p-3f780ab8.entry.js +0 -4
- package/dist/ionic/p-6935c9f1.entry.js +0 -4
- package/dist/ionic/p-d38b7cdc.entry.js +0 -4
- package/dist/ionic/p-dc66e8cc.entry.js +0 -4
|
@@ -4,6 +4,7 @@ import type { ComponentInterface } from '../../stencil-public-runtime';
|
|
|
4
4
|
* @virtualProp {"ios" | "md" | "ionic"} theme - The theme determines the visual appearance of the component.
|
|
5
5
|
*/
|
|
6
6
|
export declare class Col implements ComponentInterface {
|
|
7
|
+
el: HTMLIonColElement;
|
|
7
8
|
/**
|
|
8
9
|
* The amount to offset the column, in terms of how many columns it should shift to the end
|
|
9
10
|
* of the total available.
|
|
@@ -34,64 +35,106 @@ export declare class Col implements ComponentInterface {
|
|
|
34
35
|
* to the end of the total available.
|
|
35
36
|
*/
|
|
36
37
|
offsetXl?: string;
|
|
38
|
+
/**
|
|
39
|
+
* The order of the column, in terms of where the column should position itself in the columns renderer.
|
|
40
|
+
* If no value is passed, the column order implicit value will be the order in the html structure.
|
|
41
|
+
*/
|
|
42
|
+
order?: string;
|
|
43
|
+
/**
|
|
44
|
+
* The order of the column for xs screens, in terms of where the column should position itself in the columns renderer.
|
|
45
|
+
* If no value is passed, the column order implicit value will be the order in the html structure.
|
|
46
|
+
*/
|
|
47
|
+
orderXs?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The order of the column for sm screens, in terms of where the column should position itself in the columns renderer.
|
|
50
|
+
* If no value is passed, the column order implicit value will be the order in the html structure.
|
|
51
|
+
*/
|
|
52
|
+
orderSm?: string;
|
|
53
|
+
/**
|
|
54
|
+
* The order of the column for md screens, in terms of where the column should position itself in the columns renderer.
|
|
55
|
+
* If no value is passed, the column order implicit value will be the order in the html structure.
|
|
56
|
+
*/
|
|
57
|
+
orderMd?: string;
|
|
58
|
+
/**
|
|
59
|
+
* The order of the column for lg screens, in terms of where the column should position itself in the columns renderer.
|
|
60
|
+
* If no value is passed, the column order implicit value will be the order in the html structure.
|
|
61
|
+
*/
|
|
62
|
+
orderLg?: string;
|
|
63
|
+
/**
|
|
64
|
+
* The order of the column for xl screens, in terms of where the column should position itself in the columns renderer.
|
|
65
|
+
* If no value is passed, the column order implicit value will be the order in the html structure.
|
|
66
|
+
*/
|
|
67
|
+
orderXl?: string;
|
|
37
68
|
/**
|
|
38
69
|
* The amount to pull the column, in terms of how many columns it should shift to the start of
|
|
39
70
|
* the total available.
|
|
71
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
40
72
|
*/
|
|
41
73
|
pull?: string;
|
|
42
74
|
/**
|
|
43
75
|
* The amount to pull the column for xs screens, in terms of how many columns it should shift
|
|
44
76
|
* to the start of the total available.
|
|
77
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
45
78
|
*/
|
|
46
79
|
pullXs?: string;
|
|
47
80
|
/**
|
|
48
81
|
* The amount to pull the column for sm screens, in terms of how many columns it should shift
|
|
49
82
|
* to the start of the total available.
|
|
83
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
50
84
|
*/
|
|
51
85
|
pullSm?: string;
|
|
52
86
|
/**
|
|
53
87
|
* The amount to pull the column for md screens, in terms of how many columns it should shift
|
|
54
88
|
* to the start of the total available.
|
|
89
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
55
90
|
*/
|
|
56
91
|
pullMd?: string;
|
|
57
92
|
/**
|
|
58
93
|
* The amount to pull the column for lg screens, in terms of how many columns it should shift
|
|
59
94
|
* to the start of the total available.
|
|
95
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
60
96
|
*/
|
|
61
97
|
pullLg?: string;
|
|
62
98
|
/**
|
|
63
99
|
* The amount to pull the column for xl screens, in terms of how many columns it should shift
|
|
64
100
|
* to the start of the total available.
|
|
101
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
65
102
|
*/
|
|
66
103
|
pullXl?: string;
|
|
67
104
|
/**
|
|
68
105
|
* The amount to push the column, in terms of how many columns it should shift to the end
|
|
69
106
|
* of the total available.
|
|
107
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
70
108
|
*/
|
|
71
109
|
push?: string;
|
|
72
110
|
/**
|
|
73
111
|
* The amount to push the column for xs screens, in terms of how many columns it should shift
|
|
74
112
|
* to the end of the total available.
|
|
113
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
75
114
|
*/
|
|
76
115
|
pushXs?: string;
|
|
77
116
|
/**
|
|
78
117
|
* The amount to push the column for sm screens, in terms of how many columns it should shift
|
|
79
118
|
* to the end of the total available.
|
|
119
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
80
120
|
*/
|
|
81
121
|
pushSm?: string;
|
|
82
122
|
/**
|
|
83
123
|
* The amount to push the column for md screens, in terms of how many columns it should shift
|
|
84
124
|
* to the end of the total available.
|
|
125
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
85
126
|
*/
|
|
86
127
|
pushMd?: string;
|
|
87
128
|
/**
|
|
88
129
|
* The amount to push the column for lg screens, in terms of how many columns it should shift
|
|
89
130
|
* to the end of the total available.
|
|
131
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
90
132
|
*/
|
|
91
133
|
pushLg?: string;
|
|
92
134
|
/**
|
|
93
135
|
* The amount to push the column for xl screens, in terms of how many columns it should shift
|
|
94
136
|
* to the end of the total available.
|
|
137
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
95
138
|
*/
|
|
96
139
|
pushXl?: string;
|
|
97
140
|
/**
|
|
@@ -126,10 +169,10 @@ export declare class Col implements ComponentInterface {
|
|
|
126
169
|
sizeXl?: string;
|
|
127
170
|
onResize(): void;
|
|
128
171
|
private getColumns;
|
|
129
|
-
private
|
|
130
|
-
private
|
|
131
|
-
private
|
|
132
|
-
private
|
|
133
|
-
|
|
172
|
+
private getStyleClass;
|
|
173
|
+
private getSizeClass;
|
|
174
|
+
private getOrderClass;
|
|
175
|
+
private getOffsetClass;
|
|
176
|
+
componentDidLoad(): void;
|
|
134
177
|
render(): any;
|
|
135
178
|
}
|
|
@@ -425,8 +425,6 @@ export declare class Datetime implements ComponentInterface {
|
|
|
425
425
|
private renderMinutePickerColumn;
|
|
426
426
|
private renderDayPeriodPickerColumn;
|
|
427
427
|
private renderWheelView;
|
|
428
|
-
private asBlob;
|
|
429
|
-
private getIconProps;
|
|
430
428
|
/**
|
|
431
429
|
* Grid Render Methods
|
|
432
430
|
*/
|
|
@@ -927,52 +927,88 @@ export namespace Components {
|
|
|
927
927
|
* 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.
|
|
928
928
|
*/
|
|
929
929
|
"offsetXs"?: string;
|
|
930
|
+
/**
|
|
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
|
+
*/
|
|
933
|
+
"order"?: string;
|
|
934
|
+
/**
|
|
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
|
+
*/
|
|
937
|
+
"orderLg"?: string;
|
|
938
|
+
/**
|
|
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
|
+
*/
|
|
941
|
+
"orderMd"?: string;
|
|
942
|
+
/**
|
|
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
|
+
*/
|
|
945
|
+
"orderSm"?: string;
|
|
946
|
+
/**
|
|
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
|
+
*/
|
|
949
|
+
"orderXl"?: string;
|
|
950
|
+
/**
|
|
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
|
+
*/
|
|
953
|
+
"orderXs"?: string;
|
|
930
954
|
/**
|
|
931
955
|
* The amount to pull the column, in terms of how many columns it should shift to the start of the total available.
|
|
956
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
932
957
|
*/
|
|
933
958
|
"pull"?: string;
|
|
934
959
|
/**
|
|
935
960
|
* 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.
|
|
961
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
936
962
|
*/
|
|
937
963
|
"pullLg"?: string;
|
|
938
964
|
/**
|
|
939
965
|
* 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.
|
|
966
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
940
967
|
*/
|
|
941
968
|
"pullMd"?: string;
|
|
942
969
|
/**
|
|
943
970
|
* 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.
|
|
971
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
944
972
|
*/
|
|
945
973
|
"pullSm"?: string;
|
|
946
974
|
/**
|
|
947
975
|
* 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.
|
|
976
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
948
977
|
*/
|
|
949
978
|
"pullXl"?: string;
|
|
950
979
|
/**
|
|
951
980
|
* 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.
|
|
981
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
952
982
|
*/
|
|
953
983
|
"pullXs"?: string;
|
|
954
984
|
/**
|
|
955
985
|
* The amount to push the column, in terms of how many columns it should shift to the end of the total available.
|
|
986
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
956
987
|
*/
|
|
957
988
|
"push"?: string;
|
|
958
989
|
/**
|
|
959
990
|
* 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.
|
|
991
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
960
992
|
*/
|
|
961
993
|
"pushLg"?: string;
|
|
962
994
|
/**
|
|
963
995
|
* 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.
|
|
996
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
964
997
|
*/
|
|
965
998
|
"pushMd"?: string;
|
|
966
999
|
/**
|
|
967
1000
|
* 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.
|
|
1001
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
968
1002
|
*/
|
|
969
1003
|
"pushSm"?: string;
|
|
970
1004
|
/**
|
|
971
1005
|
* 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.
|
|
1006
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
972
1007
|
*/
|
|
973
1008
|
"pushXl"?: string;
|
|
974
1009
|
/**
|
|
975
1010
|
* 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.
|
|
1011
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
976
1012
|
*/
|
|
977
1013
|
"pushXs"?: string;
|
|
978
1014
|
/**
|
|
@@ -6835,52 +6871,88 @@ declare namespace LocalJSX {
|
|
|
6835
6871
|
* 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.
|
|
6836
6872
|
*/
|
|
6837
6873
|
"offsetXs"?: string;
|
|
6874
|
+
/**
|
|
6875
|
+
* 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.
|
|
6876
|
+
*/
|
|
6877
|
+
"order"?: string;
|
|
6878
|
+
/**
|
|
6879
|
+
* 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.
|
|
6880
|
+
*/
|
|
6881
|
+
"orderLg"?: string;
|
|
6882
|
+
/**
|
|
6883
|
+
* 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.
|
|
6884
|
+
*/
|
|
6885
|
+
"orderMd"?: string;
|
|
6886
|
+
/**
|
|
6887
|
+
* 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.
|
|
6888
|
+
*/
|
|
6889
|
+
"orderSm"?: string;
|
|
6890
|
+
/**
|
|
6891
|
+
* 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.
|
|
6892
|
+
*/
|
|
6893
|
+
"orderXl"?: string;
|
|
6894
|
+
/**
|
|
6895
|
+
* 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.
|
|
6896
|
+
*/
|
|
6897
|
+
"orderXs"?: string;
|
|
6838
6898
|
/**
|
|
6839
6899
|
* The amount to pull the column, in terms of how many columns it should shift to the start of the total available.
|
|
6900
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6840
6901
|
*/
|
|
6841
6902
|
"pull"?: string;
|
|
6842
6903
|
/**
|
|
6843
6904
|
* 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.
|
|
6905
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6844
6906
|
*/
|
|
6845
6907
|
"pullLg"?: string;
|
|
6846
6908
|
/**
|
|
6847
6909
|
* 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.
|
|
6910
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6848
6911
|
*/
|
|
6849
6912
|
"pullMd"?: string;
|
|
6850
6913
|
/**
|
|
6851
6914
|
* 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.
|
|
6915
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6852
6916
|
*/
|
|
6853
6917
|
"pullSm"?: string;
|
|
6854
6918
|
/**
|
|
6855
6919
|
* 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.
|
|
6920
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6856
6921
|
*/
|
|
6857
6922
|
"pullXl"?: string;
|
|
6858
6923
|
/**
|
|
6859
6924
|
* 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.
|
|
6925
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6860
6926
|
*/
|
|
6861
6927
|
"pullXs"?: string;
|
|
6862
6928
|
/**
|
|
6863
6929
|
* The amount to push the column, in terms of how many columns it should shift to the end of the total available.
|
|
6930
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6864
6931
|
*/
|
|
6865
6932
|
"push"?: string;
|
|
6866
6933
|
/**
|
|
6867
6934
|
* 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.
|
|
6935
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6868
6936
|
*/
|
|
6869
6937
|
"pushLg"?: string;
|
|
6870
6938
|
/**
|
|
6871
6939
|
* 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.
|
|
6940
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6872
6941
|
*/
|
|
6873
6942
|
"pushMd"?: string;
|
|
6874
6943
|
/**
|
|
6875
6944
|
* 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.
|
|
6945
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6876
6946
|
*/
|
|
6877
6947
|
"pushSm"?: string;
|
|
6878
6948
|
/**
|
|
6879
6949
|
* 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.
|
|
6950
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6880
6951
|
*/
|
|
6881
6952
|
"pushXl"?: string;
|
|
6882
6953
|
/**
|
|
6883
6954
|
* 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.
|
|
6955
|
+
* @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
|
|
6884
6956
|
*/
|
|
6885
6957
|
"pushXs"?: string;
|
|
6886
6958
|
/**
|