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