@ionic/vue 8.8.5 → 8.8.6-dev.11777490150.1970e4f2
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/css/core.css +1 -1
- package/css/core.css.map +1 -1
- package/css/display.css +1 -1
- package/css/display.css.map +1 -1
- package/css/flex-utils.css +1 -1
- package/css/flex-utils.css.map +1 -1
- package/css/float-elements.css.map +1 -1
- package/css/global.bundle.css.map +1 -1
- package/css/ionic/bundle.ionic.css +1 -0
- package/css/ionic/bundle.ionic.css.map +1 -0
- package/css/ionic/core.ionic.css +1 -0
- package/css/ionic/core.ionic.css.map +1 -0
- package/css/ionic/global.bundle.ionic.css +1 -0
- package/css/ionic/global.bundle.ionic.css.map +1 -0
- package/css/ionic/ionic-swiper.ionic.css +1 -0
- package/css/ionic/ionic-swiper.ionic.css.map +1 -0
- package/css/ionic/link.ionic.css +1 -0
- package/css/ionic/link.ionic.css.map +1 -0
- package/css/ionic/structure.ionic.css +1 -0
- package/css/ionic/structure.ionic.css.map +1 -0
- package/css/ionic/typography.ionic.css +1 -0
- package/css/ionic/typography.ionic.css.map +1 -0
- package/css/ionic/utils.bundle.ionic.css +1 -0
- package/css/ionic/utils.bundle.ionic.css.map +1 -0
- package/css/ionic-swiper.css +1 -1
- package/css/ionic-swiper.css.map +1 -1
- package/css/ionic.bundle.css +1 -1
- package/css/ionic.bundle.css.map +1 -1
- package/css/normalize.css.map +1 -1
- package/css/padding.css.map +1 -1
- package/css/palettes/dark.always.css.map +1 -1
- package/css/palettes/dark.class.css.map +1 -1
- package/css/palettes/dark.system.css.map +1 -1
- package/css/palettes/high-contrast-dark.always.css.map +1 -1
- package/css/palettes/high-contrast-dark.class.css.map +1 -1
- package/css/palettes/high-contrast-dark.system.css.map +1 -1
- package/css/palettes/high-contrast.always.css.map +1 -1
- package/css/palettes/high-contrast.class.css.map +1 -1
- package/css/palettes/high-contrast.system.css.map +1 -1
- package/css/structure.css.map +1 -1
- package/css/text-alignment.css.map +1 -1
- package/css/text-transformation.css.map +1 -1
- package/css/typography.css.map +1 -1
- package/css/utils.bundle.css +1 -1
- package/css/utils.bundle.css.map +1 -1
- package/dist/index.js +210 -162
- package/dist/index.js.map +1 -1
- package/dist/types/proxies.d.ts +2 -0
- package/dist/vetur/attributes.json +1612 -106
- package/dist/vetur/tags.json +240 -45
- package/dist/web-types.json +1700 -133
- package/package.json +2 -2
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@ionic/vue",
|
|
5
|
-
"version": "8.8.
|
|
5
|
+
"version": "8.8.6-dev.11777490150.1970e4f2",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
31
|
"name": "mode",
|
|
32
|
-
"description": "The mode determines
|
|
32
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
33
33
|
"required": false,
|
|
34
34
|
"value": {
|
|
35
35
|
"kind": "expression",
|
|
@@ -46,14 +46,22 @@
|
|
|
46
46
|
"type": "boolean"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
+
{
|
|
50
|
+
"name": "theme",
|
|
51
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
52
|
+
"required": false,
|
|
53
|
+
"value": {
|
|
54
|
+
"kind": "expression",
|
|
55
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
56
|
+
}
|
|
57
|
+
},
|
|
49
58
|
{
|
|
50
59
|
"name": "toggle-icon",
|
|
51
60
|
"description": "The toggle icon to use. This icon will be\nrotated when the accordion is expanded\nor collapsed.",
|
|
52
61
|
"required": false,
|
|
53
|
-
"default": "chevronDown",
|
|
54
62
|
"value": {
|
|
55
63
|
"kind": "expression",
|
|
56
|
-
"type": "string"
|
|
64
|
+
"type": "string | undefined"
|
|
57
65
|
}
|
|
58
66
|
},
|
|
59
67
|
{
|
|
@@ -130,7 +138,7 @@
|
|
|
130
138
|
},
|
|
131
139
|
{
|
|
132
140
|
"name": "mode",
|
|
133
|
-
"description": "The mode determines
|
|
141
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
134
142
|
"required": false,
|
|
135
143
|
"value": {
|
|
136
144
|
"kind": "expression",
|
|
@@ -156,6 +164,24 @@
|
|
|
156
164
|
"type": "boolean"
|
|
157
165
|
}
|
|
158
166
|
},
|
|
167
|
+
{
|
|
168
|
+
"name": "shape",
|
|
169
|
+
"description": "Set to `\"soft\"` for an accordion group with slightly rounded corners,\n`\"round\"` for an accordion group with fully rounded corners, or\n`\"rectangular\"` for an accordion group without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.\nOnly applies when `expand` is set to `\"inset\"`.",
|
|
170
|
+
"required": false,
|
|
171
|
+
"value": {
|
|
172
|
+
"kind": "expression",
|
|
173
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "theme",
|
|
178
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
179
|
+
"required": false,
|
|
180
|
+
"value": {
|
|
181
|
+
"kind": "expression",
|
|
182
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
183
|
+
}
|
|
184
|
+
},
|
|
159
185
|
{
|
|
160
186
|
"name": "value",
|
|
161
187
|
"description": "The value of the accordion group. This controls which\naccordions are expanded.\nThis should be an array of strings only when `multiple=\"true\"`",
|
|
@@ -286,7 +312,7 @@
|
|
|
286
312
|
},
|
|
287
313
|
{
|
|
288
314
|
"name": "mode",
|
|
289
|
-
"description": "The mode determines
|
|
315
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
290
316
|
"required": false,
|
|
291
317
|
"value": {
|
|
292
318
|
"kind": "expression",
|
|
@@ -302,9 +328,18 @@
|
|
|
302
328
|
"type": "string | undefined"
|
|
303
329
|
}
|
|
304
330
|
},
|
|
331
|
+
{
|
|
332
|
+
"name": "theme",
|
|
333
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
334
|
+
"required": false,
|
|
335
|
+
"value": {
|
|
336
|
+
"kind": "expression",
|
|
337
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
338
|
+
}
|
|
339
|
+
},
|
|
305
340
|
{
|
|
306
341
|
"name": "translucent",
|
|
307
|
-
"description": "If `true`, the action sheet will be translucent.\nOnly applies when the
|
|
342
|
+
"description": "If `true`, the action sheet will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
|
|
308
343
|
"required": false,
|
|
309
344
|
"default": "false",
|
|
310
345
|
"value": {
|
|
@@ -531,7 +566,7 @@
|
|
|
531
566
|
},
|
|
532
567
|
{
|
|
533
568
|
"name": "mode",
|
|
534
|
-
"description": "The mode determines
|
|
569
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
535
570
|
"required": false,
|
|
536
571
|
"value": {
|
|
537
572
|
"kind": "expression",
|
|
@@ -547,9 +582,18 @@
|
|
|
547
582
|
"type": "string | undefined"
|
|
548
583
|
}
|
|
549
584
|
},
|
|
585
|
+
{
|
|
586
|
+
"name": "theme",
|
|
587
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
588
|
+
"required": false,
|
|
589
|
+
"value": {
|
|
590
|
+
"kind": "expression",
|
|
591
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
592
|
+
}
|
|
593
|
+
},
|
|
550
594
|
{
|
|
551
595
|
"name": "translucent",
|
|
552
|
-
"description": "If `true`, the alert will be translucent.\nOnly applies when the
|
|
596
|
+
"description": "If `true`, the alert will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
|
|
553
597
|
"required": false,
|
|
554
598
|
"default": "false",
|
|
555
599
|
"value": {
|
|
@@ -659,7 +703,54 @@
|
|
|
659
703
|
"module": "@ionic/core/src/components/avatar/avatar.d.ts",
|
|
660
704
|
"symbol": "Avatar"
|
|
661
705
|
},
|
|
662
|
-
"attributes": [
|
|
706
|
+
"attributes": [
|
|
707
|
+
{
|
|
708
|
+
"name": "disabled",
|
|
709
|
+
"description": "If `true`, the user cannot interact with the avatar.",
|
|
710
|
+
"required": false,
|
|
711
|
+
"default": "false",
|
|
712
|
+
"value": {
|
|
713
|
+
"kind": "expression",
|
|
714
|
+
"type": "boolean"
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"name": "mode",
|
|
719
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
720
|
+
"required": false,
|
|
721
|
+
"value": {
|
|
722
|
+
"kind": "expression",
|
|
723
|
+
"type": "\"ios\" | \"md\""
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"name": "shape",
|
|
728
|
+
"description": "Set to `\"soft\"` for an avatar with slightly rounded corners,\n`\"round\"` for an avatar with fully rounded corners, or `\"rectangular\"`\nfor an avatar without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
729
|
+
"required": false,
|
|
730
|
+
"value": {
|
|
731
|
+
"kind": "expression",
|
|
732
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"name": "size",
|
|
737
|
+
"description": "Set to `\"xxsmall\"` for the smallest size.\nSet to `\"xsmall\"` for a very small size.\nSet to `\"small\"` for a compact size.\nSet to `\"medium\"` for the default height and width.\nSet to `\"large\"` for a larger size.\nSet to `\"xlarge\"` for the largest dimensions.\n\nDefaults to `\"medium\"` for the `ionic` theme, undefined for all other themes.",
|
|
738
|
+
"required": false,
|
|
739
|
+
"value": {
|
|
740
|
+
"kind": "expression",
|
|
741
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxsmall\" | undefined"
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"name": "theme",
|
|
746
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
747
|
+
"required": false,
|
|
748
|
+
"value": {
|
|
749
|
+
"kind": "expression",
|
|
750
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
],
|
|
663
754
|
"slots": [],
|
|
664
755
|
"events": []
|
|
665
756
|
},
|
|
@@ -711,7 +802,7 @@
|
|
|
711
802
|
},
|
|
712
803
|
{
|
|
713
804
|
"name": "mode",
|
|
714
|
-
"description": "The mode determines
|
|
805
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
715
806
|
"required": false,
|
|
716
807
|
"value": {
|
|
717
808
|
"kind": "expression",
|
|
@@ -736,6 +827,15 @@
|
|
|
736
827
|
"type": "null | string | undefined"
|
|
737
828
|
}
|
|
738
829
|
},
|
|
830
|
+
{
|
|
831
|
+
"name": "theme",
|
|
832
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
833
|
+
"required": false,
|
|
834
|
+
"value": {
|
|
835
|
+
"kind": "expression",
|
|
836
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
837
|
+
}
|
|
838
|
+
},
|
|
739
839
|
{
|
|
740
840
|
"name": "type",
|
|
741
841
|
"description": "The type of the button.",
|
|
@@ -759,6 +859,15 @@
|
|
|
759
859
|
"symbol": "Backdrop"
|
|
760
860
|
},
|
|
761
861
|
"attributes": [
|
|
862
|
+
{
|
|
863
|
+
"name": "mode",
|
|
864
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
865
|
+
"required": false,
|
|
866
|
+
"value": {
|
|
867
|
+
"kind": "expression",
|
|
868
|
+
"type": "\"ios\" | \"md\""
|
|
869
|
+
}
|
|
870
|
+
},
|
|
762
871
|
{
|
|
763
872
|
"name": "stop-propagation",
|
|
764
873
|
"description": "If `true`, the backdrop will stop propagation on tap.",
|
|
@@ -779,6 +888,15 @@
|
|
|
779
888
|
"type": "boolean"
|
|
780
889
|
}
|
|
781
890
|
},
|
|
891
|
+
{
|
|
892
|
+
"name": "theme",
|
|
893
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
894
|
+
"required": false,
|
|
895
|
+
"value": {
|
|
896
|
+
"kind": "expression",
|
|
897
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
898
|
+
}
|
|
899
|
+
},
|
|
782
900
|
{
|
|
783
901
|
"name": "visible",
|
|
784
902
|
"description": "If `true`, the backdrop will be visible.",
|
|
@@ -822,14 +940,59 @@
|
|
|
822
940
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
823
941
|
}
|
|
824
942
|
},
|
|
943
|
+
{
|
|
944
|
+
"name": "hue",
|
|
945
|
+
"description": "Set to `\"bold\"` for a badge with vibrant, bold colors or to `\"subtle\"` for\na badge with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
|
|
946
|
+
"required": false,
|
|
947
|
+
"value": {
|
|
948
|
+
"kind": "expression",
|
|
949
|
+
"type": "\"bold\" | \"subtle\" | undefined"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
825
952
|
{
|
|
826
953
|
"name": "mode",
|
|
827
|
-
"description": "The mode determines
|
|
954
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
828
955
|
"required": false,
|
|
829
956
|
"value": {
|
|
830
957
|
"kind": "expression",
|
|
831
958
|
"type": "\"ios\" | \"md\""
|
|
832
959
|
}
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"name": "shape",
|
|
963
|
+
"description": "Set to `\"rectangular\"` for non-rounded corners.\nSet to `\"soft\"` for slightly rounded corners.\nSet to `\"round\"` for fully rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
964
|
+
"required": false,
|
|
965
|
+
"value": {
|
|
966
|
+
"kind": "expression",
|
|
967
|
+
"type": "\"round | rectangular\" | \"soft\" | undefined"
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"name": "size",
|
|
972
|
+
"description": "Set to `\"small\"` for a small badge.\nSet to `\"medium\"` for a medium badge.\nSet to `\"large\"` for a large badge, when it is empty (no text or icon).\n\nDefaults to `\"small\"` for the `ionic` theme, undefined for all other themes.",
|
|
973
|
+
"required": false,
|
|
974
|
+
"value": {
|
|
975
|
+
"kind": "expression",
|
|
976
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined"
|
|
977
|
+
}
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"name": "theme",
|
|
981
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
982
|
+
"required": false,
|
|
983
|
+
"value": {
|
|
984
|
+
"kind": "expression",
|
|
985
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"name": "vertical",
|
|
990
|
+
"description": "Set to `\"top\"` to position the badge on top right absolute position of the parent element.\nSet to `\"bottom\"` to position the badge on bottom right absolute position of the parent element.",
|
|
991
|
+
"required": false,
|
|
992
|
+
"value": {
|
|
993
|
+
"kind": "expression",
|
|
994
|
+
"type": "\"bottom\" | \"top\" | undefined"
|
|
995
|
+
}
|
|
833
996
|
}
|
|
834
997
|
],
|
|
835
998
|
"slots": [],
|
|
@@ -893,7 +1056,7 @@
|
|
|
893
1056
|
},
|
|
894
1057
|
{
|
|
895
1058
|
"name": "mode",
|
|
896
|
-
"description": "The mode determines
|
|
1059
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
897
1060
|
"required": false,
|
|
898
1061
|
"value": {
|
|
899
1062
|
"kind": "expression",
|
|
@@ -945,6 +1108,15 @@
|
|
|
945
1108
|
"kind": "expression",
|
|
946
1109
|
"type": "string | undefined"
|
|
947
1110
|
}
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"name": "theme",
|
|
1114
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1115
|
+
"required": false,
|
|
1116
|
+
"value": {
|
|
1117
|
+
"kind": "expression",
|
|
1118
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1119
|
+
}
|
|
948
1120
|
}
|
|
949
1121
|
],
|
|
950
1122
|
"slots": [],
|
|
@@ -1020,12 +1192,21 @@
|
|
|
1020
1192
|
},
|
|
1021
1193
|
{
|
|
1022
1194
|
"name": "mode",
|
|
1023
|
-
"description": "The mode determines
|
|
1195
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1024
1196
|
"required": false,
|
|
1025
1197
|
"value": {
|
|
1026
1198
|
"kind": "expression",
|
|
1027
1199
|
"type": "\"ios\" | \"md\""
|
|
1028
1200
|
}
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"name": "theme",
|
|
1204
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1205
|
+
"required": false,
|
|
1206
|
+
"value": {
|
|
1207
|
+
"kind": "expression",
|
|
1208
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1209
|
+
}
|
|
1029
1210
|
}
|
|
1030
1211
|
],
|
|
1031
1212
|
"slots": [],
|
|
@@ -1100,7 +1281,7 @@
|
|
|
1100
1281
|
},
|
|
1101
1282
|
{
|
|
1102
1283
|
"name": "fill",
|
|
1103
|
-
"description": "Set to `\"clear\"` for a transparent button that resembles a flat button, to `\"outline\"`\nfor a transparent button with a border, or to `\"solid\"` for a button with a filled background.\nThe default fill is `\"solid\"` except inside of a
|
|
1284
|
+
"description": "Set to `\"clear\"` for a transparent button that resembles a flat button, to `\"outline\"`\nfor a transparent button with a border, or to `\"solid\"` for a button with a filled background.\nThe default fill is `\"solid\"` except when inside of a buttons or datetime component, where\nthe default fill is `\"clear\"`.",
|
|
1104
1285
|
"required": false,
|
|
1105
1286
|
"value": {
|
|
1106
1287
|
"kind": "expression",
|
|
@@ -1127,7 +1308,7 @@
|
|
|
1127
1308
|
},
|
|
1128
1309
|
{
|
|
1129
1310
|
"name": "mode",
|
|
1130
|
-
"description": "The mode determines
|
|
1311
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1131
1312
|
"required": false,
|
|
1132
1313
|
"value": {
|
|
1133
1314
|
"kind": "expression",
|
|
@@ -1164,20 +1345,20 @@
|
|
|
1164
1345
|
},
|
|
1165
1346
|
{
|
|
1166
1347
|
"name": "shape",
|
|
1167
|
-
"description": "Set to `\"round\"` for a button with
|
|
1348
|
+
"description": "Set to `\"soft\"` for a button with slightly rounded corners, `\"round\"` for a button with fully\nrounded corners, or `\"rectangular\"` for a button without rounded corners.\nDefaults to `\"soft\"` for the `\"ios\"` theme and `\"round\"` for all other themes.",
|
|
1168
1349
|
"required": false,
|
|
1169
1350
|
"value": {
|
|
1170
1351
|
"kind": "expression",
|
|
1171
|
-
"type": "\"round\" | undefined"
|
|
1352
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
1172
1353
|
}
|
|
1173
1354
|
},
|
|
1174
1355
|
{
|
|
1175
1356
|
"name": "size",
|
|
1176
|
-
"description": "Set to `\"small\"` for a button with less height and padding, to `\"
|
|
1357
|
+
"description": "Set to `\"small\"` for a button with less height and padding, to `\"medium\"`\nfor a button with the medium height and padding, or to `\"large\"` for a button\nwith more height and padding. By default the size is unset, unless the button\nis inside of an item, where the size is `\"small\"` by default. Set the size to\n`\"default\"` inside of an item to make it a standard size button.",
|
|
1177
1358
|
"required": false,
|
|
1178
1359
|
"value": {
|
|
1179
1360
|
"kind": "expression",
|
|
1180
|
-
"type": "\"default\" | \"large\" | \"small\" | undefined"
|
|
1361
|
+
"type": "\"default\" | \"large\" | \"medium\" | \"small\" | undefined"
|
|
1181
1362
|
}
|
|
1182
1363
|
},
|
|
1183
1364
|
{
|
|
@@ -1199,6 +1380,15 @@
|
|
|
1199
1380
|
"type": "string | undefined"
|
|
1200
1381
|
}
|
|
1201
1382
|
},
|
|
1383
|
+
{
|
|
1384
|
+
"name": "theme",
|
|
1385
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1386
|
+
"required": false,
|
|
1387
|
+
"value": {
|
|
1388
|
+
"kind": "expression",
|
|
1389
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1390
|
+
}
|
|
1391
|
+
},
|
|
1202
1392
|
{
|
|
1203
1393
|
"name": "type",
|
|
1204
1394
|
"description": "The type of the button.",
|
|
@@ -1262,13 +1452,31 @@
|
|
|
1262
1452
|
"attributes": [
|
|
1263
1453
|
{
|
|
1264
1454
|
"name": "collapse",
|
|
1265
|
-
"description": "If true, buttons will disappear when its\nparent toolbar has fully collapsed if the toolbar\nis not the first toolbar. If the toolbar is the\nfirst toolbar, the buttons will be hidden and will\nonly be shown once all toolbars have fully collapsed.\n\nOnly applies in `ios`
|
|
1455
|
+
"description": "If true, buttons will disappear when its\nparent toolbar has fully collapsed if the toolbar\nis not the first toolbar. If the toolbar is the\nfirst toolbar, the buttons will be hidden and will\nonly be shown once all toolbars have fully collapsed.\n\nOnly applies in the `ios` theme with `collapse` set to\n`true` on `ion-header`.\n\nTypically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)",
|
|
1266
1456
|
"required": false,
|
|
1267
1457
|
"default": "false",
|
|
1268
1458
|
"value": {
|
|
1269
1459
|
"kind": "expression",
|
|
1270
1460
|
"type": "boolean"
|
|
1271
1461
|
}
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"name": "mode",
|
|
1465
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1466
|
+
"required": false,
|
|
1467
|
+
"value": {
|
|
1468
|
+
"kind": "expression",
|
|
1469
|
+
"type": "\"ios\" | \"md\""
|
|
1470
|
+
}
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"name": "theme",
|
|
1474
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1475
|
+
"required": false,
|
|
1476
|
+
"value": {
|
|
1477
|
+
"kind": "expression",
|
|
1478
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1479
|
+
}
|
|
1272
1480
|
}
|
|
1273
1481
|
],
|
|
1274
1482
|
"slots": [],
|
|
@@ -1332,7 +1540,7 @@
|
|
|
1332
1540
|
},
|
|
1333
1541
|
{
|
|
1334
1542
|
"name": "mode",
|
|
1335
|
-
"description": "The mode determines
|
|
1543
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1336
1544
|
"required": false,
|
|
1337
1545
|
"value": {
|
|
1338
1546
|
"kind": "expression",
|
|
@@ -1367,6 +1575,16 @@
|
|
|
1367
1575
|
"type": "\"back\" | \"forward\" | \"root\""
|
|
1368
1576
|
}
|
|
1369
1577
|
},
|
|
1578
|
+
{
|
|
1579
|
+
"name": "shape",
|
|
1580
|
+
"description": "Set to `\"soft\"` for a card with slightly rounded corners, `\"round\"` for a card with more\nrounded corners, or `\"rectangular\"` for a card without rounded corners.\nDefaults to `\"round\"`.",
|
|
1581
|
+
"required": false,
|
|
1582
|
+
"default": "'round'",
|
|
1583
|
+
"value": {
|
|
1584
|
+
"kind": "expression",
|
|
1585
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
1586
|
+
}
|
|
1587
|
+
},
|
|
1370
1588
|
{
|
|
1371
1589
|
"name": "target",
|
|
1372
1590
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
@@ -1376,6 +1594,15 @@
|
|
|
1376
1594
|
"type": "string | undefined"
|
|
1377
1595
|
}
|
|
1378
1596
|
},
|
|
1597
|
+
{
|
|
1598
|
+
"name": "theme",
|
|
1599
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1600
|
+
"required": false,
|
|
1601
|
+
"value": {
|
|
1602
|
+
"kind": "expression",
|
|
1603
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1379
1606
|
{
|
|
1380
1607
|
"name": "type",
|
|
1381
1608
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -1401,12 +1628,21 @@
|
|
|
1401
1628
|
"attributes": [
|
|
1402
1629
|
{
|
|
1403
1630
|
"name": "mode",
|
|
1404
|
-
"description": "The mode determines
|
|
1631
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1405
1632
|
"required": false,
|
|
1406
1633
|
"value": {
|
|
1407
1634
|
"kind": "expression",
|
|
1408
1635
|
"type": "\"ios\" | \"md\""
|
|
1409
1636
|
}
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
"name": "theme",
|
|
1640
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1641
|
+
"required": false,
|
|
1642
|
+
"value": {
|
|
1643
|
+
"kind": "expression",
|
|
1644
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1645
|
+
}
|
|
1410
1646
|
}
|
|
1411
1647
|
],
|
|
1412
1648
|
"slots": [],
|
|
@@ -1432,16 +1668,25 @@
|
|
|
1432
1668
|
},
|
|
1433
1669
|
{
|
|
1434
1670
|
"name": "mode",
|
|
1435
|
-
"description": "The mode determines
|
|
1671
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1436
1672
|
"required": false,
|
|
1437
1673
|
"value": {
|
|
1438
1674
|
"kind": "expression",
|
|
1439
1675
|
"type": "\"ios\" | \"md\""
|
|
1440
1676
|
}
|
|
1441
1677
|
},
|
|
1678
|
+
{
|
|
1679
|
+
"name": "theme",
|
|
1680
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1681
|
+
"required": false,
|
|
1682
|
+
"value": {
|
|
1683
|
+
"kind": "expression",
|
|
1684
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1685
|
+
}
|
|
1686
|
+
},
|
|
1442
1687
|
{
|
|
1443
1688
|
"name": "translucent",
|
|
1444
|
-
"description": "If `true`, the card header will be translucent.\nOnly applies when the
|
|
1689
|
+
"description": "If `true`, the card header will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
|
|
1445
1690
|
"required": false,
|
|
1446
1691
|
"default": "false",
|
|
1447
1692
|
"value": {
|
|
@@ -1473,12 +1718,21 @@
|
|
|
1473
1718
|
},
|
|
1474
1719
|
{
|
|
1475
1720
|
"name": "mode",
|
|
1476
|
-
"description": "The mode determines
|
|
1721
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1477
1722
|
"required": false,
|
|
1478
1723
|
"value": {
|
|
1479
1724
|
"kind": "expression",
|
|
1480
1725
|
"type": "\"ios\" | \"md\""
|
|
1481
1726
|
}
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"name": "theme",
|
|
1730
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1731
|
+
"required": false,
|
|
1732
|
+
"value": {
|
|
1733
|
+
"kind": "expression",
|
|
1734
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1735
|
+
}
|
|
1482
1736
|
}
|
|
1483
1737
|
],
|
|
1484
1738
|
"slots": [],
|
|
@@ -1504,12 +1758,21 @@
|
|
|
1504
1758
|
},
|
|
1505
1759
|
{
|
|
1506
1760
|
"name": "mode",
|
|
1507
|
-
"description": "The mode determines
|
|
1761
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1508
1762
|
"required": false,
|
|
1509
1763
|
"value": {
|
|
1510
1764
|
"kind": "expression",
|
|
1511
1765
|
"type": "\"ios\" | \"md\""
|
|
1512
1766
|
}
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"name": "theme",
|
|
1770
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1771
|
+
"required": false,
|
|
1772
|
+
"value": {
|
|
1773
|
+
"kind": "expression",
|
|
1774
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1775
|
+
}
|
|
1513
1776
|
}
|
|
1514
1777
|
],
|
|
1515
1778
|
"slots": [],
|
|
@@ -1611,7 +1874,7 @@
|
|
|
1611
1874
|
},
|
|
1612
1875
|
{
|
|
1613
1876
|
"name": "mode",
|
|
1614
|
-
"description": "The mode determines
|
|
1877
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1615
1878
|
"required": false,
|
|
1616
1879
|
"value": {
|
|
1617
1880
|
"kind": "expression",
|
|
@@ -1638,6 +1901,34 @@
|
|
|
1638
1901
|
"type": "boolean"
|
|
1639
1902
|
}
|
|
1640
1903
|
},
|
|
1904
|
+
{
|
|
1905
|
+
"name": "shape",
|
|
1906
|
+
"description": "Set to `\"soft\"` for a checkbox with more rounded corners. Only available when the theme is `\"ionic\"`.",
|
|
1907
|
+
"required": false,
|
|
1908
|
+
"default": "'soft'",
|
|
1909
|
+
"value": {
|
|
1910
|
+
"kind": "expression",
|
|
1911
|
+
"type": "\"rectangular\" | \"soft\" | undefined"
|
|
1912
|
+
}
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
"name": "size",
|
|
1916
|
+
"description": "Set to `\"small\"` for a checkbox with less height and padding.",
|
|
1917
|
+
"required": false,
|
|
1918
|
+
"value": {
|
|
1919
|
+
"kind": "expression",
|
|
1920
|
+
"type": "\"small\" | undefined"
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"name": "theme",
|
|
1925
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1926
|
+
"required": false,
|
|
1927
|
+
"value": {
|
|
1928
|
+
"kind": "expression",
|
|
1929
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1930
|
+
}
|
|
1931
|
+
},
|
|
1641
1932
|
{
|
|
1642
1933
|
"name": "value",
|
|
1643
1934
|
"description": "The value of the checkbox does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a checkbox is analogous to the value of an `<input type=\"checkbox\">`,\nit's only used when the checkbox participates in a native `<form>`.",
|
|
@@ -1668,7 +1959,7 @@
|
|
|
1668
1959
|
},
|
|
1669
1960
|
{
|
|
1670
1961
|
"name": "ionChange",
|
|
1671
|
-
"description": "Emitted when the checked property has changed
|
|
1962
|
+
"description": "Emitted when the checked property has changed\nas a result of a user action such as a click.\nThis event will not emit when programmatically\nsetting the `checked` property.",
|
|
1672
1963
|
"arguments": [
|
|
1673
1964
|
{
|
|
1674
1965
|
"name": "detail",
|
|
@@ -1716,9 +2007,19 @@
|
|
|
1716
2007
|
"type": "boolean"
|
|
1717
2008
|
}
|
|
1718
2009
|
},
|
|
2010
|
+
{
|
|
2011
|
+
"name": "hue",
|
|
2012
|
+
"description": "Set to `\"bold\"` for a chip with vibrant, bold colors or to `\"subtle\"` for\na chip with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
|
|
2013
|
+
"required": false,
|
|
2014
|
+
"default": "'subtle'",
|
|
2015
|
+
"value": {
|
|
2016
|
+
"kind": "expression",
|
|
2017
|
+
"type": "\"bold\" | \"subtle\" | undefined"
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
1719
2020
|
{
|
|
1720
2021
|
"name": "mode",
|
|
1721
|
-
"description": "The mode determines
|
|
2022
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1722
2023
|
"required": false,
|
|
1723
2024
|
"value": {
|
|
1724
2025
|
"kind": "expression",
|
|
@@ -1734,23 +2035,59 @@
|
|
|
1734
2035
|
"kind": "expression",
|
|
1735
2036
|
"type": "boolean"
|
|
1736
2037
|
}
|
|
1737
|
-
}
|
|
1738
|
-
],
|
|
1739
|
-
"slots": [],
|
|
1740
|
-
"events": []
|
|
1741
|
-
},
|
|
1742
|
-
{
|
|
1743
|
-
"name": "IonCol",
|
|
1744
|
-
"doc-url": "https://ionicframework.com/docs/api/col",
|
|
1745
|
-
"description": "",
|
|
1746
|
-
"source": {
|
|
1747
|
-
"module": "@ionic/core/src/components/col/col.d.ts",
|
|
1748
|
-
"symbol": "Col"
|
|
1749
|
-
},
|
|
1750
|
-
"attributes": [
|
|
2038
|
+
},
|
|
1751
2039
|
{
|
|
1752
|
-
"name": "
|
|
1753
|
-
"description": "
|
|
2040
|
+
"name": "shape",
|
|
2041
|
+
"description": "Set to `\"soft\"` for a chip with slightly rounded corners, `\"round\"` for a chip with fully\nrounded corners, or `\"rectangular\"` for a chip without rounded corners.\nDefaults to `\"round\"` for the `\"ionic\"` theme and `\"soft\"` for all other themes.",
|
|
2042
|
+
"required": false,
|
|
2043
|
+
"value": {
|
|
2044
|
+
"kind": "expression",
|
|
2045
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
2046
|
+
}
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
"name": "size",
|
|
2050
|
+
"description": "Set to `\"small\"` for a chip with less height and padding.\n\nDefaults to `\"large\"` for the ionic theme, and undefined for all other themes.",
|
|
2051
|
+
"required": false,
|
|
2052
|
+
"value": {
|
|
2053
|
+
"kind": "expression",
|
|
2054
|
+
"type": "\"large\" | \"small\" | undefined"
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
"name": "theme",
|
|
2059
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2060
|
+
"required": false,
|
|
2061
|
+
"value": {
|
|
2062
|
+
"kind": "expression",
|
|
2063
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
2066
|
+
],
|
|
2067
|
+
"slots": [],
|
|
2068
|
+
"events": []
|
|
2069
|
+
},
|
|
2070
|
+
{
|
|
2071
|
+
"name": "IonCol",
|
|
2072
|
+
"doc-url": "https://ionicframework.com/docs/api/col",
|
|
2073
|
+
"description": "",
|
|
2074
|
+
"source": {
|
|
2075
|
+
"module": "@ionic/core/src/components/col/col.d.ts",
|
|
2076
|
+
"symbol": "Col"
|
|
2077
|
+
},
|
|
2078
|
+
"attributes": [
|
|
2079
|
+
{
|
|
2080
|
+
"name": "mode",
|
|
2081
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2082
|
+
"required": false,
|
|
2083
|
+
"value": {
|
|
2084
|
+
"kind": "expression",
|
|
2085
|
+
"type": "\"ios\" | \"md\""
|
|
2086
|
+
}
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"name": "offset",
|
|
2090
|
+
"description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available.",
|
|
1754
2091
|
"required": false,
|
|
1755
2092
|
"value": {
|
|
1756
2093
|
"kind": "expression",
|
|
@@ -1802,6 +2139,60 @@
|
|
|
1802
2139
|
"type": "string | undefined"
|
|
1803
2140
|
}
|
|
1804
2141
|
},
|
|
2142
|
+
{
|
|
2143
|
+
"name": "order",
|
|
2144
|
+
"description": "The order of the column, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
2145
|
+
"required": false,
|
|
2146
|
+
"value": {
|
|
2147
|
+
"kind": "expression",
|
|
2148
|
+
"type": "string | undefined"
|
|
2149
|
+
}
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
"name": "order-lg",
|
|
2153
|
+
"description": "The order of the column for lg screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
2154
|
+
"required": false,
|
|
2155
|
+
"value": {
|
|
2156
|
+
"kind": "expression",
|
|
2157
|
+
"type": "string | undefined"
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"name": "order-md",
|
|
2162
|
+
"description": "The order of the column for md screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
2163
|
+
"required": false,
|
|
2164
|
+
"value": {
|
|
2165
|
+
"kind": "expression",
|
|
2166
|
+
"type": "string | undefined"
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"name": "order-sm",
|
|
2171
|
+
"description": "The order of the column for sm screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
2172
|
+
"required": false,
|
|
2173
|
+
"value": {
|
|
2174
|
+
"kind": "expression",
|
|
2175
|
+
"type": "string | undefined"
|
|
2176
|
+
}
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"name": "order-xl",
|
|
2180
|
+
"description": "The order of the column for xl screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
2181
|
+
"required": false,
|
|
2182
|
+
"value": {
|
|
2183
|
+
"kind": "expression",
|
|
2184
|
+
"type": "string | undefined"
|
|
2185
|
+
}
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"name": "order-xs",
|
|
2189
|
+
"description": "The order of the column for xs screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
2190
|
+
"required": false,
|
|
2191
|
+
"value": {
|
|
2192
|
+
"kind": "expression",
|
|
2193
|
+
"type": "string | undefined"
|
|
2194
|
+
}
|
|
2195
|
+
},
|
|
1805
2196
|
{
|
|
1806
2197
|
"name": "pull",
|
|
1807
2198
|
"description": "The amount to pull the column, in terms of how many columns it should shift to the start of\nthe total available.",
|
|
@@ -1963,6 +2354,15 @@
|
|
|
1963
2354
|
"kind": "expression",
|
|
1964
2355
|
"type": "string | undefined"
|
|
1965
2356
|
}
|
|
2357
|
+
},
|
|
2358
|
+
{
|
|
2359
|
+
"name": "theme",
|
|
2360
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2361
|
+
"required": false,
|
|
2362
|
+
"value": {
|
|
2363
|
+
"kind": "expression",
|
|
2364
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2365
|
+
}
|
|
1966
2366
|
}
|
|
1967
2367
|
],
|
|
1968
2368
|
"slots": [],
|
|
@@ -2015,6 +2415,15 @@
|
|
|
2015
2415
|
"type": "boolean"
|
|
2016
2416
|
}
|
|
2017
2417
|
},
|
|
2418
|
+
{
|
|
2419
|
+
"name": "mode",
|
|
2420
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2421
|
+
"required": false,
|
|
2422
|
+
"value": {
|
|
2423
|
+
"kind": "expression",
|
|
2424
|
+
"type": "\"ios\" | \"md\""
|
|
2425
|
+
}
|
|
2426
|
+
},
|
|
2018
2427
|
{
|
|
2019
2428
|
"name": "scroll-events",
|
|
2020
2429
|
"description": "Because of performance reasons, ionScroll events are disabled by default, in order to enable them\nand start listening from (ionScroll), set this property to `true`.",
|
|
@@ -2044,6 +2453,15 @@
|
|
|
2044
2453
|
"kind": "expression",
|
|
2045
2454
|
"type": "boolean"
|
|
2046
2455
|
}
|
|
2456
|
+
},
|
|
2457
|
+
{
|
|
2458
|
+
"name": "theme",
|
|
2459
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2460
|
+
"required": false,
|
|
2461
|
+
"value": {
|
|
2462
|
+
"kind": "expression",
|
|
2463
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2464
|
+
}
|
|
2047
2465
|
}
|
|
2048
2466
|
],
|
|
2049
2467
|
"slots": [
|
|
@@ -2251,7 +2669,7 @@
|
|
|
2251
2669
|
},
|
|
2252
2670
|
{
|
|
2253
2671
|
"name": "mode",
|
|
2254
|
-
"description": "The mode determines
|
|
2672
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2255
2673
|
"required": false,
|
|
2256
2674
|
"value": {
|
|
2257
2675
|
"kind": "expression",
|
|
@@ -2377,6 +2795,15 @@
|
|
|
2377
2795
|
"type": "\"cover\" | \"fixed\""
|
|
2378
2796
|
}
|
|
2379
2797
|
},
|
|
2798
|
+
{
|
|
2799
|
+
"name": "theme",
|
|
2800
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2801
|
+
"required": false,
|
|
2802
|
+
"value": {
|
|
2803
|
+
"kind": "expression",
|
|
2804
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2805
|
+
}
|
|
2806
|
+
},
|
|
2380
2807
|
{
|
|
2381
2808
|
"name": "titleSelectedDatesFormatter",
|
|
2382
2809
|
"description": "A callback used to format the header text that shows how many\ndates are selected. Only used if there are 0 or more than 1\nselected (i.e. unused for exactly 1). By default, the header\ntext is set to \"numberOfDates days\".\n\nSee https://ionicframework.com/docs/troubleshooting/runtime#accessing-this\nif you need to access `this` from within the callback.",
|
|
@@ -2502,12 +2929,21 @@
|
|
|
2502
2929
|
},
|
|
2503
2930
|
{
|
|
2504
2931
|
"name": "mode",
|
|
2505
|
-
"description": "The mode determines
|
|
2932
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2506
2933
|
"required": false,
|
|
2507
2934
|
"value": {
|
|
2508
2935
|
"kind": "expression",
|
|
2509
2936
|
"type": "\"ios\" | \"md\""
|
|
2510
2937
|
}
|
|
2938
|
+
},
|
|
2939
|
+
{
|
|
2940
|
+
"name": "theme",
|
|
2941
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2942
|
+
"required": false,
|
|
2943
|
+
"value": {
|
|
2944
|
+
"kind": "expression",
|
|
2945
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2946
|
+
}
|
|
2511
2947
|
}
|
|
2512
2948
|
],
|
|
2513
2949
|
"slots": [
|
|
@@ -2522,6 +2958,39 @@
|
|
|
2522
2958
|
],
|
|
2523
2959
|
"events": []
|
|
2524
2960
|
},
|
|
2961
|
+
{
|
|
2962
|
+
"name": "IonDivider",
|
|
2963
|
+
"doc-url": "https://ionicframework.com/docs/api/divider",
|
|
2964
|
+
"description": "",
|
|
2965
|
+
"source": {
|
|
2966
|
+
"module": "@ionic/core/src/components/divider/divider.d.ts",
|
|
2967
|
+
"symbol": "Divider"
|
|
2968
|
+
},
|
|
2969
|
+
"attributes": [
|
|
2970
|
+
{
|
|
2971
|
+
"name": "inset",
|
|
2972
|
+
"description": "If `true`, the divider will have horizontal margins\nBy default, it's `false`",
|
|
2973
|
+
"required": false,
|
|
2974
|
+
"default": "false",
|
|
2975
|
+
"value": {
|
|
2976
|
+
"kind": "expression",
|
|
2977
|
+
"type": "boolean"
|
|
2978
|
+
}
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
"name": "spacing",
|
|
2982
|
+
"description": "Set to `\"xxsmall\"` for the smallest spacing.\nSet to \"xsmall\" for very small spacing.\nSet to `\"small\"` for small spacing.\nSet to \"medium\" for medium spacing.\nSet to \"large\" for large spacing.\nSet to `\"xlarge\"` for the largest spacing.\n\nDefaults to `\"medium\"`.",
|
|
2983
|
+
"required": false,
|
|
2984
|
+
"default": "'medium'",
|
|
2985
|
+
"value": {
|
|
2986
|
+
"kind": "expression",
|
|
2987
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxlarge\" | \"xxsmall\" | undefined"
|
|
2988
|
+
}
|
|
2989
|
+
}
|
|
2990
|
+
],
|
|
2991
|
+
"slots": [],
|
|
2992
|
+
"events": []
|
|
2993
|
+
},
|
|
2525
2994
|
{
|
|
2526
2995
|
"name": "IonFab",
|
|
2527
2996
|
"doc-url": "https://ionicframework.com/docs/api/fab",
|
|
@@ -2560,6 +3029,24 @@
|
|
|
2560
3029
|
"type": "\"center\" | \"end\" | \"start\" | undefined"
|
|
2561
3030
|
}
|
|
2562
3031
|
},
|
|
3032
|
+
{
|
|
3033
|
+
"name": "mode",
|
|
3034
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3035
|
+
"required": false,
|
|
3036
|
+
"value": {
|
|
3037
|
+
"kind": "expression",
|
|
3038
|
+
"type": "\"ios\" | \"md\""
|
|
3039
|
+
}
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"name": "theme",
|
|
3043
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3044
|
+
"required": false,
|
|
3045
|
+
"value": {
|
|
3046
|
+
"kind": "expression",
|
|
3047
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3048
|
+
}
|
|
3049
|
+
},
|
|
2563
3050
|
{
|
|
2564
3051
|
"name": "vertical",
|
|
2565
3052
|
"description": "Where to align the fab vertically in the viewport.",
|
|
@@ -2596,10 +3083,9 @@
|
|
|
2596
3083
|
"name": "close-icon",
|
|
2597
3084
|
"description": "The icon name to use for the close icon. This will appear when the fab button\nis pressed. Only applies if it is the main button inside of a fab containing a\nfab list.",
|
|
2598
3085
|
"required": false,
|
|
2599
|
-
"default": "close",
|
|
2600
3086
|
"value": {
|
|
2601
3087
|
"kind": "expression",
|
|
2602
|
-
"type": "string"
|
|
3088
|
+
"type": "string | undefined"
|
|
2603
3089
|
}
|
|
2604
3090
|
},
|
|
2605
3091
|
{
|
|
@@ -2641,7 +3127,7 @@
|
|
|
2641
3127
|
},
|
|
2642
3128
|
{
|
|
2643
3129
|
"name": "mode",
|
|
2644
|
-
"description": "The mode determines
|
|
3130
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2645
3131
|
"required": false,
|
|
2646
3132
|
"value": {
|
|
2647
3133
|
"kind": "expression",
|
|
@@ -2704,9 +3190,18 @@
|
|
|
2704
3190
|
"type": "string | undefined"
|
|
2705
3191
|
}
|
|
2706
3192
|
},
|
|
3193
|
+
{
|
|
3194
|
+
"name": "theme",
|
|
3195
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3196
|
+
"required": false,
|
|
3197
|
+
"value": {
|
|
3198
|
+
"kind": "expression",
|
|
3199
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3200
|
+
}
|
|
3201
|
+
},
|
|
2707
3202
|
{
|
|
2708
3203
|
"name": "translucent",
|
|
2709
|
-
"description": "If `true`, the fab button will be translucent.\nOnly applies when the
|
|
3204
|
+
"description": "If `true`, the fab button will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
|
|
2710
3205
|
"required": false,
|
|
2711
3206
|
"default": "false",
|
|
2712
3207
|
"value": {
|
|
@@ -2768,6 +3263,15 @@
|
|
|
2768
3263
|
"type": "boolean"
|
|
2769
3264
|
}
|
|
2770
3265
|
},
|
|
3266
|
+
{
|
|
3267
|
+
"name": "mode",
|
|
3268
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3269
|
+
"required": false,
|
|
3270
|
+
"value": {
|
|
3271
|
+
"kind": "expression",
|
|
3272
|
+
"type": "\"ios\" | \"md\""
|
|
3273
|
+
}
|
|
3274
|
+
},
|
|
2771
3275
|
{
|
|
2772
3276
|
"name": "side",
|
|
2773
3277
|
"description": "The side the fab list will show on relative to the main fab button.",
|
|
@@ -2777,6 +3281,15 @@
|
|
|
2777
3281
|
"kind": "expression",
|
|
2778
3282
|
"type": "\"bottom\" | \"end\" | \"start\" | \"top\""
|
|
2779
3283
|
}
|
|
3284
|
+
},
|
|
3285
|
+
{
|
|
3286
|
+
"name": "theme",
|
|
3287
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3288
|
+
"required": false,
|
|
3289
|
+
"value": {
|
|
3290
|
+
"kind": "expression",
|
|
3291
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3292
|
+
}
|
|
2780
3293
|
}
|
|
2781
3294
|
],
|
|
2782
3295
|
"slots": [],
|
|
@@ -2793,7 +3306,7 @@
|
|
|
2793
3306
|
"attributes": [
|
|
2794
3307
|
{
|
|
2795
3308
|
"name": "collapse",
|
|
2796
|
-
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies
|
|
3309
|
+
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies when the theme is `\"ios\"`.",
|
|
2797
3310
|
"required": false,
|
|
2798
3311
|
"value": {
|
|
2799
3312
|
"kind": "expression",
|
|
@@ -2802,16 +3315,25 @@
|
|
|
2802
3315
|
},
|
|
2803
3316
|
{
|
|
2804
3317
|
"name": "mode",
|
|
2805
|
-
"description": "The mode determines
|
|
3318
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2806
3319
|
"required": false,
|
|
2807
3320
|
"value": {
|
|
2808
3321
|
"kind": "expression",
|
|
2809
3322
|
"type": "\"ios\" | \"md\""
|
|
2810
3323
|
}
|
|
2811
3324
|
},
|
|
3325
|
+
{
|
|
3326
|
+
"name": "theme",
|
|
3327
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3328
|
+
"required": false,
|
|
3329
|
+
"value": {
|
|
3330
|
+
"kind": "expression",
|
|
3331
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3332
|
+
}
|
|
3333
|
+
},
|
|
2812
3334
|
{
|
|
2813
3335
|
"name": "translucent",
|
|
2814
|
-
"description": "If `true`, the footer will be translucent.\nOnly applies when the
|
|
3336
|
+
"description": "If `true`, the footer will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).\n\nNote: In order to scroll content behind the footer, the `fullscreen`\nattribute needs to be set on the content.",
|
|
2815
3337
|
"required": false,
|
|
2816
3338
|
"default": "false",
|
|
2817
3339
|
"value": {
|
|
@@ -2823,6 +3345,72 @@
|
|
|
2823
3345
|
"slots": [],
|
|
2824
3346
|
"events": []
|
|
2825
3347
|
},
|
|
3348
|
+
{
|
|
3349
|
+
"name": "IonGallery",
|
|
3350
|
+
"doc-url": "https://ionicframework.com/docs/api/gallery",
|
|
3351
|
+
"description": "",
|
|
3352
|
+
"source": {
|
|
3353
|
+
"module": "@ionic/core/src/components/gallery/gallery.d.ts",
|
|
3354
|
+
"symbol": "Gallery"
|
|
3355
|
+
},
|
|
3356
|
+
"attributes": [
|
|
3357
|
+
{
|
|
3358
|
+
"name": "columns",
|
|
3359
|
+
"description": "The number of columns to display. Can be set as a number or an object of\nbreakpoint values (e.g. `{ xs: 2, sm: 3, md: 4 }`).",
|
|
3360
|
+
"required": false,
|
|
3361
|
+
"default": "DEFAULT_COLUMNS",
|
|
3362
|
+
"value": {
|
|
3363
|
+
"kind": "expression",
|
|
3364
|
+
"type": "GalleryBreakpointColumns | number | string"
|
|
3365
|
+
}
|
|
3366
|
+
},
|
|
3367
|
+
{
|
|
3368
|
+
"name": "layout",
|
|
3369
|
+
"description": "The visual layout of the gallery. When `uniform`, rows take up the height\nof the tallest item and are spaced evenly across the gallery. Additionally,\nitems will have an aspect ratio of 1/1, forcing them to be square unless a\nheight is explicitly set. When `masonry`, items will be positioned under each\nother with only the specified gap between them.",
|
|
3370
|
+
"required": false,
|
|
3371
|
+
"default": "'uniform'",
|
|
3372
|
+
"value": {
|
|
3373
|
+
"kind": "expression",
|
|
3374
|
+
"type": "\"masonry\" | \"uniform\""
|
|
3375
|
+
}
|
|
3376
|
+
},
|
|
3377
|
+
{
|
|
3378
|
+
"name": "mode",
|
|
3379
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3380
|
+
"required": false,
|
|
3381
|
+
"value": {
|
|
3382
|
+
"kind": "expression",
|
|
3383
|
+
"type": "\"ios\" | \"md\""
|
|
3384
|
+
}
|
|
3385
|
+
},
|
|
3386
|
+
{
|
|
3387
|
+
"name": "order",
|
|
3388
|
+
"description": "The order in which items are positioned. Only applies when layout is\n`masonry`. When `sequential`, items are positioned in the order they are\nplaced in the DOM. When `best-fit`, items are positioned under the column\nwith the most available space.",
|
|
3389
|
+
"required": false,
|
|
3390
|
+
"default": "'sequential'",
|
|
3391
|
+
"value": {
|
|
3392
|
+
"kind": "expression",
|
|
3393
|
+
"type": "\"best-fit\" | \"sequential\""
|
|
3394
|
+
}
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
"name": "theme",
|
|
3398
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3399
|
+
"required": false,
|
|
3400
|
+
"value": {
|
|
3401
|
+
"kind": "expression",
|
|
3402
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3403
|
+
}
|
|
3404
|
+
}
|
|
3405
|
+
],
|
|
3406
|
+
"slots": [
|
|
3407
|
+
{
|
|
3408
|
+
"name": "default",
|
|
3409
|
+
"description": "Content is placed in a responsive gallery layout."
|
|
3410
|
+
}
|
|
3411
|
+
],
|
|
3412
|
+
"events": []
|
|
3413
|
+
},
|
|
2826
3414
|
{
|
|
2827
3415
|
"name": "IonGrid",
|
|
2828
3416
|
"doc-url": "https://ionicframework.com/docs/api/grid",
|
|
@@ -2841,6 +3429,24 @@
|
|
|
2841
3429
|
"kind": "expression",
|
|
2842
3430
|
"type": "boolean"
|
|
2843
3431
|
}
|
|
3432
|
+
},
|
|
3433
|
+
{
|
|
3434
|
+
"name": "mode",
|
|
3435
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3436
|
+
"required": false,
|
|
3437
|
+
"value": {
|
|
3438
|
+
"kind": "expression",
|
|
3439
|
+
"type": "\"ios\" | \"md\""
|
|
3440
|
+
}
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"name": "theme",
|
|
3444
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3445
|
+
"required": false,
|
|
3446
|
+
"value": {
|
|
3447
|
+
"kind": "expression",
|
|
3448
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3449
|
+
}
|
|
2844
3450
|
}
|
|
2845
3451
|
],
|
|
2846
3452
|
"slots": [],
|
|
@@ -2857,25 +3463,44 @@
|
|
|
2857
3463
|
"attributes": [
|
|
2858
3464
|
{
|
|
2859
3465
|
"name": "collapse",
|
|
2860
|
-
"description": "Describes the scroll effect that will be applied to the header.\nOnly applies
|
|
3466
|
+
"description": "Describes the scroll effect that will be applied to the header.\nOnly applies when the theme is `\"ios\"`.\n\nTypically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)",
|
|
3467
|
+
"required": false,
|
|
3468
|
+
"value": {
|
|
3469
|
+
"kind": "expression",
|
|
3470
|
+
"type": "\"condense\" | \"fade\" | undefined"
|
|
3471
|
+
}
|
|
3472
|
+
},
|
|
3473
|
+
{
|
|
3474
|
+
"name": "divider",
|
|
3475
|
+
"description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes",
|
|
3476
|
+
"required": false,
|
|
3477
|
+
"default": "false",
|
|
3478
|
+
"value": {
|
|
3479
|
+
"kind": "expression",
|
|
3480
|
+
"type": "boolean"
|
|
3481
|
+
}
|
|
3482
|
+
},
|
|
3483
|
+
{
|
|
3484
|
+
"name": "mode",
|
|
3485
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2861
3486
|
"required": false,
|
|
2862
3487
|
"value": {
|
|
2863
3488
|
"kind": "expression",
|
|
2864
|
-
"type": "\"
|
|
3489
|
+
"type": "\"ios\" | \"md\""
|
|
2865
3490
|
}
|
|
2866
3491
|
},
|
|
2867
3492
|
{
|
|
2868
|
-
"name": "
|
|
2869
|
-
"description": "The
|
|
3493
|
+
"name": "theme",
|
|
3494
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2870
3495
|
"required": false,
|
|
2871
3496
|
"value": {
|
|
2872
3497
|
"kind": "expression",
|
|
2873
|
-
"type": "\"ios\" | \"md\""
|
|
3498
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2874
3499
|
}
|
|
2875
3500
|
},
|
|
2876
3501
|
{
|
|
2877
3502
|
"name": "translucent",
|
|
2878
|
-
"description": "If `true`, the header will be translucent.\nOnly applies when the
|
|
3503
|
+
"description": "If `true`, the header will be translucent.\nOnly applies when the theme is `\"ios\"` or `\"ionic\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).\n\nNote: In order to scroll content behind the header, the `fullscreen`\nattribute needs to be set on the content.",
|
|
2879
3504
|
"required": false,
|
|
2880
3505
|
"default": "false",
|
|
2881
3506
|
"value": {
|
|
@@ -2905,6 +3530,15 @@
|
|
|
2905
3530
|
"type": "string | undefined"
|
|
2906
3531
|
}
|
|
2907
3532
|
},
|
|
3533
|
+
{
|
|
3534
|
+
"name": "mode",
|
|
3535
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3536
|
+
"required": false,
|
|
3537
|
+
"value": {
|
|
3538
|
+
"kind": "expression",
|
|
3539
|
+
"type": "\"ios\" | \"md\""
|
|
3540
|
+
}
|
|
3541
|
+
},
|
|
2908
3542
|
{
|
|
2909
3543
|
"name": "src",
|
|
2910
3544
|
"description": "The image URL. This attribute is mandatory for the `<img>` element.",
|
|
@@ -2913,6 +3547,15 @@
|
|
|
2913
3547
|
"kind": "expression",
|
|
2914
3548
|
"type": "string | undefined"
|
|
2915
3549
|
}
|
|
3550
|
+
},
|
|
3551
|
+
{
|
|
3552
|
+
"name": "theme",
|
|
3553
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3554
|
+
"required": false,
|
|
3555
|
+
"value": {
|
|
3556
|
+
"kind": "expression",
|
|
3557
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3558
|
+
}
|
|
2916
3559
|
}
|
|
2917
3560
|
],
|
|
2918
3561
|
"slots": [],
|
|
@@ -2968,6 +3611,15 @@
|
|
|
2968
3611
|
"type": "boolean"
|
|
2969
3612
|
}
|
|
2970
3613
|
},
|
|
3614
|
+
{
|
|
3615
|
+
"name": "mode",
|
|
3616
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3617
|
+
"required": false,
|
|
3618
|
+
"value": {
|
|
3619
|
+
"kind": "expression",
|
|
3620
|
+
"type": "\"ios\" | \"md\""
|
|
3621
|
+
}
|
|
3622
|
+
},
|
|
2971
3623
|
{
|
|
2972
3624
|
"name": "position",
|
|
2973
3625
|
"description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
|
|
@@ -2978,6 +3630,25 @@
|
|
|
2978
3630
|
"type": "\"bottom\" | \"top\""
|
|
2979
3631
|
}
|
|
2980
3632
|
},
|
|
3633
|
+
{
|
|
3634
|
+
"name": "preserve-rerender-scroll-position",
|
|
3635
|
+
"description": "If `true`, the infinite scroll will preserve the scroll position\nwhen the content is re-rendered. This is useful when the content is\nre-rendered with new keys, and the scroll position should be preserved.",
|
|
3636
|
+
"required": false,
|
|
3637
|
+
"default": "false",
|
|
3638
|
+
"value": {
|
|
3639
|
+
"kind": "expression",
|
|
3640
|
+
"type": "boolean"
|
|
3641
|
+
}
|
|
3642
|
+
},
|
|
3643
|
+
{
|
|
3644
|
+
"name": "theme",
|
|
3645
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3646
|
+
"required": false,
|
|
3647
|
+
"value": {
|
|
3648
|
+
"kind": "expression",
|
|
3649
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3650
|
+
}
|
|
3651
|
+
},
|
|
2981
3652
|
{
|
|
2982
3653
|
"name": "threshold",
|
|
2983
3654
|
"description": "The threshold distance from the bottom\nof the content to call the `infinite` output event when scrolled.\nThe threshold value can be either a percent, or\nin pixels. For example, use the value of `10%` for the `infinite`\noutput event to get called when the user has scrolled 10%\nfrom the bottom of the page. Use the value `100px` when the\nscroll is within 100 pixels from the bottom of the page.",
|
|
@@ -3029,6 +3700,24 @@
|
|
|
3029
3700
|
"kind": "expression",
|
|
3030
3701
|
"type": "IonicSafeString | string | undefined"
|
|
3031
3702
|
}
|
|
3703
|
+
},
|
|
3704
|
+
{
|
|
3705
|
+
"name": "mode",
|
|
3706
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3707
|
+
"required": false,
|
|
3708
|
+
"value": {
|
|
3709
|
+
"kind": "expression",
|
|
3710
|
+
"type": "\"ios\" | \"md\""
|
|
3711
|
+
}
|
|
3712
|
+
},
|
|
3713
|
+
{
|
|
3714
|
+
"name": "theme",
|
|
3715
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3716
|
+
"required": false,
|
|
3717
|
+
"value": {
|
|
3718
|
+
"kind": "expression",
|
|
3719
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3720
|
+
}
|
|
3032
3721
|
}
|
|
3033
3722
|
],
|
|
3034
3723
|
"slots": [],
|
|
@@ -3178,7 +3867,7 @@
|
|
|
3178
3867
|
},
|
|
3179
3868
|
{
|
|
3180
3869
|
"name": "fill",
|
|
3181
|
-
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available
|
|
3870
|
+
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available when the theme is `\"md\"`.",
|
|
3182
3871
|
"required": false,
|
|
3183
3872
|
"value": {
|
|
3184
3873
|
"kind": "expression",
|
|
@@ -3214,12 +3903,11 @@
|
|
|
3214
3903
|
},
|
|
3215
3904
|
{
|
|
3216
3905
|
"name": "label-placement",
|
|
3217
|
-
"description": "Where to place the label relative to the input.\n`\"start\"`: The label will appear to the left of the input in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the input in LTR and to the left in RTL.\n`\"floating\"`: The label will appear smaller and above the input when the input is focused or it has a value. Otherwise it will appear on top of the input.\n`\"stacked\"`: The label will appear smaller and above the input regardless even when the input is blurred or has no value.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").",
|
|
3906
|
+
"description": "Where to place the label relative to the input.\n`\"start\"`: The label will appear to the left of the input in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the input in LTR and to the left in RTL.\n`\"floating\"`: The label will appear smaller and above the input when the input is focused or it has a value. Otherwise it will appear on top of the input.\n`\"stacked\"`: The label will appear smaller and above the input regardless even when the input is blurred or has no value.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").\n\nDefaults to \"stacked\" for the ionic theme, or \"start\" for all other themes.\n\nIn the ionic theme, only the values \"stacked\" and \"floating\" are supported.",
|
|
3218
3907
|
"required": false,
|
|
3219
|
-
"default": "'start'",
|
|
3220
3908
|
"value": {
|
|
3221
3909
|
"kind": "expression",
|
|
3222
|
-
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\""
|
|
3910
|
+
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\" | undefined"
|
|
3223
3911
|
}
|
|
3224
3912
|
},
|
|
3225
3913
|
{
|
|
@@ -3260,7 +3948,7 @@
|
|
|
3260
3948
|
},
|
|
3261
3949
|
{
|
|
3262
3950
|
"name": "mode",
|
|
3263
|
-
"description": "The mode determines
|
|
3951
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3264
3952
|
"required": false,
|
|
3265
3953
|
"value": {
|
|
3266
3954
|
"kind": "expression",
|
|
@@ -3326,11 +4014,21 @@
|
|
|
3326
4014
|
},
|
|
3327
4015
|
{
|
|
3328
4016
|
"name": "shape",
|
|
3329
|
-
"description": "
|
|
4017
|
+
"description": "Set to `\"soft\"` for an input with slightly rounded corners, `\"round\"` for an input with fully\nrounded corners, or `\"rectangular\"` for an input without rounded corners.\nDefaults to `\"round\"` for the ionic theme, and `undefined` for all other themes.\nOnly applies when the fill is set to `\"solid\"` or `\"outline\"`.",
|
|
4018
|
+
"required": false,
|
|
4019
|
+
"value": {
|
|
4020
|
+
"kind": "expression",
|
|
4021
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
4022
|
+
}
|
|
4023
|
+
},
|
|
4024
|
+
{
|
|
4025
|
+
"name": "size",
|
|
4026
|
+
"description": "The size of the input. If \"large\", it will have an increased height. By default the\nsize is medium. This property only applies to the `\"ionic\"` theme.",
|
|
3330
4027
|
"required": false,
|
|
4028
|
+
"default": "'medium'",
|
|
3331
4029
|
"value": {
|
|
3332
4030
|
"kind": "expression",
|
|
3333
|
-
"type": "\"
|
|
4031
|
+
"type": "\"large\" | \"medium\" | \"xlarge\" | undefined"
|
|
3334
4032
|
}
|
|
3335
4033
|
},
|
|
3336
4034
|
{
|
|
@@ -3352,6 +4050,15 @@
|
|
|
3352
4050
|
"type": "string | undefined"
|
|
3353
4051
|
}
|
|
3354
4052
|
},
|
|
4053
|
+
{
|
|
4054
|
+
"name": "theme",
|
|
4055
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4056
|
+
"required": false,
|
|
4057
|
+
"value": {
|
|
4058
|
+
"kind": "expression",
|
|
4059
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4060
|
+
}
|
|
4061
|
+
},
|
|
3355
4062
|
{
|
|
3356
4063
|
"name": "type",
|
|
3357
4064
|
"description": "The type of control to display. The default type is text.",
|
|
@@ -3497,6 +4204,15 @@
|
|
|
3497
4204
|
"type": "number"
|
|
3498
4205
|
}
|
|
3499
4206
|
},
|
|
4207
|
+
{
|
|
4208
|
+
"name": "mode",
|
|
4209
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4210
|
+
"required": false,
|
|
4211
|
+
"value": {
|
|
4212
|
+
"kind": "expression",
|
|
4213
|
+
"type": "\"ios\" | \"md\""
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
3500
4216
|
{
|
|
3501
4217
|
"name": "pattern",
|
|
3502
4218
|
"description": "A regex pattern string for allowed characters. Defaults based on type.\n\nFor numbers (`type=\"number\"`): `\"[\\p{N}]\"`\nFor text (`type=\"text\"`): `\"[\\p{L}\\p{N}]\"`",
|
|
@@ -3545,6 +4261,15 @@
|
|
|
3545
4261
|
"type": "\"large\" | \"medium\" | \"small\""
|
|
3546
4262
|
}
|
|
3547
4263
|
},
|
|
4264
|
+
{
|
|
4265
|
+
"name": "theme",
|
|
4266
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4267
|
+
"required": false,
|
|
4268
|
+
"value": {
|
|
4269
|
+
"kind": "expression",
|
|
4270
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4271
|
+
}
|
|
4272
|
+
},
|
|
3548
4273
|
{
|
|
3549
4274
|
"name": "type",
|
|
3550
4275
|
"description": "The type of input allowed in the input boxes.",
|
|
@@ -3699,7 +4424,7 @@
|
|
|
3699
4424
|
},
|
|
3700
4425
|
{
|
|
3701
4426
|
"name": "detail",
|
|
3702
|
-
"description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `
|
|
4427
|
+
"description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `theme`\nis `\"ios\"` and an `href` or `button` property is present.",
|
|
3703
4428
|
"required": false,
|
|
3704
4429
|
"value": {
|
|
3705
4430
|
"kind": "expression",
|
|
@@ -3710,10 +4435,9 @@
|
|
|
3710
4435
|
"name": "detail-icon",
|
|
3711
4436
|
"description": "The icon to use when `detail` is set to `true`.",
|
|
3712
4437
|
"required": false,
|
|
3713
|
-
"default": "chevronForward",
|
|
3714
4438
|
"value": {
|
|
3715
4439
|
"kind": "expression",
|
|
3716
|
-
"type": "string"
|
|
4440
|
+
"type": "string | undefined"
|
|
3717
4441
|
}
|
|
3718
4442
|
},
|
|
3719
4443
|
{
|
|
@@ -3755,7 +4479,7 @@
|
|
|
3755
4479
|
},
|
|
3756
4480
|
{
|
|
3757
4481
|
"name": "mode",
|
|
3758
|
-
"description": "The mode determines
|
|
4482
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3759
4483
|
"required": false,
|
|
3760
4484
|
"value": {
|
|
3761
4485
|
"kind": "expression",
|
|
@@ -3799,6 +4523,15 @@
|
|
|
3799
4523
|
"type": "string | undefined"
|
|
3800
4524
|
}
|
|
3801
4525
|
},
|
|
4526
|
+
{
|
|
4527
|
+
"name": "theme",
|
|
4528
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4529
|
+
"required": false,
|
|
4530
|
+
"value": {
|
|
4531
|
+
"kind": "expression",
|
|
4532
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4533
|
+
}
|
|
4534
|
+
},
|
|
3802
4535
|
{
|
|
3803
4536
|
"name": "type",
|
|
3804
4537
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -3846,7 +4579,7 @@
|
|
|
3846
4579
|
},
|
|
3847
4580
|
{
|
|
3848
4581
|
"name": "mode",
|
|
3849
|
-
"description": "The mode determines
|
|
4582
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3850
4583
|
"required": false,
|
|
3851
4584
|
"value": {
|
|
3852
4585
|
"kind": "expression",
|
|
@@ -3862,6 +4595,15 @@
|
|
|
3862
4595
|
"kind": "expression",
|
|
3863
4596
|
"type": "boolean"
|
|
3864
4597
|
}
|
|
4598
|
+
},
|
|
4599
|
+
{
|
|
4600
|
+
"name": "theme",
|
|
4601
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4602
|
+
"required": false,
|
|
4603
|
+
"value": {
|
|
4604
|
+
"kind": "expression",
|
|
4605
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4606
|
+
}
|
|
3865
4607
|
}
|
|
3866
4608
|
],
|
|
3867
4609
|
"slots": [
|
|
@@ -3888,7 +4630,26 @@
|
|
|
3888
4630
|
"module": "@ionic/core/src/components/item-group/item-group.d.ts",
|
|
3889
4631
|
"symbol": "ItemGroup"
|
|
3890
4632
|
},
|
|
3891
|
-
"attributes": [
|
|
4633
|
+
"attributes": [
|
|
4634
|
+
{
|
|
4635
|
+
"name": "mode",
|
|
4636
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4637
|
+
"required": false,
|
|
4638
|
+
"value": {
|
|
4639
|
+
"kind": "expression",
|
|
4640
|
+
"type": "\"ios\" | \"md\""
|
|
4641
|
+
}
|
|
4642
|
+
},
|
|
4643
|
+
{
|
|
4644
|
+
"name": "theme",
|
|
4645
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4646
|
+
"required": false,
|
|
4647
|
+
"value": {
|
|
4648
|
+
"kind": "expression",
|
|
4649
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4650
|
+
}
|
|
4651
|
+
}
|
|
4652
|
+
],
|
|
3892
4653
|
"slots": [],
|
|
3893
4654
|
"events": []
|
|
3894
4655
|
},
|
|
@@ -3948,9 +4709,19 @@
|
|
|
3948
4709
|
"type": "string | undefined"
|
|
3949
4710
|
}
|
|
3950
4711
|
},
|
|
4712
|
+
{
|
|
4713
|
+
"name": "hue",
|
|
4714
|
+
"description": "Set to `\"bold\"` for an option with vibrant, bold colors or to `\"subtle\"` for\nan option with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
|
|
4715
|
+
"required": false,
|
|
4716
|
+
"default": "'subtle'",
|
|
4717
|
+
"value": {
|
|
4718
|
+
"kind": "expression",
|
|
4719
|
+
"type": "\"bold\" | \"subtle\" | undefined"
|
|
4720
|
+
}
|
|
4721
|
+
},
|
|
3951
4722
|
{
|
|
3952
4723
|
"name": "mode",
|
|
3953
|
-
"description": "The mode determines
|
|
4724
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3954
4725
|
"required": false,
|
|
3955
4726
|
"value": {
|
|
3956
4727
|
"kind": "expression",
|
|
@@ -3966,6 +4737,15 @@
|
|
|
3966
4737
|
"type": "string | undefined"
|
|
3967
4738
|
}
|
|
3968
4739
|
},
|
|
4740
|
+
{
|
|
4741
|
+
"name": "shape",
|
|
4742
|
+
"description": "Set to `\"rectangular\"` for non-rounded corners.\nSet to `\"soft\"` for slightly rounded corners.\nSet to `\"round\"` for fully rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
4743
|
+
"required": false,
|
|
4744
|
+
"value": {
|
|
4745
|
+
"kind": "expression",
|
|
4746
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
4747
|
+
}
|
|
4748
|
+
},
|
|
3969
4749
|
{
|
|
3970
4750
|
"name": "target",
|
|
3971
4751
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
@@ -3975,6 +4755,15 @@
|
|
|
3975
4755
|
"type": "string | undefined"
|
|
3976
4756
|
}
|
|
3977
4757
|
},
|
|
4758
|
+
{
|
|
4759
|
+
"name": "theme",
|
|
4760
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4761
|
+
"required": false,
|
|
4762
|
+
"value": {
|
|
4763
|
+
"kind": "expression",
|
|
4764
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4765
|
+
}
|
|
4766
|
+
},
|
|
3978
4767
|
{
|
|
3979
4768
|
"name": "type",
|
|
3980
4769
|
"description": "The type of the button.",
|
|
@@ -4023,6 +4812,15 @@
|
|
|
4023
4812
|
"symbol": "ItemOptions"
|
|
4024
4813
|
},
|
|
4025
4814
|
"attributes": [
|
|
4815
|
+
{
|
|
4816
|
+
"name": "mode",
|
|
4817
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4818
|
+
"required": false,
|
|
4819
|
+
"value": {
|
|
4820
|
+
"kind": "expression",
|
|
4821
|
+
"type": "\"ios\" | \"md\""
|
|
4822
|
+
}
|
|
4823
|
+
},
|
|
4026
4824
|
{
|
|
4027
4825
|
"name": "side",
|
|
4028
4826
|
"description": "The side the option button should be on. Possible values: `\"start\"` and `\"end\"`. If you have multiple `ion-item-options`, a side must be provided for each.",
|
|
@@ -4032,6 +4830,15 @@
|
|
|
4032
4830
|
"kind": "expression",
|
|
4033
4831
|
"type": "\"end\" | \"start\""
|
|
4034
4832
|
}
|
|
4833
|
+
},
|
|
4834
|
+
{
|
|
4835
|
+
"name": "theme",
|
|
4836
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4837
|
+
"required": false,
|
|
4838
|
+
"value": {
|
|
4839
|
+
"kind": "expression",
|
|
4840
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4841
|
+
}
|
|
4035
4842
|
}
|
|
4036
4843
|
],
|
|
4037
4844
|
"slots": [],
|
|
@@ -4066,6 +4873,24 @@
|
|
|
4066
4873
|
"kind": "expression",
|
|
4067
4874
|
"type": "boolean"
|
|
4068
4875
|
}
|
|
4876
|
+
},
|
|
4877
|
+
{
|
|
4878
|
+
"name": "mode",
|
|
4879
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4880
|
+
"required": false,
|
|
4881
|
+
"value": {
|
|
4882
|
+
"kind": "expression",
|
|
4883
|
+
"type": "\"ios\" | \"md\""
|
|
4884
|
+
}
|
|
4885
|
+
},
|
|
4886
|
+
{
|
|
4887
|
+
"name": "theme",
|
|
4888
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4889
|
+
"required": false,
|
|
4890
|
+
"value": {
|
|
4891
|
+
"kind": "expression",
|
|
4892
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4893
|
+
}
|
|
4069
4894
|
}
|
|
4070
4895
|
],
|
|
4071
4896
|
"slots": [],
|
|
@@ -4102,7 +4927,7 @@
|
|
|
4102
4927
|
},
|
|
4103
4928
|
{
|
|
4104
4929
|
"name": "mode",
|
|
4105
|
-
"description": "The mode determines
|
|
4930
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4106
4931
|
"required": false,
|
|
4107
4932
|
"value": {
|
|
4108
4933
|
"kind": "expression",
|
|
@@ -4117,6 +4942,15 @@
|
|
|
4117
4942
|
"kind": "expression",
|
|
4118
4943
|
"type": "\"fixed\" | \"floating\" | \"stacked\" | undefined"
|
|
4119
4944
|
}
|
|
4945
|
+
},
|
|
4946
|
+
{
|
|
4947
|
+
"name": "theme",
|
|
4948
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4949
|
+
"required": false,
|
|
4950
|
+
"value": {
|
|
4951
|
+
"kind": "expression",
|
|
4952
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4953
|
+
}
|
|
4120
4954
|
}
|
|
4121
4955
|
],
|
|
4122
4956
|
"slots": [],
|
|
@@ -4152,12 +4986,30 @@
|
|
|
4152
4986
|
},
|
|
4153
4987
|
{
|
|
4154
4988
|
"name": "mode",
|
|
4155
|
-
"description": "The mode determines
|
|
4989
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4156
4990
|
"required": false,
|
|
4157
4991
|
"value": {
|
|
4158
4992
|
"kind": "expression",
|
|
4159
4993
|
"type": "\"ios\" | \"md\""
|
|
4160
4994
|
}
|
|
4995
|
+
},
|
|
4996
|
+
{
|
|
4997
|
+
"name": "shape",
|
|
4998
|
+
"description": "Set to `\"soft\"` for slightly rounded corners,\n`\"round\"` for fully rounded corners,\nor `\"rectangular\"` for no rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme\nwhen inset is `true`\ndefaults to `\"rectangular\"` for the `ionic`\ntheme when inset is `false`,\nundefined for all other themes.",
|
|
4999
|
+
"required": false,
|
|
5000
|
+
"value": {
|
|
5001
|
+
"kind": "expression",
|
|
5002
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
5003
|
+
}
|
|
5004
|
+
},
|
|
5005
|
+
{
|
|
5006
|
+
"name": "theme",
|
|
5007
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5008
|
+
"required": false,
|
|
5009
|
+
"value": {
|
|
5010
|
+
"kind": "expression",
|
|
5011
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5012
|
+
}
|
|
4161
5013
|
}
|
|
4162
5014
|
],
|
|
4163
5015
|
"slots": [],
|
|
@@ -4192,12 +5044,21 @@
|
|
|
4192
5044
|
},
|
|
4193
5045
|
{
|
|
4194
5046
|
"name": "mode",
|
|
4195
|
-
"description": "The mode determines
|
|
5047
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4196
5048
|
"required": false,
|
|
4197
5049
|
"value": {
|
|
4198
5050
|
"kind": "expression",
|
|
4199
5051
|
"type": "\"ios\" | \"md\""
|
|
4200
5052
|
}
|
|
5053
|
+
},
|
|
5054
|
+
{
|
|
5055
|
+
"name": "theme",
|
|
5056
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5057
|
+
"required": false,
|
|
5058
|
+
"value": {
|
|
5059
|
+
"kind": "expression",
|
|
5060
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5061
|
+
}
|
|
4201
5062
|
}
|
|
4202
5063
|
],
|
|
4203
5064
|
"slots": [],
|
|
@@ -4309,7 +5170,7 @@
|
|
|
4309
5170
|
},
|
|
4310
5171
|
{
|
|
4311
5172
|
"name": "mode",
|
|
4312
|
-
"description": "The mode determines
|
|
5173
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4313
5174
|
"required": false,
|
|
4314
5175
|
"value": {
|
|
4315
5176
|
"kind": "expression",
|
|
@@ -4335,9 +5196,18 @@
|
|
|
4335
5196
|
"type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | null | undefined"
|
|
4336
5197
|
}
|
|
4337
5198
|
},
|
|
5199
|
+
{
|
|
5200
|
+
"name": "theme",
|
|
5201
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5202
|
+
"required": false,
|
|
5203
|
+
"value": {
|
|
5204
|
+
"kind": "expression",
|
|
5205
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5206
|
+
}
|
|
5207
|
+
},
|
|
4338
5208
|
{
|
|
4339
5209
|
"name": "translucent",
|
|
4340
|
-
"description": "If `true`, the loading indicator will be translucent.\nOnly applies when the
|
|
5210
|
+
"description": "If `true`, the loading indicator will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
|
|
4341
5211
|
"required": false,
|
|
4342
5212
|
"default": "false",
|
|
4343
5213
|
"value": {
|
|
@@ -4486,6 +5356,15 @@
|
|
|
4486
5356
|
"type": "string | undefined"
|
|
4487
5357
|
}
|
|
4488
5358
|
},
|
|
5359
|
+
{
|
|
5360
|
+
"name": "mode",
|
|
5361
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5362
|
+
"required": false,
|
|
5363
|
+
"value": {
|
|
5364
|
+
"kind": "expression",
|
|
5365
|
+
"type": "\"ios\" | \"md\""
|
|
5366
|
+
}
|
|
5367
|
+
},
|
|
4489
5368
|
{
|
|
4490
5369
|
"name": "side",
|
|
4491
5370
|
"description": "Which side of the view the menu should be placed.",
|
|
@@ -4506,6 +5385,15 @@
|
|
|
4506
5385
|
"type": "boolean"
|
|
4507
5386
|
}
|
|
4508
5387
|
},
|
|
5388
|
+
{
|
|
5389
|
+
"name": "theme",
|
|
5390
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5391
|
+
"required": false,
|
|
5392
|
+
"value": {
|
|
5393
|
+
"kind": "expression",
|
|
5394
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5395
|
+
}
|
|
5396
|
+
},
|
|
4509
5397
|
{
|
|
4510
5398
|
"name": "type",
|
|
4511
5399
|
"description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
|
|
@@ -4609,13 +5497,22 @@
|
|
|
4609
5497
|
},
|
|
4610
5498
|
{
|
|
4611
5499
|
"name": "mode",
|
|
4612
|
-
"description": "The mode determines
|
|
5500
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4613
5501
|
"required": false,
|
|
4614
5502
|
"value": {
|
|
4615
5503
|
"kind": "expression",
|
|
4616
5504
|
"type": "\"ios\" | \"md\""
|
|
4617
5505
|
}
|
|
4618
5506
|
},
|
|
5507
|
+
{
|
|
5508
|
+
"name": "theme",
|
|
5509
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5510
|
+
"required": false,
|
|
5511
|
+
"value": {
|
|
5512
|
+
"kind": "expression",
|
|
5513
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5514
|
+
}
|
|
5515
|
+
},
|
|
4619
5516
|
{
|
|
4620
5517
|
"name": "type",
|
|
4621
5518
|
"description": "The type of the button.",
|
|
@@ -4657,6 +5554,24 @@
|
|
|
4657
5554
|
"kind": "expression",
|
|
4658
5555
|
"type": "string | undefined"
|
|
4659
5556
|
}
|
|
5557
|
+
},
|
|
5558
|
+
{
|
|
5559
|
+
"name": "mode",
|
|
5560
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5561
|
+
"required": false,
|
|
5562
|
+
"value": {
|
|
5563
|
+
"kind": "expression",
|
|
5564
|
+
"type": "\"ios\" | \"md\""
|
|
5565
|
+
}
|
|
5566
|
+
},
|
|
5567
|
+
{
|
|
5568
|
+
"name": "theme",
|
|
5569
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5570
|
+
"required": false,
|
|
5571
|
+
"value": {
|
|
5572
|
+
"kind": "expression",
|
|
5573
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5574
|
+
}
|
|
4660
5575
|
}
|
|
4661
5576
|
],
|
|
4662
5577
|
"slots": [
|
|
@@ -4832,7 +5747,7 @@
|
|
|
4832
5747
|
},
|
|
4833
5748
|
{
|
|
4834
5749
|
"name": "mode",
|
|
4835
|
-
"description": "The mode determines
|
|
5750
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4836
5751
|
"required": false,
|
|
4837
5752
|
"value": {
|
|
4838
5753
|
"kind": "expression",
|
|
@@ -4849,13 +5764,31 @@
|
|
|
4849
5764
|
}
|
|
4850
5765
|
},
|
|
4851
5766
|
{
|
|
4852
|
-
"name": "
|
|
4853
|
-
"description": "
|
|
5767
|
+
"name": "shape",
|
|
5768
|
+
"description": "Set to `\"soft\"` for a modal with slightly rounded corners,\n`\"round\"` for a modal with fully rounded corners, or `\"rectangular\"`\nfor a modal without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
5769
|
+
"required": false,
|
|
5770
|
+
"value": {
|
|
5771
|
+
"kind": "expression",
|
|
5772
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
5773
|
+
}
|
|
5774
|
+
},
|
|
5775
|
+
{
|
|
5776
|
+
"name": "show-backdrop",
|
|
5777
|
+
"description": "If `true`, a backdrop will be displayed behind the modal.\nThis property controls whether or not the backdrop\ndarkens the screen when the modal is presented.\nIt does not control whether or not the backdrop\nis active or present in the DOM.",
|
|
5778
|
+
"required": false,
|
|
5779
|
+
"default": "true",
|
|
5780
|
+
"value": {
|
|
5781
|
+
"kind": "expression",
|
|
5782
|
+
"type": "boolean"
|
|
5783
|
+
}
|
|
5784
|
+
},
|
|
5785
|
+
{
|
|
5786
|
+
"name": "theme",
|
|
5787
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4854
5788
|
"required": false,
|
|
4855
|
-
"default": "true",
|
|
4856
5789
|
"value": {
|
|
4857
5790
|
"kind": "expression",
|
|
4858
|
-
"type": "
|
|
5791
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4859
5792
|
}
|
|
4860
5793
|
},
|
|
4861
5794
|
{
|
|
@@ -5017,12 +5950,21 @@
|
|
|
5017
5950
|
},
|
|
5018
5951
|
{
|
|
5019
5952
|
"name": "mode",
|
|
5020
|
-
"description": "The mode determines
|
|
5953
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5021
5954
|
"required": false,
|
|
5022
5955
|
"value": {
|
|
5023
5956
|
"kind": "expression",
|
|
5024
5957
|
"type": "\"ios\" | \"md\""
|
|
5025
5958
|
}
|
|
5959
|
+
},
|
|
5960
|
+
{
|
|
5961
|
+
"name": "theme",
|
|
5962
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5963
|
+
"required": false,
|
|
5964
|
+
"value": {
|
|
5965
|
+
"kind": "expression",
|
|
5966
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5967
|
+
}
|
|
5026
5968
|
}
|
|
5027
5969
|
],
|
|
5028
5970
|
"slots": [],
|
|
@@ -5039,12 +5981,21 @@
|
|
|
5039
5981
|
"attributes": [
|
|
5040
5982
|
{
|
|
5041
5983
|
"name": "mode",
|
|
5042
|
-
"description": "The mode determines
|
|
5984
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5043
5985
|
"required": false,
|
|
5044
5986
|
"value": {
|
|
5045
5987
|
"kind": "expression",
|
|
5046
5988
|
"type": "\"ios\" | \"md\""
|
|
5047
5989
|
}
|
|
5990
|
+
},
|
|
5991
|
+
{
|
|
5992
|
+
"name": "theme",
|
|
5993
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5994
|
+
"required": false,
|
|
5995
|
+
"value": {
|
|
5996
|
+
"kind": "expression",
|
|
5997
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5998
|
+
}
|
|
5048
5999
|
}
|
|
5049
6000
|
],
|
|
5050
6001
|
"slots": [],
|
|
@@ -5081,13 +6032,22 @@
|
|
|
5081
6032
|
},
|
|
5082
6033
|
{
|
|
5083
6034
|
"name": "mode",
|
|
5084
|
-
"description": "The mode determines
|
|
6035
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5085
6036
|
"required": false,
|
|
5086
6037
|
"value": {
|
|
5087
6038
|
"kind": "expression",
|
|
5088
6039
|
"type": "\"ios\" | \"md\""
|
|
5089
6040
|
}
|
|
5090
6041
|
},
|
|
6042
|
+
{
|
|
6043
|
+
"name": "theme",
|
|
6044
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6045
|
+
"required": false,
|
|
6046
|
+
"value": {
|
|
6047
|
+
"kind": "expression",
|
|
6048
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6049
|
+
}
|
|
6050
|
+
},
|
|
5091
6051
|
{
|
|
5092
6052
|
"name": "value",
|
|
5093
6053
|
"description": "The selected option in the picker.",
|
|
@@ -5150,6 +6110,24 @@
|
|
|
5150
6110
|
"type": "boolean"
|
|
5151
6111
|
}
|
|
5152
6112
|
},
|
|
6113
|
+
{
|
|
6114
|
+
"name": "mode",
|
|
6115
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6116
|
+
"required": false,
|
|
6117
|
+
"value": {
|
|
6118
|
+
"kind": "expression",
|
|
6119
|
+
"type": "\"ios\" | \"md\""
|
|
6120
|
+
}
|
|
6121
|
+
},
|
|
6122
|
+
{
|
|
6123
|
+
"name": "theme",
|
|
6124
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6125
|
+
"required": false,
|
|
6126
|
+
"value": {
|
|
6127
|
+
"kind": "expression",
|
|
6128
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6129
|
+
}
|
|
6130
|
+
},
|
|
5153
6131
|
{
|
|
5154
6132
|
"name": "value",
|
|
5155
6133
|
"description": "The text value of the option.",
|
|
@@ -5280,7 +6258,7 @@
|
|
|
5280
6258
|
},
|
|
5281
6259
|
{
|
|
5282
6260
|
"name": "mode",
|
|
5283
|
-
"description": "The mode determines
|
|
6261
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5284
6262
|
"required": false,
|
|
5285
6263
|
"value": {
|
|
5286
6264
|
"kind": "expression",
|
|
@@ -5297,6 +6275,15 @@
|
|
|
5297
6275
|
"type": "boolean"
|
|
5298
6276
|
}
|
|
5299
6277
|
},
|
|
6278
|
+
{
|
|
6279
|
+
"name": "theme",
|
|
6280
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6281
|
+
"required": false,
|
|
6282
|
+
"value": {
|
|
6283
|
+
"kind": "expression",
|
|
6284
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6285
|
+
}
|
|
6286
|
+
},
|
|
5300
6287
|
{
|
|
5301
6288
|
"name": "trigger",
|
|
5302
6289
|
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
@@ -5402,7 +6389,7 @@
|
|
|
5402
6389
|
"attributes": [
|
|
5403
6390
|
{
|
|
5404
6391
|
"name": "alignment",
|
|
5405
|
-
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for
|
|
6392
|
+
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
|
|
5406
6393
|
"required": false,
|
|
5407
6394
|
"value": {
|
|
5408
6395
|
"kind": "expression",
|
|
@@ -5421,7 +6408,7 @@
|
|
|
5421
6408
|
},
|
|
5422
6409
|
{
|
|
5423
6410
|
"name": "arrow",
|
|
5424
|
-
"description": "If `true`, the popover will display an arrow that points at the\n`reference`
|
|
6411
|
+
"description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme.",
|
|
5425
6412
|
"required": false,
|
|
5426
6413
|
"default": "true",
|
|
5427
6414
|
"value": {
|
|
@@ -5545,7 +6532,7 @@
|
|
|
5545
6532
|
},
|
|
5546
6533
|
{
|
|
5547
6534
|
"name": "mode",
|
|
5548
|
-
"description": "The mode determines
|
|
6535
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5549
6536
|
"required": false,
|
|
5550
6537
|
"value": {
|
|
5551
6538
|
"kind": "expression",
|
|
@@ -5592,9 +6579,18 @@
|
|
|
5592
6579
|
"type": "\"auto\" | \"cover\""
|
|
5593
6580
|
}
|
|
5594
6581
|
},
|
|
6582
|
+
{
|
|
6583
|
+
"name": "theme",
|
|
6584
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6585
|
+
"required": false,
|
|
6586
|
+
"value": {
|
|
6587
|
+
"kind": "expression",
|
|
6588
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6589
|
+
}
|
|
6590
|
+
},
|
|
5595
6591
|
{
|
|
5596
6592
|
"name": "translucent",
|
|
5597
|
-
"description": "If `true`, the popover will be translucent.\nOnly applies when the
|
|
6593
|
+
"description": "If `true`, the popover will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
|
|
5598
6594
|
"required": false,
|
|
5599
6595
|
"default": "false",
|
|
5600
6596
|
"value": {
|
|
@@ -5741,7 +6737,7 @@
|
|
|
5741
6737
|
},
|
|
5742
6738
|
{
|
|
5743
6739
|
"name": "mode",
|
|
5744
|
-
"description": "The mode determines
|
|
6740
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5745
6741
|
"required": false,
|
|
5746
6742
|
"value": {
|
|
5747
6743
|
"kind": "expression",
|
|
@@ -5758,6 +6754,24 @@
|
|
|
5758
6754
|
"type": "boolean"
|
|
5759
6755
|
}
|
|
5760
6756
|
},
|
|
6757
|
+
{
|
|
6758
|
+
"name": "shape",
|
|
6759
|
+
"description": "Set to `\"round\"` for a progress bar with rounded corners, or `\"rectangular\"`\nfor a progress bar without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
6760
|
+
"required": false,
|
|
6761
|
+
"value": {
|
|
6762
|
+
"kind": "expression",
|
|
6763
|
+
"type": "\"rectangular\" | \"round\" | undefined"
|
|
6764
|
+
}
|
|
6765
|
+
},
|
|
6766
|
+
{
|
|
6767
|
+
"name": "theme",
|
|
6768
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6769
|
+
"required": false,
|
|
6770
|
+
"value": {
|
|
6771
|
+
"kind": "expression",
|
|
6772
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6773
|
+
}
|
|
6774
|
+
},
|
|
5761
6775
|
{
|
|
5762
6776
|
"name": "type",
|
|
5763
6777
|
"description": "The state of the progress bar, based on if the time the process takes is known or not.\nDefault options are: `\"determinate\"` (no animation), `\"indeterminate\"` (animate from left to right).",
|
|
@@ -5840,7 +6854,7 @@
|
|
|
5840
6854
|
},
|
|
5841
6855
|
{
|
|
5842
6856
|
"name": "mode",
|
|
5843
|
-
"description": "The mode determines
|
|
6857
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5844
6858
|
"required": false,
|
|
5845
6859
|
"value": {
|
|
5846
6860
|
"kind": "expression",
|
|
@@ -5857,6 +6871,15 @@
|
|
|
5857
6871
|
"type": "string"
|
|
5858
6872
|
}
|
|
5859
6873
|
},
|
|
6874
|
+
{
|
|
6875
|
+
"name": "theme",
|
|
6876
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6877
|
+
"required": false,
|
|
6878
|
+
"value": {
|
|
6879
|
+
"kind": "expression",
|
|
6880
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6881
|
+
}
|
|
6882
|
+
},
|
|
5860
6883
|
{
|
|
5861
6884
|
"name": "value",
|
|
5862
6885
|
"description": "the value of the radio.",
|
|
@@ -5942,6 +6965,15 @@
|
|
|
5942
6965
|
"type": "string | undefined"
|
|
5943
6966
|
}
|
|
5944
6967
|
},
|
|
6968
|
+
{
|
|
6969
|
+
"name": "mode",
|
|
6970
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6971
|
+
"required": false,
|
|
6972
|
+
"value": {
|
|
6973
|
+
"kind": "expression",
|
|
6974
|
+
"type": "\"ios\" | \"md\""
|
|
6975
|
+
}
|
|
6976
|
+
},
|
|
5945
6977
|
{
|
|
5946
6978
|
"name": "name",
|
|
5947
6979
|
"description": "The name of the control, which is submitted with the form data.",
|
|
@@ -5952,6 +6984,15 @@
|
|
|
5952
6984
|
"type": "string"
|
|
5953
6985
|
}
|
|
5954
6986
|
},
|
|
6987
|
+
{
|
|
6988
|
+
"name": "theme",
|
|
6989
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6990
|
+
"required": false,
|
|
6991
|
+
"value": {
|
|
6992
|
+
"kind": "expression",
|
|
6993
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6994
|
+
}
|
|
6995
|
+
},
|
|
5955
6996
|
{
|
|
5956
6997
|
"name": "value",
|
|
5957
6998
|
"description": "the value of the radio group.",
|
|
@@ -6073,7 +7114,7 @@
|
|
|
6073
7114
|
},
|
|
6074
7115
|
{
|
|
6075
7116
|
"name": "mode",
|
|
6076
|
-
"description": "The mode determines
|
|
7117
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6077
7118
|
"required": false,
|
|
6078
7119
|
"value": {
|
|
6079
7120
|
"kind": "expression",
|
|
@@ -6130,6 +7171,15 @@
|
|
|
6130
7171
|
"type": "number"
|
|
6131
7172
|
}
|
|
6132
7173
|
},
|
|
7174
|
+
{
|
|
7175
|
+
"name": "theme",
|
|
7176
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7177
|
+
"required": false,
|
|
7178
|
+
"value": {
|
|
7179
|
+
"kind": "expression",
|
|
7180
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7181
|
+
}
|
|
7182
|
+
},
|
|
6133
7183
|
{
|
|
6134
7184
|
"name": "ticks",
|
|
6135
7185
|
"description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
|
|
@@ -6259,7 +7309,7 @@
|
|
|
6259
7309
|
},
|
|
6260
7310
|
{
|
|
6261
7311
|
"name": "mode",
|
|
6262
|
-
"description": "The mode determines
|
|
7312
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6263
7313
|
"required": false,
|
|
6264
7314
|
"value": {
|
|
6265
7315
|
"kind": "expression",
|
|
@@ -6305,6 +7355,15 @@
|
|
|
6305
7355
|
"kind": "expression",
|
|
6306
7356
|
"type": "string"
|
|
6307
7357
|
}
|
|
7358
|
+
},
|
|
7359
|
+
{
|
|
7360
|
+
"name": "theme",
|
|
7361
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7362
|
+
"required": false,
|
|
7363
|
+
"value": {
|
|
7364
|
+
"kind": "expression",
|
|
7365
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7366
|
+
}
|
|
6308
7367
|
}
|
|
6309
7368
|
],
|
|
6310
7369
|
"slots": [],
|
|
@@ -6370,6 +7429,15 @@
|
|
|
6370
7429
|
"symbol": "RefresherContent"
|
|
6371
7430
|
},
|
|
6372
7431
|
"attributes": [
|
|
7432
|
+
{
|
|
7433
|
+
"name": "mode",
|
|
7434
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7435
|
+
"required": false,
|
|
7436
|
+
"value": {
|
|
7437
|
+
"kind": "expression",
|
|
7438
|
+
"type": "\"ios\" | \"md\""
|
|
7439
|
+
}
|
|
7440
|
+
},
|
|
6373
7441
|
{
|
|
6374
7442
|
"name": "pulling-icon",
|
|
6375
7443
|
"description": "A static icon or a spinner to display when you begin to pull down.\nA spinner name can be provided to gradually show tick marks\nwhen pulling down on iOS devices.",
|
|
@@ -6405,6 +7473,15 @@
|
|
|
6405
7473
|
"kind": "expression",
|
|
6406
7474
|
"type": "IonicSafeString | string | undefined"
|
|
6407
7475
|
}
|
|
7476
|
+
},
|
|
7477
|
+
{
|
|
7478
|
+
"name": "theme",
|
|
7479
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7480
|
+
"required": false,
|
|
7481
|
+
"value": {
|
|
7482
|
+
"kind": "expression",
|
|
7483
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7484
|
+
}
|
|
6408
7485
|
}
|
|
6409
7486
|
],
|
|
6410
7487
|
"slots": [],
|
|
@@ -6418,7 +7495,26 @@
|
|
|
6418
7495
|
"module": "@ionic/core/src/components/reorder/reorder.d.ts",
|
|
6419
7496
|
"symbol": "Reorder"
|
|
6420
7497
|
},
|
|
6421
|
-
"attributes": [
|
|
7498
|
+
"attributes": [
|
|
7499
|
+
{
|
|
7500
|
+
"name": "mode",
|
|
7501
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7502
|
+
"required": false,
|
|
7503
|
+
"value": {
|
|
7504
|
+
"kind": "expression",
|
|
7505
|
+
"type": "\"ios\" | \"md\""
|
|
7506
|
+
}
|
|
7507
|
+
},
|
|
7508
|
+
{
|
|
7509
|
+
"name": "theme",
|
|
7510
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7511
|
+
"required": false,
|
|
7512
|
+
"value": {
|
|
7513
|
+
"kind": "expression",
|
|
7514
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7515
|
+
}
|
|
7516
|
+
}
|
|
7517
|
+
],
|
|
6422
7518
|
"slots": [],
|
|
6423
7519
|
"events": []
|
|
6424
7520
|
},
|
|
@@ -6440,6 +7536,24 @@
|
|
|
6440
7536
|
"kind": "expression",
|
|
6441
7537
|
"type": "boolean"
|
|
6442
7538
|
}
|
|
7539
|
+
},
|
|
7540
|
+
{
|
|
7541
|
+
"name": "mode",
|
|
7542
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7543
|
+
"required": false,
|
|
7544
|
+
"value": {
|
|
7545
|
+
"kind": "expression",
|
|
7546
|
+
"type": "\"ios\" | \"md\""
|
|
7547
|
+
}
|
|
7548
|
+
},
|
|
7549
|
+
{
|
|
7550
|
+
"name": "theme",
|
|
7551
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7552
|
+
"required": false,
|
|
7553
|
+
"value": {
|
|
7554
|
+
"kind": "expression",
|
|
7555
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7556
|
+
}
|
|
6443
7557
|
}
|
|
6444
7558
|
],
|
|
6445
7559
|
"slots": [],
|
|
@@ -6495,6 +7609,24 @@
|
|
|
6495
7609
|
"symbol": "RippleEffect"
|
|
6496
7610
|
},
|
|
6497
7611
|
"attributes": [
|
|
7612
|
+
{
|
|
7613
|
+
"name": "mode",
|
|
7614
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7615
|
+
"required": false,
|
|
7616
|
+
"value": {
|
|
7617
|
+
"kind": "expression",
|
|
7618
|
+
"type": "\"ios\" | \"md\""
|
|
7619
|
+
}
|
|
7620
|
+
},
|
|
7621
|
+
{
|
|
7622
|
+
"name": "theme",
|
|
7623
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7624
|
+
"required": false,
|
|
7625
|
+
"value": {
|
|
7626
|
+
"kind": "expression",
|
|
7627
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7628
|
+
}
|
|
7629
|
+
},
|
|
6498
7630
|
{
|
|
6499
7631
|
"name": "type",
|
|
6500
7632
|
"description": "Sets the type of ripple-effect:\n\n- `bounded`: the ripple effect expands from the user's click position\n- `unbounded`: the ripple effect expands from the center of the button and overflows the container.\n\nNOTE: Surfaces for bounded ripples should have the overflow property set to hidden,\nwhile surfaces for unbounded ripples should have it set to visible.",
|
|
@@ -6554,6 +7686,24 @@
|
|
|
6554
7686
|
"type": "undefined | { [key: string]: any; }"
|
|
6555
7687
|
}
|
|
6556
7688
|
},
|
|
7689
|
+
{
|
|
7690
|
+
"name": "mode",
|
|
7691
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7692
|
+
"required": false,
|
|
7693
|
+
"value": {
|
|
7694
|
+
"kind": "expression",
|
|
7695
|
+
"type": "\"ios\" | \"md\""
|
|
7696
|
+
}
|
|
7697
|
+
},
|
|
7698
|
+
{
|
|
7699
|
+
"name": "theme",
|
|
7700
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7701
|
+
"required": false,
|
|
7702
|
+
"value": {
|
|
7703
|
+
"kind": "expression",
|
|
7704
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7705
|
+
}
|
|
7706
|
+
},
|
|
6557
7707
|
{
|
|
6558
7708
|
"name": "url",
|
|
6559
7709
|
"description": "Relative path that needs to match in order for this route to apply.\n\nAccepts paths similar to expressjs so that you can define parameters\nin the url /foo/:bar where bar would be available in incoming props.",
|
|
@@ -6587,7 +7737,26 @@
|
|
|
6587
7737
|
"module": "@ionic/core/src/components/row/row.d.ts",
|
|
6588
7738
|
"symbol": "Row"
|
|
6589
7739
|
},
|
|
6590
|
-
"attributes": [
|
|
7740
|
+
"attributes": [
|
|
7741
|
+
{
|
|
7742
|
+
"name": "mode",
|
|
7743
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7744
|
+
"required": false,
|
|
7745
|
+
"value": {
|
|
7746
|
+
"kind": "expression",
|
|
7747
|
+
"type": "\"ios\" | \"md\""
|
|
7748
|
+
}
|
|
7749
|
+
},
|
|
7750
|
+
{
|
|
7751
|
+
"name": "theme",
|
|
7752
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7753
|
+
"required": false,
|
|
7754
|
+
"value": {
|
|
7755
|
+
"kind": "expression",
|
|
7756
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7757
|
+
}
|
|
7758
|
+
}
|
|
7759
|
+
],
|
|
6591
7760
|
"slots": [],
|
|
6592
7761
|
"events": []
|
|
6593
7762
|
},
|
|
@@ -6642,17 +7811,16 @@
|
|
|
6642
7811
|
},
|
|
6643
7812
|
{
|
|
6644
7813
|
"name": "cancel-button-icon",
|
|
6645
|
-
"description": "Set the cancel button icon. Only
|
|
7814
|
+
"description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`.",
|
|
6646
7815
|
"required": false,
|
|
6647
|
-
"default": "config.get('backButtonIcon', arrowBackSharp) as string",
|
|
6648
7816
|
"value": {
|
|
6649
7817
|
"kind": "expression",
|
|
6650
|
-
"type": "string"
|
|
7818
|
+
"type": "string | undefined"
|
|
6651
7819
|
}
|
|
6652
7820
|
},
|
|
6653
7821
|
{
|
|
6654
7822
|
"name": "cancel-button-text",
|
|
6655
|
-
"description": "Set the cancel button text. Only
|
|
7823
|
+
"description": "Set the cancel button text. Only available when the theme is `\"ios\"`.",
|
|
6656
7824
|
"required": false,
|
|
6657
7825
|
"default": "'Cancel'",
|
|
6658
7826
|
"value": {
|
|
@@ -6662,7 +7830,7 @@
|
|
|
6662
7830
|
},
|
|
6663
7831
|
{
|
|
6664
7832
|
"name": "clear-icon",
|
|
6665
|
-
"description": "Set the clear icon. Defaults to
|
|
7833
|
+
"description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme.",
|
|
6666
7834
|
"required": false,
|
|
6667
7835
|
"value": {
|
|
6668
7836
|
"kind": "expression",
|
|
@@ -6735,7 +7903,7 @@
|
|
|
6735
7903
|
},
|
|
6736
7904
|
{
|
|
6737
7905
|
"name": "mode",
|
|
6738
|
-
"description": "The mode determines
|
|
7906
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6739
7907
|
"required": false,
|
|
6740
7908
|
"value": {
|
|
6741
7909
|
"kind": "expression",
|
|
@@ -6764,11 +7932,20 @@
|
|
|
6764
7932
|
},
|
|
6765
7933
|
{
|
|
6766
7934
|
"name": "search-icon",
|
|
6767
|
-
"description": "The icon to use as the search icon. Defaults to
|
|
7935
|
+
"description": "The icon to use as the search icon. Defaults to `\"search-outline\"` in\nthe `\"ios\"` theme and `\"search-sharp\"` in the `\"md\"` and `\"ionic\"` themes.\nIf `false`, no search icon will be displayed.",
|
|
6768
7936
|
"required": false,
|
|
6769
7937
|
"value": {
|
|
6770
7938
|
"kind": "expression",
|
|
6771
|
-
"type": "string | undefined"
|
|
7939
|
+
"type": "boolean | string | undefined"
|
|
7940
|
+
}
|
|
7941
|
+
},
|
|
7942
|
+
{
|
|
7943
|
+
"name": "shape",
|
|
7944
|
+
"description": "Set to `\"soft\"` for a searchbar with slightly rounded corners,\n`\"round\"` for a searchbar with fully rounded corners,\nor `\"rectangular\"` for a searchbar without rounded corners.\n\nDefaults to `\"round\"` for the ionic theme, and `undefined` for all other themes.",
|
|
7945
|
+
"required": false,
|
|
7946
|
+
"value": {
|
|
7947
|
+
"kind": "expression",
|
|
7948
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
6772
7949
|
}
|
|
6773
7950
|
},
|
|
6774
7951
|
{
|
|
@@ -6791,6 +7968,15 @@
|
|
|
6791
7968
|
"type": "\"always\" | \"focus\" | \"never\""
|
|
6792
7969
|
}
|
|
6793
7970
|
},
|
|
7971
|
+
{
|
|
7972
|
+
"name": "size",
|
|
7973
|
+
"description": "Set to `\"large\"` for a searchbar with an increase in height,\nwhile \"small\" and \"medium\" provide progressively smaller heights.\n\nDefaults to `\"medium\"` for the ionic theme, and `undefined` for all other themes.",
|
|
7974
|
+
"required": false,
|
|
7975
|
+
"value": {
|
|
7976
|
+
"kind": "expression",
|
|
7977
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined"
|
|
7978
|
+
}
|
|
7979
|
+
},
|
|
6794
7980
|
{
|
|
6795
7981
|
"name": "spellcheck",
|
|
6796
7982
|
"description": "If `true`, enable spellcheck on the input.",
|
|
@@ -6801,6 +7987,15 @@
|
|
|
6801
7987
|
"type": "boolean"
|
|
6802
7988
|
}
|
|
6803
7989
|
},
|
|
7990
|
+
{
|
|
7991
|
+
"name": "theme",
|
|
7992
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7993
|
+
"required": false,
|
|
7994
|
+
"value": {
|
|
7995
|
+
"kind": "expression",
|
|
7996
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7997
|
+
}
|
|
7998
|
+
},
|
|
6804
7999
|
{
|
|
6805
8000
|
"name": "type",
|
|
6806
8001
|
"description": "Set the type of the input.",
|
|
@@ -6916,7 +8111,7 @@
|
|
|
6916
8111
|
},
|
|
6917
8112
|
{
|
|
6918
8113
|
"name": "mode",
|
|
6919
|
-
"description": "The mode determines
|
|
8114
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6920
8115
|
"required": false,
|
|
6921
8116
|
"value": {
|
|
6922
8117
|
"kind": "expression",
|
|
@@ -6953,6 +8148,15 @@
|
|
|
6953
8148
|
"type": "boolean"
|
|
6954
8149
|
}
|
|
6955
8150
|
},
|
|
8151
|
+
{
|
|
8152
|
+
"name": "theme",
|
|
8153
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8154
|
+
"required": false,
|
|
8155
|
+
"value": {
|
|
8156
|
+
"kind": "expression",
|
|
8157
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8158
|
+
}
|
|
8159
|
+
},
|
|
6956
8160
|
{
|
|
6957
8161
|
"name": "value",
|
|
6958
8162
|
"description": "the value of the segment.",
|
|
@@ -7017,13 +8221,22 @@
|
|
|
7017
8221
|
},
|
|
7018
8222
|
{
|
|
7019
8223
|
"name": "mode",
|
|
7020
|
-
"description": "The mode determines
|
|
8224
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7021
8225
|
"required": false,
|
|
7022
8226
|
"value": {
|
|
7023
8227
|
"kind": "expression",
|
|
7024
8228
|
"type": "\"ios\" | \"md\""
|
|
7025
8229
|
}
|
|
7026
8230
|
},
|
|
8231
|
+
{
|
|
8232
|
+
"name": "theme",
|
|
8233
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8234
|
+
"required": false,
|
|
8235
|
+
"value": {
|
|
8236
|
+
"kind": "expression",
|
|
8237
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8238
|
+
}
|
|
8239
|
+
},
|
|
7027
8240
|
{
|
|
7028
8241
|
"name": "type",
|
|
7029
8242
|
"description": "The type of the button.",
|
|
@@ -7113,6 +8326,16 @@
|
|
|
7113
8326
|
"symbol": "Select"
|
|
7114
8327
|
},
|
|
7115
8328
|
"attributes": [
|
|
8329
|
+
{
|
|
8330
|
+
"name": "cancel-icon",
|
|
8331
|
+
"description": "If `true`, the cancel button will display an icon instead of the `cancelText`.\nOnly applies when `interface` is set to `\"modal\"`. Has no effect on `\"action-sheet\"`,\n`\"alert\"`, or `\"popover\"` interfaces.\nWhen `cancelIcon` is `true`, the `cancelText` property is ignored for display\nbut is used as the accessible label for the icon button.",
|
|
8332
|
+
"required": false,
|
|
8333
|
+
"default": "false",
|
|
8334
|
+
"value": {
|
|
8335
|
+
"kind": "expression",
|
|
8336
|
+
"type": "boolean"
|
|
8337
|
+
}
|
|
8338
|
+
},
|
|
7116
8339
|
{
|
|
7117
8340
|
"name": "cancel-text",
|
|
7118
8341
|
"description": "The text to display on the cancel button.",
|
|
@@ -7162,7 +8385,7 @@
|
|
|
7162
8385
|
},
|
|
7163
8386
|
{
|
|
7164
8387
|
"name": "expanded-icon",
|
|
7165
|
-
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in
|
|
8388
|
+
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in `\"md\"` theme will be disabled. If undefined, `toggleIcon`\nwill be used for when the select is both open and closed.",
|
|
7166
8389
|
"required": false,
|
|
7167
8390
|
"value": {
|
|
7168
8391
|
"kind": "expression",
|
|
@@ -7171,7 +8394,7 @@
|
|
|
7171
8394
|
},
|
|
7172
8395
|
{
|
|
7173
8396
|
"name": "fill",
|
|
7174
|
-
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available in
|
|
8397
|
+
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available in the `\"md\"` theme.",
|
|
7175
8398
|
"required": false,
|
|
7176
8399
|
"value": {
|
|
7177
8400
|
"kind": "expression",
|
|
@@ -7237,7 +8460,7 @@
|
|
|
7237
8460
|
},
|
|
7238
8461
|
{
|
|
7239
8462
|
"name": "mode",
|
|
7240
|
-
"description": "The mode determines
|
|
8463
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7241
8464
|
"required": false,
|
|
7242
8465
|
"value": {
|
|
7243
8466
|
"kind": "expression",
|
|
@@ -7304,16 +8527,34 @@
|
|
|
7304
8527
|
},
|
|
7305
8528
|
{
|
|
7306
8529
|
"name": "shape",
|
|
7307
|
-
"description": "
|
|
8530
|
+
"description": "Set to `\"soft\"` for a select with slightly rounded corners,\n`\"round\"` for a select with fully rounded corners,\nor `\"rectangular\"` for a select without rounded corners.\n\nDefaults to `\"round\"` for the `\"ionic\"` theme, undefined for all other themes.",
|
|
7308
8531
|
"required": false,
|
|
7309
8532
|
"value": {
|
|
7310
8533
|
"kind": "expression",
|
|
7311
|
-
"type": "\"round\" | undefined"
|
|
8534
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
8535
|
+
}
|
|
8536
|
+
},
|
|
8537
|
+
{
|
|
8538
|
+
"name": "size",
|
|
8539
|
+
"description": "The size of the select. If \"large\" it will increase the height of the select, while\n\"small\" and \"medium\" provide progressively smaller heights.\n\nDefaults to `\"medium\"` for the ionic theme, and undefined for all other themes.",
|
|
8540
|
+
"required": false,
|
|
8541
|
+
"value": {
|
|
8542
|
+
"kind": "expression",
|
|
8543
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined"
|
|
8544
|
+
}
|
|
8545
|
+
},
|
|
8546
|
+
{
|
|
8547
|
+
"name": "theme",
|
|
8548
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8549
|
+
"required": false,
|
|
8550
|
+
"value": {
|
|
8551
|
+
"kind": "expression",
|
|
8552
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7312
8553
|
}
|
|
7313
8554
|
},
|
|
7314
8555
|
{
|
|
7315
8556
|
"name": "toggle-icon",
|
|
7316
|
-
"description": "The toggle icon to use. Defaults to
|
|
8557
|
+
"description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes.",
|
|
7317
8558
|
"required": false,
|
|
7318
8559
|
"value": {
|
|
7319
8560
|
"kind": "expression",
|
|
@@ -7406,6 +8647,16 @@
|
|
|
7406
8647
|
"symbol": "SelectModal"
|
|
7407
8648
|
},
|
|
7408
8649
|
"attributes": [
|
|
8650
|
+
{
|
|
8651
|
+
"name": "cancel-icon",
|
|
8652
|
+
"description": "If `true`, the cancel button will display a close icon instead of the `cancelText`.\nWhen `cancelIcon` is `true`, `cancelText` is not displayed visually but is still used\nas the accessible label (`aria-label`) for the button.",
|
|
8653
|
+
"required": false,
|
|
8654
|
+
"default": "false",
|
|
8655
|
+
"value": {
|
|
8656
|
+
"kind": "expression",
|
|
8657
|
+
"type": "boolean"
|
|
8658
|
+
}
|
|
8659
|
+
},
|
|
7409
8660
|
{
|
|
7410
8661
|
"name": "cancel-text",
|
|
7411
8662
|
"description": "The text to display on the cancel button.",
|
|
@@ -7457,6 +8708,15 @@
|
|
|
7457
8708
|
"symbol": "SelectOption"
|
|
7458
8709
|
},
|
|
7459
8710
|
"attributes": [
|
|
8711
|
+
{
|
|
8712
|
+
"name": "description",
|
|
8713
|
+
"description": "Text that is placed underneath the option text to provide additional details about the option.",
|
|
8714
|
+
"required": false,
|
|
8715
|
+
"value": {
|
|
8716
|
+
"kind": "expression",
|
|
8717
|
+
"type": "string | undefined"
|
|
8718
|
+
}
|
|
8719
|
+
},
|
|
7460
8720
|
{
|
|
7461
8721
|
"name": "disabled",
|
|
7462
8722
|
"description": "If `true`, the user cannot interact with the select option. This property does not apply when `interface=\"action-sheet\"` as `ion-action-sheet` does not allow for disabled buttons.",
|
|
@@ -7467,6 +8727,24 @@
|
|
|
7467
8727
|
"type": "boolean"
|
|
7468
8728
|
}
|
|
7469
8729
|
},
|
|
8730
|
+
{
|
|
8731
|
+
"name": "mode",
|
|
8732
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8733
|
+
"required": false,
|
|
8734
|
+
"value": {
|
|
8735
|
+
"kind": "expression",
|
|
8736
|
+
"type": "\"ios\" | \"md\""
|
|
8737
|
+
}
|
|
8738
|
+
},
|
|
8739
|
+
{
|
|
8740
|
+
"name": "theme",
|
|
8741
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8742
|
+
"required": false,
|
|
8743
|
+
"value": {
|
|
8744
|
+
"kind": "expression",
|
|
8745
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8746
|
+
}
|
|
8747
|
+
},
|
|
7470
8748
|
{
|
|
7471
8749
|
"name": "value",
|
|
7472
8750
|
"description": "The text value of the option.",
|
|
@@ -7477,7 +8755,20 @@
|
|
|
7477
8755
|
}
|
|
7478
8756
|
}
|
|
7479
8757
|
],
|
|
7480
|
-
"slots": [
|
|
8758
|
+
"slots": [
|
|
8759
|
+
{
|
|
8760
|
+
"name": "default",
|
|
8761
|
+
"description": "Content is placed between the named slots if provided without a slot."
|
|
8762
|
+
},
|
|
8763
|
+
{
|
|
8764
|
+
"name": "end",
|
|
8765
|
+
"description": "Content is placed to the right of the select option text in LTR, and to the left in RTL."
|
|
8766
|
+
},
|
|
8767
|
+
{
|
|
8768
|
+
"name": "start",
|
|
8769
|
+
"description": "Content is placed to the left of the select option text in LTR, and to the right in RTL."
|
|
8770
|
+
}
|
|
8771
|
+
],
|
|
7481
8772
|
"events": []
|
|
7482
8773
|
},
|
|
7483
8774
|
{
|
|
@@ -7498,6 +8789,24 @@
|
|
|
7498
8789
|
"kind": "expression",
|
|
7499
8790
|
"type": "boolean"
|
|
7500
8791
|
}
|
|
8792
|
+
},
|
|
8793
|
+
{
|
|
8794
|
+
"name": "mode",
|
|
8795
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8796
|
+
"required": false,
|
|
8797
|
+
"value": {
|
|
8798
|
+
"kind": "expression",
|
|
8799
|
+
"type": "\"ios\" | \"md\""
|
|
8800
|
+
}
|
|
8801
|
+
},
|
|
8802
|
+
{
|
|
8803
|
+
"name": "theme",
|
|
8804
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8805
|
+
"required": false,
|
|
8806
|
+
"value": {
|
|
8807
|
+
"kind": "expression",
|
|
8808
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8809
|
+
}
|
|
7501
8810
|
}
|
|
7502
8811
|
],
|
|
7503
8812
|
"slots": [],
|
|
@@ -7530,6 +8839,15 @@
|
|
|
7530
8839
|
"type": "number | undefined"
|
|
7531
8840
|
}
|
|
7532
8841
|
},
|
|
8842
|
+
{
|
|
8843
|
+
"name": "mode",
|
|
8844
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8845
|
+
"required": false,
|
|
8846
|
+
"value": {
|
|
8847
|
+
"kind": "expression",
|
|
8848
|
+
"type": "\"ios\" | \"md\""
|
|
8849
|
+
}
|
|
8850
|
+
},
|
|
7533
8851
|
{
|
|
7534
8852
|
"name": "name",
|
|
7535
8853
|
"description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
|
|
@@ -7548,6 +8866,24 @@
|
|
|
7548
8866
|
"kind": "expression",
|
|
7549
8867
|
"type": "boolean"
|
|
7550
8868
|
}
|
|
8869
|
+
},
|
|
8870
|
+
{
|
|
8871
|
+
"name": "size",
|
|
8872
|
+
"description": "Set to `\"xsmall\"` for the smallest size.\nSet to `\"small\"` for a smaller size.\nSet to `\"medium\"` for a medium size.\nSet to `\"large\"` for a large size.\nSet to `\"xlarge\"` for the largest size.\n\nDefaults to `\"xsmall\"` for the `ionic` theme, undefined for all other themes.",
|
|
8873
|
+
"required": false,
|
|
8874
|
+
"value": {
|
|
8875
|
+
"kind": "expression",
|
|
8876
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined"
|
|
8877
|
+
}
|
|
8878
|
+
},
|
|
8879
|
+
{
|
|
8880
|
+
"name": "theme",
|
|
8881
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8882
|
+
"required": false,
|
|
8883
|
+
"value": {
|
|
8884
|
+
"kind": "expression",
|
|
8885
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8886
|
+
}
|
|
7551
8887
|
}
|
|
7552
8888
|
],
|
|
7553
8889
|
"slots": [],
|
|
@@ -7581,6 +8917,24 @@
|
|
|
7581
8917
|
"type": "boolean"
|
|
7582
8918
|
}
|
|
7583
8919
|
},
|
|
8920
|
+
{
|
|
8921
|
+
"name": "mode",
|
|
8922
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8923
|
+
"required": false,
|
|
8924
|
+
"value": {
|
|
8925
|
+
"kind": "expression",
|
|
8926
|
+
"type": "\"ios\" | \"md\""
|
|
8927
|
+
}
|
|
8928
|
+
},
|
|
8929
|
+
{
|
|
8930
|
+
"name": "theme",
|
|
8931
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8932
|
+
"required": false,
|
|
8933
|
+
"value": {
|
|
8934
|
+
"kind": "expression",
|
|
8935
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8936
|
+
}
|
|
8937
|
+
},
|
|
7584
8938
|
{
|
|
7585
8939
|
"name": "when",
|
|
7586
8940
|
"description": "When the split-pane should be shown.\nCan be a CSS media query expression, or a shortcut expression.\nCan also be a boolean expression.",
|
|
@@ -7624,6 +8978,15 @@
|
|
|
7624
8978
|
"type": "Function | HTMLElement | null | string | undefined"
|
|
7625
8979
|
}
|
|
7626
8980
|
},
|
|
8981
|
+
{
|
|
8982
|
+
"name": "mode",
|
|
8983
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8984
|
+
"required": false,
|
|
8985
|
+
"value": {
|
|
8986
|
+
"kind": "expression",
|
|
8987
|
+
"type": "\"ios\" | \"md\""
|
|
8988
|
+
}
|
|
8989
|
+
},
|
|
7627
8990
|
{
|
|
7628
8991
|
"name": "tab",
|
|
7629
8992
|
"description": "A tab id must be provided for each `ion-tab`. It's used internally to reference\nthe selected tab or by the router to switch between them.",
|
|
@@ -7632,6 +8995,15 @@
|
|
|
7632
8995
|
"kind": "expression",
|
|
7633
8996
|
"type": "string"
|
|
7634
8997
|
}
|
|
8998
|
+
},
|
|
8999
|
+
{
|
|
9000
|
+
"name": "theme",
|
|
9001
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9002
|
+
"required": false,
|
|
9003
|
+
"value": {
|
|
9004
|
+
"kind": "expression",
|
|
9005
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9006
|
+
}
|
|
7635
9007
|
}
|
|
7636
9008
|
],
|
|
7637
9009
|
"slots": [],
|
|
@@ -7655,9 +9027,29 @@
|
|
|
7655
9027
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
7656
9028
|
}
|
|
7657
9029
|
},
|
|
9030
|
+
{
|
|
9031
|
+
"name": "expand",
|
|
9032
|
+
"description": "Set to `\"compact\"` to display a width based on the items\ninside the tab bar. This value will only work for the\n`ionic` theme.\n\nSet to `\"full\"` to display a full width tab bar.\n\nDefaults to `\"full\"`.",
|
|
9033
|
+
"required": false,
|
|
9034
|
+
"default": "'full'",
|
|
9035
|
+
"value": {
|
|
9036
|
+
"kind": "expression",
|
|
9037
|
+
"type": "\"compact\" | \"full\""
|
|
9038
|
+
}
|
|
9039
|
+
},
|
|
9040
|
+
{
|
|
9041
|
+
"name": "hide-on-scroll",
|
|
9042
|
+
"description": "If `true`, the tab bar will be hidden when the user scrolls down\nand shown when the user scrolls up.\nOnly applies when the theme is `\"ionic\"` and `expand` is `\"compact\"`.",
|
|
9043
|
+
"required": false,
|
|
9044
|
+
"default": "false",
|
|
9045
|
+
"value": {
|
|
9046
|
+
"kind": "expression",
|
|
9047
|
+
"type": "boolean"
|
|
9048
|
+
}
|
|
9049
|
+
},
|
|
7658
9050
|
{
|
|
7659
9051
|
"name": "mode",
|
|
7660
|
-
"description": "The mode determines
|
|
9052
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7661
9053
|
"required": false,
|
|
7662
9054
|
"value": {
|
|
7663
9055
|
"kind": "expression",
|
|
@@ -7673,9 +9065,27 @@
|
|
|
7673
9065
|
"type": "string | undefined"
|
|
7674
9066
|
}
|
|
7675
9067
|
},
|
|
9068
|
+
{
|
|
9069
|
+
"name": "shape",
|
|
9070
|
+
"description": "Set to `\"soft\"` for a tab bar with slightly rounded corners,\n`\"round\"` for a tab bar with fully rounded corners, or\n`\"rectangular\"` for a tab bar without rounded corners.\n\nDefaults to `\"round\"` for the `\"ionic\"` theme, undefined for all other themes.",
|
|
9071
|
+
"required": false,
|
|
9072
|
+
"value": {
|
|
9073
|
+
"kind": "expression",
|
|
9074
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
9075
|
+
}
|
|
9076
|
+
},
|
|
9077
|
+
{
|
|
9078
|
+
"name": "theme",
|
|
9079
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9080
|
+
"required": false,
|
|
9081
|
+
"value": {
|
|
9082
|
+
"kind": "expression",
|
|
9083
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9084
|
+
}
|
|
9085
|
+
},
|
|
7676
9086
|
{
|
|
7677
9087
|
"name": "translucent",
|
|
7678
|
-
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the
|
|
9088
|
+
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
|
|
7679
9089
|
"required": false,
|
|
7680
9090
|
"default": "false",
|
|
7681
9091
|
"value": {
|
|
@@ -7735,7 +9145,7 @@
|
|
|
7735
9145
|
},
|
|
7736
9146
|
{
|
|
7737
9147
|
"name": "mode",
|
|
7738
|
-
"description": "The mode determines
|
|
9148
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7739
9149
|
"required": false,
|
|
7740
9150
|
"value": {
|
|
7741
9151
|
"kind": "expression",
|
|
@@ -7761,6 +9171,15 @@
|
|
|
7761
9171
|
"type": "boolean"
|
|
7762
9172
|
}
|
|
7763
9173
|
},
|
|
9174
|
+
{
|
|
9175
|
+
"name": "shape",
|
|
9176
|
+
"description": "Set to `\"soft\"` for a tab-button with slightly rounded corners,\n`\"round\"` for a tab-button with fully rounded corners, or `\"rectangular\"`\nfor a tab-button without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
9177
|
+
"required": false,
|
|
9178
|
+
"value": {
|
|
9179
|
+
"kind": "expression",
|
|
9180
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
9181
|
+
}
|
|
9182
|
+
},
|
|
7764
9183
|
{
|
|
7765
9184
|
"name": "tab",
|
|
7766
9185
|
"description": "A tab id must be provided for each `ion-tab`. It's used internally to reference\nthe selected tab or by the router to switch between them.",
|
|
@@ -7778,6 +9197,15 @@
|
|
|
7778
9197
|
"kind": "expression",
|
|
7779
9198
|
"type": "string | undefined"
|
|
7780
9199
|
}
|
|
9200
|
+
},
|
|
9201
|
+
{
|
|
9202
|
+
"name": "theme",
|
|
9203
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9204
|
+
"required": false,
|
|
9205
|
+
"value": {
|
|
9206
|
+
"kind": "expression",
|
|
9207
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9208
|
+
}
|
|
7781
9209
|
}
|
|
7782
9210
|
],
|
|
7783
9211
|
"slots": [],
|
|
@@ -7791,7 +9219,26 @@
|
|
|
7791
9219
|
"module": "@ionic/core/src/components/tabs/tabs.d.ts",
|
|
7792
9220
|
"symbol": "Tabs"
|
|
7793
9221
|
},
|
|
7794
|
-
"attributes": [
|
|
9222
|
+
"attributes": [
|
|
9223
|
+
{
|
|
9224
|
+
"name": "mode",
|
|
9225
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
9226
|
+
"required": false,
|
|
9227
|
+
"value": {
|
|
9228
|
+
"kind": "expression",
|
|
9229
|
+
"type": "\"ios\" | \"md\""
|
|
9230
|
+
}
|
|
9231
|
+
},
|
|
9232
|
+
{
|
|
9233
|
+
"name": "theme",
|
|
9234
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9235
|
+
"required": false,
|
|
9236
|
+
"value": {
|
|
9237
|
+
"kind": "expression",
|
|
9238
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9239
|
+
}
|
|
9240
|
+
}
|
|
9241
|
+
],
|
|
7795
9242
|
"slots": [
|
|
7796
9243
|
{
|
|
7797
9244
|
"name": "default",
|
|
@@ -7849,12 +9296,21 @@
|
|
|
7849
9296
|
},
|
|
7850
9297
|
{
|
|
7851
9298
|
"name": "mode",
|
|
7852
|
-
"description": "The mode determines
|
|
9299
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7853
9300
|
"required": false,
|
|
7854
9301
|
"value": {
|
|
7855
9302
|
"kind": "expression",
|
|
7856
9303
|
"type": "\"ios\" | \"md\""
|
|
7857
9304
|
}
|
|
9305
|
+
},
|
|
9306
|
+
{
|
|
9307
|
+
"name": "theme",
|
|
9308
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9309
|
+
"required": false,
|
|
9310
|
+
"value": {
|
|
9311
|
+
"kind": "expression",
|
|
9312
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9313
|
+
}
|
|
7858
9314
|
}
|
|
7859
9315
|
],
|
|
7860
9316
|
"slots": [],
|
|
@@ -7985,7 +9441,7 @@
|
|
|
7985
9441
|
},
|
|
7986
9442
|
{
|
|
7987
9443
|
"name": "fill",
|
|
7988
|
-
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available
|
|
9444
|
+
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available when the theme is `\"md\"`.",
|
|
7989
9445
|
"required": false,
|
|
7990
9446
|
"value": {
|
|
7991
9447
|
"kind": "expression",
|
|
@@ -8049,7 +9505,7 @@
|
|
|
8049
9505
|
},
|
|
8050
9506
|
{
|
|
8051
9507
|
"name": "mode",
|
|
8052
|
-
"description": "The mode determines
|
|
9508
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8053
9509
|
"required": false,
|
|
8054
9510
|
"value": {
|
|
8055
9511
|
"kind": "expression",
|
|
@@ -8106,11 +9562,21 @@
|
|
|
8106
9562
|
},
|
|
8107
9563
|
{
|
|
8108
9564
|
"name": "shape",
|
|
8109
|
-
"description": "
|
|
9565
|
+
"description": "Set to `\"soft\"` for a textarea with slightly rounded corners,\n`\"round\"` for a textarea with fully rounded corners, or `\"rectangular\"`\nfor a textarea without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
9566
|
+
"required": false,
|
|
9567
|
+
"value": {
|
|
9568
|
+
"kind": "expression",
|
|
9569
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
9570
|
+
}
|
|
9571
|
+
},
|
|
9572
|
+
{
|
|
9573
|
+
"name": "size",
|
|
9574
|
+
"description": "The size of the textarea. If \"large\" it will increase the height of the textarea, while\n\"small\" and \"medium\" provide progressively smaller heights. The default size is \"medium\".\nThis property only applies to the `\"ionic\"` theme.",
|
|
8110
9575
|
"required": false,
|
|
9576
|
+
"default": "'medium'",
|
|
8111
9577
|
"value": {
|
|
8112
9578
|
"kind": "expression",
|
|
8113
|
-
"type": "\"
|
|
9579
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined"
|
|
8114
9580
|
}
|
|
8115
9581
|
},
|
|
8116
9582
|
{
|
|
@@ -8123,6 +9589,15 @@
|
|
|
8123
9589
|
"type": "boolean"
|
|
8124
9590
|
}
|
|
8125
9591
|
},
|
|
9592
|
+
{
|
|
9593
|
+
"name": "theme",
|
|
9594
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9595
|
+
"required": false,
|
|
9596
|
+
"value": {
|
|
9597
|
+
"kind": "expression",
|
|
9598
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9599
|
+
}
|
|
9600
|
+
},
|
|
8126
9601
|
{
|
|
8127
9602
|
"name": "value",
|
|
8128
9603
|
"description": "The value of the textarea.",
|
|
@@ -8208,7 +9683,26 @@
|
|
|
8208
9683
|
"module": "@ionic/core/src/components/thumbnail/thumbnail.d.ts",
|
|
8209
9684
|
"symbol": "Thumbnail"
|
|
8210
9685
|
},
|
|
8211
|
-
"attributes": [
|
|
9686
|
+
"attributes": [
|
|
9687
|
+
{
|
|
9688
|
+
"name": "mode",
|
|
9689
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
9690
|
+
"required": false,
|
|
9691
|
+
"value": {
|
|
9692
|
+
"kind": "expression",
|
|
9693
|
+
"type": "\"ios\" | \"md\""
|
|
9694
|
+
}
|
|
9695
|
+
},
|
|
9696
|
+
{
|
|
9697
|
+
"name": "theme",
|
|
9698
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9699
|
+
"required": false,
|
|
9700
|
+
"value": {
|
|
9701
|
+
"kind": "expression",
|
|
9702
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9703
|
+
}
|
|
9704
|
+
}
|
|
9705
|
+
],
|
|
8212
9706
|
"slots": [],
|
|
8213
9707
|
"events": []
|
|
8214
9708
|
},
|
|
@@ -8230,6 +9724,15 @@
|
|
|
8230
9724
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
8231
9725
|
}
|
|
8232
9726
|
},
|
|
9727
|
+
{
|
|
9728
|
+
"name": "mode",
|
|
9729
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
9730
|
+
"required": false,
|
|
9731
|
+
"value": {
|
|
9732
|
+
"kind": "expression",
|
|
9733
|
+
"type": "\"ios\" | \"md\""
|
|
9734
|
+
}
|
|
9735
|
+
},
|
|
8233
9736
|
{
|
|
8234
9737
|
"name": "size",
|
|
8235
9738
|
"description": "The size of the toolbar title.",
|
|
@@ -8238,6 +9741,15 @@
|
|
|
8238
9741
|
"kind": "expression",
|
|
8239
9742
|
"type": "\"large\" | \"small\" | undefined"
|
|
8240
9743
|
}
|
|
9744
|
+
},
|
|
9745
|
+
{
|
|
9746
|
+
"name": "theme",
|
|
9747
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9748
|
+
"required": false,
|
|
9749
|
+
"value": {
|
|
9750
|
+
"kind": "expression",
|
|
9751
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9752
|
+
}
|
|
8241
9753
|
}
|
|
8242
9754
|
],
|
|
8243
9755
|
"slots": [],
|
|
@@ -8326,6 +9838,16 @@
|
|
|
8326
9838
|
"type": "undefined | { [key: string]: any; }"
|
|
8327
9839
|
}
|
|
8328
9840
|
},
|
|
9841
|
+
{
|
|
9842
|
+
"name": "hue",
|
|
9843
|
+
"description": "Set to `\"bold\"` for a toast with vibrant, bold colors or to `\"subtle\"` for\na toast with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
|
|
9844
|
+
"required": false,
|
|
9845
|
+
"default": "'subtle'",
|
|
9846
|
+
"value": {
|
|
9847
|
+
"kind": "expression",
|
|
9848
|
+
"type": "\"bold\" | \"subtle\" | undefined"
|
|
9849
|
+
}
|
|
9850
|
+
},
|
|
8329
9851
|
{
|
|
8330
9852
|
"name": "icon",
|
|
8331
9853
|
"description": "The name of the icon to display, or the path to a valid SVG file. See `ion-icon`.\nhttps://ionic.io/ionicons",
|
|
@@ -8385,7 +9907,7 @@
|
|
|
8385
9907
|
},
|
|
8386
9908
|
{
|
|
8387
9909
|
"name": "mode",
|
|
8388
|
-
"description": "The mode determines
|
|
9910
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8389
9911
|
"required": false,
|
|
8390
9912
|
"value": {
|
|
8391
9913
|
"kind": "expression",
|
|
@@ -8411,6 +9933,15 @@
|
|
|
8411
9933
|
"type": "HTMLElement | string | undefined"
|
|
8412
9934
|
}
|
|
8413
9935
|
},
|
|
9936
|
+
{
|
|
9937
|
+
"name": "shape",
|
|
9938
|
+
"description": "Set to `\"soft\"` for a toast with slightly rounded corners,\n`\"round\"` for a toast with fully rounded corners, or `\"rectangular\"`\nfor a toast without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
9939
|
+
"required": false,
|
|
9940
|
+
"value": {
|
|
9941
|
+
"kind": "expression",
|
|
9942
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
9943
|
+
}
|
|
9944
|
+
},
|
|
8414
9945
|
{
|
|
8415
9946
|
"name": "swipe-gesture",
|
|
8416
9947
|
"description": "If set to 'vertical', the Toast can be dismissed with\na swipe gesture. The swipe direction is determined by\nthe value of the `position` property:\n`top`: The Toast can be swiped up to dismiss.\n`bottom`: The Toast can be swiped down to dismiss.\n`middle`: The Toast can be swiped up or down to dismiss.",
|
|
@@ -8420,9 +9951,18 @@
|
|
|
8420
9951
|
"type": "\"vertical\" | undefined"
|
|
8421
9952
|
}
|
|
8422
9953
|
},
|
|
9954
|
+
{
|
|
9955
|
+
"name": "theme",
|
|
9956
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9957
|
+
"required": false,
|
|
9958
|
+
"value": {
|
|
9959
|
+
"kind": "expression",
|
|
9960
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9961
|
+
}
|
|
9962
|
+
},
|
|
8423
9963
|
{
|
|
8424
9964
|
"name": "translucent",
|
|
8425
|
-
"description": "If `true`, the toast will be translucent.\nOnly applies when the
|
|
9965
|
+
"description": "If `true`, the toast will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
|
|
8426
9966
|
"required": false,
|
|
8427
9967
|
"default": "false",
|
|
8428
9968
|
"value": {
|
|
@@ -8620,7 +10160,7 @@
|
|
|
8620
10160
|
},
|
|
8621
10161
|
{
|
|
8622
10162
|
"name": "mode",
|
|
8623
|
-
"description": "The mode determines
|
|
10163
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8624
10164
|
"required": false,
|
|
8625
10165
|
"value": {
|
|
8626
10166
|
"kind": "expression",
|
|
@@ -8647,6 +10187,15 @@
|
|
|
8647
10187
|
"type": "boolean"
|
|
8648
10188
|
}
|
|
8649
10189
|
},
|
|
10190
|
+
{
|
|
10191
|
+
"name": "theme",
|
|
10192
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
10193
|
+
"required": false,
|
|
10194
|
+
"value": {
|
|
10195
|
+
"kind": "expression",
|
|
10196
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
10197
|
+
}
|
|
10198
|
+
},
|
|
8650
10199
|
{
|
|
8651
10200
|
"name": "value",
|
|
8652
10201
|
"description": "The value of the toggle does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a toggle is analogous to the value of a `<input type=\"checkbox\">`,\nit's only used when the toggle participates in a native `<form>`.",
|
|
@@ -8717,12 +10266,30 @@
|
|
|
8717
10266
|
},
|
|
8718
10267
|
{
|
|
8719
10268
|
"name": "mode",
|
|
8720
|
-
"description": "The mode determines
|
|
10269
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8721
10270
|
"required": false,
|
|
8722
10271
|
"value": {
|
|
8723
10272
|
"kind": "expression",
|
|
8724
10273
|
"type": "\"ios\" | \"md\""
|
|
8725
10274
|
}
|
|
10275
|
+
},
|
|
10276
|
+
{
|
|
10277
|
+
"name": "theme",
|
|
10278
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
10279
|
+
"required": false,
|
|
10280
|
+
"value": {
|
|
10281
|
+
"kind": "expression",
|
|
10282
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
10283
|
+
}
|
|
10284
|
+
},
|
|
10285
|
+
{
|
|
10286
|
+
"name": "title-placement",
|
|
10287
|
+
"description": "Where to place the title relative to the other toolbar content.\n`\"start\"`: The title will appear to the left of the toolbar content in LTR and to the right in RTL.\n`\"center\"`: The title will appear in the center of the toolbar.\n`\"end\"`: The title will appear to the right of the toolbar content in LTR and to the left in RTL.\n\nOnly applies in the `ionic` theme.",
|
|
10288
|
+
"required": false,
|
|
10289
|
+
"value": {
|
|
10290
|
+
"kind": "expression",
|
|
10291
|
+
"type": "\"center\" | \"end\" | \"start\" | undefined"
|
|
10292
|
+
}
|
|
8726
10293
|
}
|
|
8727
10294
|
],
|
|
8728
10295
|
"slots": [
|
|
@@ -8736,11 +10303,11 @@
|
|
|
8736
10303
|
},
|
|
8737
10304
|
{
|
|
8738
10305
|
"name": "primary",
|
|
8739
|
-
"description": "Content is placed to the right of the toolbar text in
|
|
10306
|
+
"description": "Content is placed to the right of the toolbar text in the `\"ios\"` theme, and to the far right in the `\"md\"` theme."
|
|
8740
10307
|
},
|
|
8741
10308
|
{
|
|
8742
10309
|
"name": "secondary",
|
|
8743
|
-
"description": "Content is placed to the left of the toolbar text in
|
|
10310
|
+
"description": "Content is placed to the left of the toolbar text in the `\"ios\"` theme, and directly to the right in the `\"md\"` theme."
|
|
8744
10311
|
},
|
|
8745
10312
|
{
|
|
8746
10313
|
"name": "start",
|