@ionic/vue 8.3.4-dev.11729642487.1f5bd24e → 8.3.4-dev.11729775016.14d81c8f
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.map +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.map +1 -1
- package/dist/index.js +29 -13
- package/dist/index.js.map +1 -1
- package/dist/types/components/Overlays.d.ts +1 -1
- package/dist/vetur/attributes.json +1447 -174
- package/dist/vetur/tags.json +197 -45
- package/dist/web-types.json +1326 -113
- 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.3.4-dev.
|
|
5
|
+
"version": "8.3.4-dev.11729775016.14d81c8f",
|
|
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,15 @@
|
|
|
156
164
|
"type": "boolean"
|
|
157
165
|
}
|
|
158
166
|
},
|
|
167
|
+
{
|
|
168
|
+
"name": "theme",
|
|
169
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
170
|
+
"required": false,
|
|
171
|
+
"value": {
|
|
172
|
+
"kind": "expression",
|
|
173
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
174
|
+
}
|
|
175
|
+
},
|
|
159
176
|
{
|
|
160
177
|
"name": "value",
|
|
161
178
|
"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 +303,7 @@
|
|
|
286
303
|
},
|
|
287
304
|
{
|
|
288
305
|
"name": "mode",
|
|
289
|
-
"description": "The mode determines
|
|
306
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
290
307
|
"required": false,
|
|
291
308
|
"value": {
|
|
292
309
|
"kind": "expression",
|
|
@@ -302,9 +319,18 @@
|
|
|
302
319
|
"type": "string | undefined"
|
|
303
320
|
}
|
|
304
321
|
},
|
|
322
|
+
{
|
|
323
|
+
"name": "theme",
|
|
324
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
325
|
+
"required": false,
|
|
326
|
+
"value": {
|
|
327
|
+
"kind": "expression",
|
|
328
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
329
|
+
}
|
|
330
|
+
},
|
|
305
331
|
{
|
|
306
332
|
"name": "translucent",
|
|
307
|
-
"description": "If `true`, the action sheet will be translucent.\nOnly applies when the
|
|
333
|
+
"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
334
|
"required": false,
|
|
309
335
|
"default": "false",
|
|
310
336
|
"value": {
|
|
@@ -531,7 +557,7 @@
|
|
|
531
557
|
},
|
|
532
558
|
{
|
|
533
559
|
"name": "mode",
|
|
534
|
-
"description": "The mode determines
|
|
560
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
535
561
|
"required": false,
|
|
536
562
|
"value": {
|
|
537
563
|
"kind": "expression",
|
|
@@ -547,9 +573,18 @@
|
|
|
547
573
|
"type": "string | undefined"
|
|
548
574
|
}
|
|
549
575
|
},
|
|
576
|
+
{
|
|
577
|
+
"name": "theme",
|
|
578
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
579
|
+
"required": false,
|
|
580
|
+
"value": {
|
|
581
|
+
"kind": "expression",
|
|
582
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
583
|
+
}
|
|
584
|
+
},
|
|
550
585
|
{
|
|
551
586
|
"name": "translucent",
|
|
552
|
-
"description": "If `true`, the alert will be translucent.\nOnly applies when the
|
|
587
|
+
"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
588
|
"required": false,
|
|
554
589
|
"default": "false",
|
|
555
590
|
"value": {
|
|
@@ -659,7 +694,44 @@
|
|
|
659
694
|
"module": "@ionic/core/src/components/avatar/avatar.d.ts",
|
|
660
695
|
"symbol": "Avatar"
|
|
661
696
|
},
|
|
662
|
-
"attributes": [
|
|
697
|
+
"attributes": [
|
|
698
|
+
{
|
|
699
|
+
"name": "mode",
|
|
700
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
701
|
+
"required": false,
|
|
702
|
+
"value": {
|
|
703
|
+
"kind": "expression",
|
|
704
|
+
"type": "\"ios\" | \"md\""
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"name": "shape",
|
|
709
|
+
"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.",
|
|
710
|
+
"required": false,
|
|
711
|
+
"value": {
|
|
712
|
+
"kind": "expression",
|
|
713
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "size",
|
|
718
|
+
"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.",
|
|
719
|
+
"required": false,
|
|
720
|
+
"value": {
|
|
721
|
+
"kind": "expression",
|
|
722
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxsmall\" | undefined"
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"name": "theme",
|
|
727
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
728
|
+
"required": false,
|
|
729
|
+
"value": {
|
|
730
|
+
"kind": "expression",
|
|
731
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
],
|
|
663
735
|
"slots": [],
|
|
664
736
|
"events": []
|
|
665
737
|
},
|
|
@@ -711,7 +783,7 @@
|
|
|
711
783
|
},
|
|
712
784
|
{
|
|
713
785
|
"name": "mode",
|
|
714
|
-
"description": "The mode determines
|
|
786
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
715
787
|
"required": false,
|
|
716
788
|
"value": {
|
|
717
789
|
"kind": "expression",
|
|
@@ -736,6 +808,15 @@
|
|
|
736
808
|
"type": "null | string | undefined"
|
|
737
809
|
}
|
|
738
810
|
},
|
|
811
|
+
{
|
|
812
|
+
"name": "theme",
|
|
813
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
814
|
+
"required": false,
|
|
815
|
+
"value": {
|
|
816
|
+
"kind": "expression",
|
|
817
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
818
|
+
}
|
|
819
|
+
},
|
|
739
820
|
{
|
|
740
821
|
"name": "type",
|
|
741
822
|
"description": "The type of the button.",
|
|
@@ -759,6 +840,15 @@
|
|
|
759
840
|
"symbol": "Backdrop"
|
|
760
841
|
},
|
|
761
842
|
"attributes": [
|
|
843
|
+
{
|
|
844
|
+
"name": "mode",
|
|
845
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
846
|
+
"required": false,
|
|
847
|
+
"value": {
|
|
848
|
+
"kind": "expression",
|
|
849
|
+
"type": "\"ios\" | \"md\""
|
|
850
|
+
}
|
|
851
|
+
},
|
|
762
852
|
{
|
|
763
853
|
"name": "stop-propagation",
|
|
764
854
|
"description": "If `true`, the backdrop will stop propagation on tap.",
|
|
@@ -779,6 +869,15 @@
|
|
|
779
869
|
"type": "boolean"
|
|
780
870
|
}
|
|
781
871
|
},
|
|
872
|
+
{
|
|
873
|
+
"name": "theme",
|
|
874
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
875
|
+
"required": false,
|
|
876
|
+
"value": {
|
|
877
|
+
"kind": "expression",
|
|
878
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
879
|
+
}
|
|
880
|
+
},
|
|
782
881
|
{
|
|
783
882
|
"name": "visible",
|
|
784
883
|
"description": "If `true`, the backdrop will be visible.",
|
|
@@ -824,12 +923,39 @@
|
|
|
824
923
|
},
|
|
825
924
|
{
|
|
826
925
|
"name": "mode",
|
|
827
|
-
"description": "The mode determines
|
|
926
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
828
927
|
"required": false,
|
|
829
928
|
"value": {
|
|
830
929
|
"kind": "expression",
|
|
831
930
|
"type": "\"ios\" | \"md\""
|
|
832
931
|
}
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"name": "shape",
|
|
935
|
+
"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.",
|
|
936
|
+
"required": false,
|
|
937
|
+
"value": {
|
|
938
|
+
"kind": "expression",
|
|
939
|
+
"type": "\"round | rectangular\" | \"soft\" | undefined"
|
|
940
|
+
}
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"name": "size",
|
|
944
|
+
"description": "Set to `\"xxsmall\"` for the smallest badge.\nSet to \"xsmall\" for a very small badge.\nSet to `\"small\"` for a small badge.\nSet to \"medium\" for a medium badge.\nSet to \"large\" for a large badge.\nSet to `\"xlarge\"` for the largest badge.\n\nDefaults to `\"small\"` for the `ionic` theme, undefined for all other themes.",
|
|
945
|
+
"required": false,
|
|
946
|
+
"value": {
|
|
947
|
+
"kind": "expression",
|
|
948
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxsmall\" | undefined"
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"name": "theme",
|
|
953
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
954
|
+
"required": false,
|
|
955
|
+
"value": {
|
|
956
|
+
"kind": "expression",
|
|
957
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
958
|
+
}
|
|
833
959
|
}
|
|
834
960
|
],
|
|
835
961
|
"slots": [],
|
|
@@ -893,7 +1019,7 @@
|
|
|
893
1019
|
},
|
|
894
1020
|
{
|
|
895
1021
|
"name": "mode",
|
|
896
|
-
"description": "The mode determines
|
|
1022
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
897
1023
|
"required": false,
|
|
898
1024
|
"value": {
|
|
899
1025
|
"kind": "expression",
|
|
@@ -945,6 +1071,15 @@
|
|
|
945
1071
|
"kind": "expression",
|
|
946
1072
|
"type": "string | undefined"
|
|
947
1073
|
}
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"name": "theme",
|
|
1077
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1078
|
+
"required": false,
|
|
1079
|
+
"value": {
|
|
1080
|
+
"kind": "expression",
|
|
1081
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1082
|
+
}
|
|
948
1083
|
}
|
|
949
1084
|
],
|
|
950
1085
|
"slots": [],
|
|
@@ -1020,12 +1155,21 @@
|
|
|
1020
1155
|
},
|
|
1021
1156
|
{
|
|
1022
1157
|
"name": "mode",
|
|
1023
|
-
"description": "The mode determines
|
|
1158
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1024
1159
|
"required": false,
|
|
1025
1160
|
"value": {
|
|
1026
1161
|
"kind": "expression",
|
|
1027
1162
|
"type": "\"ios\" | \"md\""
|
|
1028
1163
|
}
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"name": "theme",
|
|
1167
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1168
|
+
"required": false,
|
|
1169
|
+
"value": {
|
|
1170
|
+
"kind": "expression",
|
|
1171
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1172
|
+
}
|
|
1029
1173
|
}
|
|
1030
1174
|
],
|
|
1031
1175
|
"slots": [],
|
|
@@ -1127,7 +1271,7 @@
|
|
|
1127
1271
|
},
|
|
1128
1272
|
{
|
|
1129
1273
|
"name": "mode",
|
|
1130
|
-
"description": "The mode determines
|
|
1274
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1131
1275
|
"required": false,
|
|
1132
1276
|
"value": {
|
|
1133
1277
|
"kind": "expression",
|
|
@@ -1164,11 +1308,11 @@
|
|
|
1164
1308
|
},
|
|
1165
1309
|
{
|
|
1166
1310
|
"name": "shape",
|
|
1167
|
-
"description": "Set to `\"round\"` for a button with
|
|
1311
|
+
"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
1312
|
"required": false,
|
|
1169
1313
|
"value": {
|
|
1170
1314
|
"kind": "expression",
|
|
1171
|
-
"type": "\"round\" | undefined"
|
|
1315
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
1172
1316
|
}
|
|
1173
1317
|
},
|
|
1174
1318
|
{
|
|
@@ -1177,7 +1321,7 @@
|
|
|
1177
1321
|
"required": false,
|
|
1178
1322
|
"value": {
|
|
1179
1323
|
"kind": "expression",
|
|
1180
|
-
"type": "\"default\" | \"large\" | \"small\" | undefined"
|
|
1324
|
+
"type": "\"default\" | \"large\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined"
|
|
1181
1325
|
}
|
|
1182
1326
|
},
|
|
1183
1327
|
{
|
|
@@ -1199,6 +1343,15 @@
|
|
|
1199
1343
|
"type": "string | undefined"
|
|
1200
1344
|
}
|
|
1201
1345
|
},
|
|
1346
|
+
{
|
|
1347
|
+
"name": "theme",
|
|
1348
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1349
|
+
"required": false,
|
|
1350
|
+
"value": {
|
|
1351
|
+
"kind": "expression",
|
|
1352
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1353
|
+
}
|
|
1354
|
+
},
|
|
1202
1355
|
{
|
|
1203
1356
|
"name": "type",
|
|
1204
1357
|
"description": "The type of the button.",
|
|
@@ -1262,13 +1415,31 @@
|
|
|
1262
1415
|
"attributes": [
|
|
1263
1416
|
{
|
|
1264
1417
|
"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`
|
|
1418
|
+
"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
1419
|
"required": false,
|
|
1267
1420
|
"default": "false",
|
|
1268
1421
|
"value": {
|
|
1269
1422
|
"kind": "expression",
|
|
1270
1423
|
"type": "boolean"
|
|
1271
1424
|
}
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
"name": "mode",
|
|
1428
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1429
|
+
"required": false,
|
|
1430
|
+
"value": {
|
|
1431
|
+
"kind": "expression",
|
|
1432
|
+
"type": "\"ios\" | \"md\""
|
|
1433
|
+
}
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"name": "theme",
|
|
1437
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1438
|
+
"required": false,
|
|
1439
|
+
"value": {
|
|
1440
|
+
"kind": "expression",
|
|
1441
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1442
|
+
}
|
|
1272
1443
|
}
|
|
1273
1444
|
],
|
|
1274
1445
|
"slots": [],
|
|
@@ -1332,7 +1503,7 @@
|
|
|
1332
1503
|
},
|
|
1333
1504
|
{
|
|
1334
1505
|
"name": "mode",
|
|
1335
|
-
"description": "The mode determines
|
|
1506
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1336
1507
|
"required": false,
|
|
1337
1508
|
"value": {
|
|
1338
1509
|
"kind": "expression",
|
|
@@ -1367,6 +1538,16 @@
|
|
|
1367
1538
|
"type": "\"back\" | \"forward\" | \"root\""
|
|
1368
1539
|
}
|
|
1369
1540
|
},
|
|
1541
|
+
{
|
|
1542
|
+
"name": "shape",
|
|
1543
|
+
"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\"`.",
|
|
1544
|
+
"required": false,
|
|
1545
|
+
"default": "'round'",
|
|
1546
|
+
"value": {
|
|
1547
|
+
"kind": "expression",
|
|
1548
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
1549
|
+
}
|
|
1550
|
+
},
|
|
1370
1551
|
{
|
|
1371
1552
|
"name": "target",
|
|
1372
1553
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
@@ -1376,6 +1557,15 @@
|
|
|
1376
1557
|
"type": "string | undefined"
|
|
1377
1558
|
}
|
|
1378
1559
|
},
|
|
1560
|
+
{
|
|
1561
|
+
"name": "theme",
|
|
1562
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1563
|
+
"required": false,
|
|
1564
|
+
"value": {
|
|
1565
|
+
"kind": "expression",
|
|
1566
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1379
1569
|
{
|
|
1380
1570
|
"name": "type",
|
|
1381
1571
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -1401,12 +1591,21 @@
|
|
|
1401
1591
|
"attributes": [
|
|
1402
1592
|
{
|
|
1403
1593
|
"name": "mode",
|
|
1404
|
-
"description": "The mode determines
|
|
1594
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1405
1595
|
"required": false,
|
|
1406
1596
|
"value": {
|
|
1407
1597
|
"kind": "expression",
|
|
1408
1598
|
"type": "\"ios\" | \"md\""
|
|
1409
1599
|
}
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"name": "theme",
|
|
1603
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1604
|
+
"required": false,
|
|
1605
|
+
"value": {
|
|
1606
|
+
"kind": "expression",
|
|
1607
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1608
|
+
}
|
|
1410
1609
|
}
|
|
1411
1610
|
],
|
|
1412
1611
|
"slots": [],
|
|
@@ -1432,16 +1631,25 @@
|
|
|
1432
1631
|
},
|
|
1433
1632
|
{
|
|
1434
1633
|
"name": "mode",
|
|
1435
|
-
"description": "The mode determines
|
|
1634
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1436
1635
|
"required": false,
|
|
1437
1636
|
"value": {
|
|
1438
1637
|
"kind": "expression",
|
|
1439
1638
|
"type": "\"ios\" | \"md\""
|
|
1440
1639
|
}
|
|
1441
1640
|
},
|
|
1641
|
+
{
|
|
1642
|
+
"name": "theme",
|
|
1643
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1644
|
+
"required": false,
|
|
1645
|
+
"value": {
|
|
1646
|
+
"kind": "expression",
|
|
1647
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1442
1650
|
{
|
|
1443
1651
|
"name": "translucent",
|
|
1444
|
-
"description": "If `true`, the card header will be translucent.\nOnly applies when the
|
|
1652
|
+
"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
1653
|
"required": false,
|
|
1446
1654
|
"default": "false",
|
|
1447
1655
|
"value": {
|
|
@@ -1473,12 +1681,21 @@
|
|
|
1473
1681
|
},
|
|
1474
1682
|
{
|
|
1475
1683
|
"name": "mode",
|
|
1476
|
-
"description": "The mode determines
|
|
1684
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1477
1685
|
"required": false,
|
|
1478
1686
|
"value": {
|
|
1479
1687
|
"kind": "expression",
|
|
1480
1688
|
"type": "\"ios\" | \"md\""
|
|
1481
1689
|
}
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"name": "theme",
|
|
1693
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1694
|
+
"required": false,
|
|
1695
|
+
"value": {
|
|
1696
|
+
"kind": "expression",
|
|
1697
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1698
|
+
}
|
|
1482
1699
|
}
|
|
1483
1700
|
],
|
|
1484
1701
|
"slots": [],
|
|
@@ -1504,12 +1721,21 @@
|
|
|
1504
1721
|
},
|
|
1505
1722
|
{
|
|
1506
1723
|
"name": "mode",
|
|
1507
|
-
"description": "The mode determines
|
|
1724
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1508
1725
|
"required": false,
|
|
1509
1726
|
"value": {
|
|
1510
1727
|
"kind": "expression",
|
|
1511
1728
|
"type": "\"ios\" | \"md\""
|
|
1512
1729
|
}
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"name": "theme",
|
|
1733
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1734
|
+
"required": false,
|
|
1735
|
+
"value": {
|
|
1736
|
+
"kind": "expression",
|
|
1737
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1738
|
+
}
|
|
1513
1739
|
}
|
|
1514
1740
|
],
|
|
1515
1741
|
"slots": [],
|
|
@@ -1593,7 +1819,7 @@
|
|
|
1593
1819
|
},
|
|
1594
1820
|
{
|
|
1595
1821
|
"name": "mode",
|
|
1596
|
-
"description": "The mode determines
|
|
1822
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1597
1823
|
"required": false,
|
|
1598
1824
|
"value": {
|
|
1599
1825
|
"kind": "expression",
|
|
@@ -1610,6 +1836,34 @@
|
|
|
1610
1836
|
"type": "string"
|
|
1611
1837
|
}
|
|
1612
1838
|
},
|
|
1839
|
+
{
|
|
1840
|
+
"name": "shape",
|
|
1841
|
+
"description": "Set to `\"soft\"` for a checkbox with more rounded corners. Only available when the theme is `\"ionic\"`.",
|
|
1842
|
+
"required": false,
|
|
1843
|
+
"default": "'soft'",
|
|
1844
|
+
"value": {
|
|
1845
|
+
"kind": "expression",
|
|
1846
|
+
"type": "\"rectangular\" | \"soft\" | undefined"
|
|
1847
|
+
}
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
"name": "size",
|
|
1851
|
+
"description": "Set to `\"small\"` for a checkbox with less height and padding.",
|
|
1852
|
+
"required": false,
|
|
1853
|
+
"value": {
|
|
1854
|
+
"kind": "expression",
|
|
1855
|
+
"type": "\"small\" | undefined"
|
|
1856
|
+
}
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"name": "theme",
|
|
1860
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1861
|
+
"required": false,
|
|
1862
|
+
"value": {
|
|
1863
|
+
"kind": "expression",
|
|
1864
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1613
1867
|
{
|
|
1614
1868
|
"name": "value",
|
|
1615
1869
|
"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>`.",
|
|
@@ -1640,7 +1894,7 @@
|
|
|
1640
1894
|
},
|
|
1641
1895
|
{
|
|
1642
1896
|
"name": "ionChange",
|
|
1643
|
-
"description": "Emitted when the checked property has changed
|
|
1897
|
+
"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.",
|
|
1644
1898
|
"arguments": [
|
|
1645
1899
|
{
|
|
1646
1900
|
"name": "detail",
|
|
@@ -1690,7 +1944,7 @@
|
|
|
1690
1944
|
},
|
|
1691
1945
|
{
|
|
1692
1946
|
"name": "mode",
|
|
1693
|
-
"description": "The mode determines
|
|
1947
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1694
1948
|
"required": false,
|
|
1695
1949
|
"value": {
|
|
1696
1950
|
"kind": "expression",
|
|
@@ -1706,6 +1960,33 @@
|
|
|
1706
1960
|
"kind": "expression",
|
|
1707
1961
|
"type": "boolean"
|
|
1708
1962
|
}
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"name": "shape",
|
|
1966
|
+
"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.",
|
|
1967
|
+
"required": false,
|
|
1968
|
+
"value": {
|
|
1969
|
+
"kind": "expression",
|
|
1970
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
"name": "size",
|
|
1975
|
+
"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.",
|
|
1976
|
+
"required": false,
|
|
1977
|
+
"value": {
|
|
1978
|
+
"kind": "expression",
|
|
1979
|
+
"type": "\"large\" | \"small\" | undefined"
|
|
1980
|
+
}
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
"name": "theme",
|
|
1984
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1985
|
+
"required": false,
|
|
1986
|
+
"value": {
|
|
1987
|
+
"kind": "expression",
|
|
1988
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
1989
|
+
}
|
|
1709
1990
|
}
|
|
1710
1991
|
],
|
|
1711
1992
|
"slots": [],
|
|
@@ -1720,6 +2001,15 @@
|
|
|
1720
2001
|
"symbol": "Col"
|
|
1721
2002
|
},
|
|
1722
2003
|
"attributes": [
|
|
2004
|
+
{
|
|
2005
|
+
"name": "mode",
|
|
2006
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2007
|
+
"required": false,
|
|
2008
|
+
"value": {
|
|
2009
|
+
"kind": "expression",
|
|
2010
|
+
"type": "\"ios\" | \"md\""
|
|
2011
|
+
}
|
|
2012
|
+
},
|
|
1723
2013
|
{
|
|
1724
2014
|
"name": "offset",
|
|
1725
2015
|
"description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available.",
|
|
@@ -1935,6 +2225,15 @@
|
|
|
1935
2225
|
"kind": "expression",
|
|
1936
2226
|
"type": "string | undefined"
|
|
1937
2227
|
}
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"name": "theme",
|
|
2231
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2232
|
+
"required": false,
|
|
2233
|
+
"value": {
|
|
2234
|
+
"kind": "expression",
|
|
2235
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2236
|
+
}
|
|
1938
2237
|
}
|
|
1939
2238
|
],
|
|
1940
2239
|
"slots": [],
|
|
@@ -1987,6 +2286,15 @@
|
|
|
1987
2286
|
"type": "boolean"
|
|
1988
2287
|
}
|
|
1989
2288
|
},
|
|
2289
|
+
{
|
|
2290
|
+
"name": "mode",
|
|
2291
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2292
|
+
"required": false,
|
|
2293
|
+
"value": {
|
|
2294
|
+
"kind": "expression",
|
|
2295
|
+
"type": "\"ios\" | \"md\""
|
|
2296
|
+
}
|
|
2297
|
+
},
|
|
1990
2298
|
{
|
|
1991
2299
|
"name": "scroll-events",
|
|
1992
2300
|
"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`.",
|
|
@@ -2016,6 +2324,15 @@
|
|
|
2016
2324
|
"kind": "expression",
|
|
2017
2325
|
"type": "boolean"
|
|
2018
2326
|
}
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"name": "theme",
|
|
2330
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2331
|
+
"required": false,
|
|
2332
|
+
"value": {
|
|
2333
|
+
"kind": "expression",
|
|
2334
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2335
|
+
}
|
|
2019
2336
|
}
|
|
2020
2337
|
],
|
|
2021
2338
|
"slots": [
|
|
@@ -2223,7 +2540,7 @@
|
|
|
2223
2540
|
},
|
|
2224
2541
|
{
|
|
2225
2542
|
"name": "mode",
|
|
2226
|
-
"description": "The mode determines
|
|
2543
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2227
2544
|
"required": false,
|
|
2228
2545
|
"value": {
|
|
2229
2546
|
"kind": "expression",
|
|
@@ -2340,12 +2657,21 @@
|
|
|
2340
2657
|
}
|
|
2341
2658
|
},
|
|
2342
2659
|
{
|
|
2343
|
-
"name": "
|
|
2344
|
-
"description": "
|
|
2660
|
+
"name": "theme",
|
|
2661
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2345
2662
|
"required": false,
|
|
2346
2663
|
"value": {
|
|
2347
2664
|
"kind": "expression",
|
|
2348
|
-
"type": "
|
|
2665
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2666
|
+
}
|
|
2667
|
+
},
|
|
2668
|
+
{
|
|
2669
|
+
"name": "titleSelectedDatesFormatter",
|
|
2670
|
+
"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.",
|
|
2671
|
+
"required": false,
|
|
2672
|
+
"value": {
|
|
2673
|
+
"kind": "expression",
|
|
2674
|
+
"type": "((selectedDates: string[]) => string) | undefined"
|
|
2349
2675
|
}
|
|
2350
2676
|
},
|
|
2351
2677
|
{
|
|
@@ -2464,12 +2790,21 @@
|
|
|
2464
2790
|
},
|
|
2465
2791
|
{
|
|
2466
2792
|
"name": "mode",
|
|
2467
|
-
"description": "The mode determines
|
|
2793
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2468
2794
|
"required": false,
|
|
2469
2795
|
"value": {
|
|
2470
2796
|
"kind": "expression",
|
|
2471
2797
|
"type": "\"ios\" | \"md\""
|
|
2472
2798
|
}
|
|
2799
|
+
},
|
|
2800
|
+
{
|
|
2801
|
+
"name": "theme",
|
|
2802
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2803
|
+
"required": false,
|
|
2804
|
+
"value": {
|
|
2805
|
+
"kind": "expression",
|
|
2806
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2807
|
+
}
|
|
2473
2808
|
}
|
|
2474
2809
|
],
|
|
2475
2810
|
"slots": [
|
|
@@ -2522,6 +2857,24 @@
|
|
|
2522
2857
|
"type": "\"center\" | \"end\" | \"start\" | undefined"
|
|
2523
2858
|
}
|
|
2524
2859
|
},
|
|
2860
|
+
{
|
|
2861
|
+
"name": "mode",
|
|
2862
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2863
|
+
"required": false,
|
|
2864
|
+
"value": {
|
|
2865
|
+
"kind": "expression",
|
|
2866
|
+
"type": "\"ios\" | \"md\""
|
|
2867
|
+
}
|
|
2868
|
+
},
|
|
2869
|
+
{
|
|
2870
|
+
"name": "theme",
|
|
2871
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2872
|
+
"required": false,
|
|
2873
|
+
"value": {
|
|
2874
|
+
"kind": "expression",
|
|
2875
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
2876
|
+
}
|
|
2877
|
+
},
|
|
2525
2878
|
{
|
|
2526
2879
|
"name": "vertical",
|
|
2527
2880
|
"description": "Where to align the fab vertically in the viewport.",
|
|
@@ -2558,10 +2911,9 @@
|
|
|
2558
2911
|
"name": "close-icon",
|
|
2559
2912
|
"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.",
|
|
2560
2913
|
"required": false,
|
|
2561
|
-
"default": "close",
|
|
2562
2914
|
"value": {
|
|
2563
2915
|
"kind": "expression",
|
|
2564
|
-
"type": "string"
|
|
2916
|
+
"type": "string | undefined"
|
|
2565
2917
|
}
|
|
2566
2918
|
},
|
|
2567
2919
|
{
|
|
@@ -2603,7 +2955,7 @@
|
|
|
2603
2955
|
},
|
|
2604
2956
|
{
|
|
2605
2957
|
"name": "mode",
|
|
2606
|
-
"description": "The mode determines
|
|
2958
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2607
2959
|
"required": false,
|
|
2608
2960
|
"value": {
|
|
2609
2961
|
"kind": "expression",
|
|
@@ -2666,9 +3018,18 @@
|
|
|
2666
3018
|
"type": "string | undefined"
|
|
2667
3019
|
}
|
|
2668
3020
|
},
|
|
3021
|
+
{
|
|
3022
|
+
"name": "theme",
|
|
3023
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3024
|
+
"required": false,
|
|
3025
|
+
"value": {
|
|
3026
|
+
"kind": "expression",
|
|
3027
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3028
|
+
}
|
|
3029
|
+
},
|
|
2669
3030
|
{
|
|
2670
3031
|
"name": "translucent",
|
|
2671
|
-
"description": "If `true`, the fab button will be translucent.\nOnly applies when the
|
|
3032
|
+
"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).",
|
|
2672
3033
|
"required": false,
|
|
2673
3034
|
"default": "false",
|
|
2674
3035
|
"value": {
|
|
@@ -2730,6 +3091,15 @@
|
|
|
2730
3091
|
"type": "boolean"
|
|
2731
3092
|
}
|
|
2732
3093
|
},
|
|
3094
|
+
{
|
|
3095
|
+
"name": "mode",
|
|
3096
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3097
|
+
"required": false,
|
|
3098
|
+
"value": {
|
|
3099
|
+
"kind": "expression",
|
|
3100
|
+
"type": "\"ios\" | \"md\""
|
|
3101
|
+
}
|
|
3102
|
+
},
|
|
2733
3103
|
{
|
|
2734
3104
|
"name": "side",
|
|
2735
3105
|
"description": "The side the fab list will show on relative to the main fab button.",
|
|
@@ -2739,6 +3109,15 @@
|
|
|
2739
3109
|
"kind": "expression",
|
|
2740
3110
|
"type": "\"bottom\" | \"end\" | \"start\" | \"top\""
|
|
2741
3111
|
}
|
|
3112
|
+
},
|
|
3113
|
+
{
|
|
3114
|
+
"name": "theme",
|
|
3115
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3116
|
+
"required": false,
|
|
3117
|
+
"value": {
|
|
3118
|
+
"kind": "expression",
|
|
3119
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3120
|
+
}
|
|
2742
3121
|
}
|
|
2743
3122
|
],
|
|
2744
3123
|
"slots": [],
|
|
@@ -2755,7 +3134,7 @@
|
|
|
2755
3134
|
"attributes": [
|
|
2756
3135
|
{
|
|
2757
3136
|
"name": "collapse",
|
|
2758
|
-
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies
|
|
3137
|
+
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies when the theme is `\"ios\"`.",
|
|
2759
3138
|
"required": false,
|
|
2760
3139
|
"value": {
|
|
2761
3140
|
"kind": "expression",
|
|
@@ -2764,16 +3143,25 @@
|
|
|
2764
3143
|
},
|
|
2765
3144
|
{
|
|
2766
3145
|
"name": "mode",
|
|
2767
|
-
"description": "The mode determines
|
|
3146
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2768
3147
|
"required": false,
|
|
2769
3148
|
"value": {
|
|
2770
3149
|
"kind": "expression",
|
|
2771
3150
|
"type": "\"ios\" | \"md\""
|
|
2772
3151
|
}
|
|
2773
3152
|
},
|
|
3153
|
+
{
|
|
3154
|
+
"name": "theme",
|
|
3155
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3156
|
+
"required": false,
|
|
3157
|
+
"value": {
|
|
3158
|
+
"kind": "expression",
|
|
3159
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3160
|
+
}
|
|
3161
|
+
},
|
|
2774
3162
|
{
|
|
2775
3163
|
"name": "translucent",
|
|
2776
|
-
"description": "If `true`, the footer will be translucent.\nOnly applies when the
|
|
3164
|
+
"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.",
|
|
2777
3165
|
"required": false,
|
|
2778
3166
|
"default": "false",
|
|
2779
3167
|
"value": {
|
|
@@ -2803,6 +3191,24 @@
|
|
|
2803
3191
|
"kind": "expression",
|
|
2804
3192
|
"type": "boolean"
|
|
2805
3193
|
}
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"name": "mode",
|
|
3197
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3198
|
+
"required": false,
|
|
3199
|
+
"value": {
|
|
3200
|
+
"kind": "expression",
|
|
3201
|
+
"type": "\"ios\" | \"md\""
|
|
3202
|
+
}
|
|
3203
|
+
},
|
|
3204
|
+
{
|
|
3205
|
+
"name": "theme",
|
|
3206
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3207
|
+
"required": false,
|
|
3208
|
+
"value": {
|
|
3209
|
+
"kind": "expression",
|
|
3210
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3211
|
+
}
|
|
2806
3212
|
}
|
|
2807
3213
|
],
|
|
2808
3214
|
"slots": [],
|
|
@@ -2819,25 +3225,44 @@
|
|
|
2819
3225
|
"attributes": [
|
|
2820
3226
|
{
|
|
2821
3227
|
"name": "collapse",
|
|
2822
|
-
"description": "Describes the scroll effect that will be applied to the header.\nOnly applies
|
|
3228
|
+
"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)",
|
|
2823
3229
|
"required": false,
|
|
2824
3230
|
"value": {
|
|
2825
3231
|
"kind": "expression",
|
|
2826
3232
|
"type": "\"condense\" | \"fade\" | undefined"
|
|
2827
3233
|
}
|
|
2828
3234
|
},
|
|
3235
|
+
{
|
|
3236
|
+
"name": "divider",
|
|
3237
|
+
"description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes",
|
|
3238
|
+
"required": false,
|
|
3239
|
+
"default": "false",
|
|
3240
|
+
"value": {
|
|
3241
|
+
"kind": "expression",
|
|
3242
|
+
"type": "boolean"
|
|
3243
|
+
}
|
|
3244
|
+
},
|
|
2829
3245
|
{
|
|
2830
3246
|
"name": "mode",
|
|
2831
|
-
"description": "The mode determines
|
|
3247
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2832
3248
|
"required": false,
|
|
2833
3249
|
"value": {
|
|
2834
3250
|
"kind": "expression",
|
|
2835
3251
|
"type": "\"ios\" | \"md\""
|
|
2836
3252
|
}
|
|
2837
3253
|
},
|
|
3254
|
+
{
|
|
3255
|
+
"name": "theme",
|
|
3256
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3257
|
+
"required": false,
|
|
3258
|
+
"value": {
|
|
3259
|
+
"kind": "expression",
|
|
3260
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3261
|
+
}
|
|
3262
|
+
},
|
|
2838
3263
|
{
|
|
2839
3264
|
"name": "translucent",
|
|
2840
|
-
"description": "If `true`, the header will be translucent.\nOnly applies when the
|
|
3265
|
+
"description": "If `true`, the 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).\n\nNote: In order to scroll content behind the header, the `fullscreen`\nattribute needs to be set on the content.",
|
|
2841
3266
|
"required": false,
|
|
2842
3267
|
"default": "false",
|
|
2843
3268
|
"value": {
|
|
@@ -2867,6 +3292,15 @@
|
|
|
2867
3292
|
"type": "string | undefined"
|
|
2868
3293
|
}
|
|
2869
3294
|
},
|
|
3295
|
+
{
|
|
3296
|
+
"name": "mode",
|
|
3297
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3298
|
+
"required": false,
|
|
3299
|
+
"value": {
|
|
3300
|
+
"kind": "expression",
|
|
3301
|
+
"type": "\"ios\" | \"md\""
|
|
3302
|
+
}
|
|
3303
|
+
},
|
|
2870
3304
|
{
|
|
2871
3305
|
"name": "src",
|
|
2872
3306
|
"description": "The image URL. This attribute is mandatory for the `<img>` element.",
|
|
@@ -2875,6 +3309,15 @@
|
|
|
2875
3309
|
"kind": "expression",
|
|
2876
3310
|
"type": "string | undefined"
|
|
2877
3311
|
}
|
|
3312
|
+
},
|
|
3313
|
+
{
|
|
3314
|
+
"name": "theme",
|
|
3315
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3316
|
+
"required": false,
|
|
3317
|
+
"value": {
|
|
3318
|
+
"kind": "expression",
|
|
3319
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3320
|
+
}
|
|
2878
3321
|
}
|
|
2879
3322
|
],
|
|
2880
3323
|
"slots": [],
|
|
@@ -2930,6 +3373,15 @@
|
|
|
2930
3373
|
"type": "boolean"
|
|
2931
3374
|
}
|
|
2932
3375
|
},
|
|
3376
|
+
{
|
|
3377
|
+
"name": "mode",
|
|
3378
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3379
|
+
"required": false,
|
|
3380
|
+
"value": {
|
|
3381
|
+
"kind": "expression",
|
|
3382
|
+
"type": "\"ios\" | \"md\""
|
|
3383
|
+
}
|
|
3384
|
+
},
|
|
2933
3385
|
{
|
|
2934
3386
|
"name": "position",
|
|
2935
3387
|
"description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
|
|
@@ -2940,6 +3392,15 @@
|
|
|
2940
3392
|
"type": "\"bottom\" | \"top\""
|
|
2941
3393
|
}
|
|
2942
3394
|
},
|
|
3395
|
+
{
|
|
3396
|
+
"name": "theme",
|
|
3397
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3398
|
+
"required": false,
|
|
3399
|
+
"value": {
|
|
3400
|
+
"kind": "expression",
|
|
3401
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3402
|
+
}
|
|
3403
|
+
},
|
|
2943
3404
|
{
|
|
2944
3405
|
"name": "threshold",
|
|
2945
3406
|
"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.",
|
|
@@ -2991,6 +3452,24 @@
|
|
|
2991
3452
|
"kind": "expression",
|
|
2992
3453
|
"type": "IonicSafeString | string | undefined"
|
|
2993
3454
|
}
|
|
3455
|
+
},
|
|
3456
|
+
{
|
|
3457
|
+
"name": "mode",
|
|
3458
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3459
|
+
"required": false,
|
|
3460
|
+
"value": {
|
|
3461
|
+
"kind": "expression",
|
|
3462
|
+
"type": "\"ios\" | \"md\""
|
|
3463
|
+
}
|
|
3464
|
+
},
|
|
3465
|
+
{
|
|
3466
|
+
"name": "theme",
|
|
3467
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3468
|
+
"required": false,
|
|
3469
|
+
"value": {
|
|
3470
|
+
"kind": "expression",
|
|
3471
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3472
|
+
}
|
|
2994
3473
|
}
|
|
2995
3474
|
],
|
|
2996
3475
|
"slots": [],
|
|
@@ -3022,7 +3501,7 @@
|
|
|
3022
3501
|
"default": "'off'",
|
|
3023
3502
|
"value": {
|
|
3024
3503
|
"kind": "expression",
|
|
3025
|
-
"type": "\"name\" | \"
|
|
3504
|
+
"type": "\"name\" | \"url\" | \"off\" | \"on\" | \"additional-name\" | \"address-level1\" | \"address-level2\" | \"address-level3\" | \"address-level4\" | \"address-line1\" | \"address-line2\" | \"address-line3\" | \"bday-day\" | \"bday-month\" | \"bday-year\" | \"cc-csc\" | \"cc-exp\" | \"cc-exp-month\" | \"cc-exp-year\" | \"cc-family-name\" | \"cc-given-name\" | \"cc-name\" | \"cc-number\" | \"cc-type\" | \"country\" | \"country-name\" | \"current-password\" | \"family-name\" | \"given-name\" | \"honorific-prefix\" | \"honorific-suffix\" | \"new-password\" | \"one-time-code\" | \"organization\" | \"postal-code\" | \"street-address\" | \"transaction-amount\" | \"transaction-currency\" | \"username\" | \"email\" | \"tel\" | \"tel-area-code\" | \"tel-country-code\" | \"tel-extension\" | \"tel-local\" | \"tel-national\" | \"nickname\" | \"organization-title\" | \"cc-additional-name\" | \"language\" | \"bday\" | \"sex\" | \"impp\" | \"photo\""
|
|
3026
3505
|
}
|
|
3027
3506
|
},
|
|
3028
3507
|
{
|
|
@@ -3140,7 +3619,7 @@
|
|
|
3140
3619
|
},
|
|
3141
3620
|
{
|
|
3142
3621
|
"name": "fill",
|
|
3143
|
-
"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
|
|
3622
|
+
"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\"`.",
|
|
3144
3623
|
"required": false,
|
|
3145
3624
|
"value": {
|
|
3146
3625
|
"kind": "expression",
|
|
@@ -3176,12 +3655,11 @@
|
|
|
3176
3655
|
},
|
|
3177
3656
|
{
|
|
3178
3657
|
"name": "label-placement",
|
|
3179
|
-
"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 (\"...\").",
|
|
3658
|
+
"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.",
|
|
3180
3659
|
"required": false,
|
|
3181
|
-
"default": "'start'",
|
|
3182
3660
|
"value": {
|
|
3183
3661
|
"kind": "expression",
|
|
3184
|
-
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\""
|
|
3662
|
+
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\" | undefined"
|
|
3185
3663
|
}
|
|
3186
3664
|
},
|
|
3187
3665
|
{
|
|
@@ -3222,7 +3700,7 @@
|
|
|
3222
3700
|
},
|
|
3223
3701
|
{
|
|
3224
3702
|
"name": "mode",
|
|
3225
|
-
"description": "The mode determines
|
|
3703
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3226
3704
|
"required": false,
|
|
3227
3705
|
"value": {
|
|
3228
3706
|
"kind": "expression",
|
|
@@ -3288,11 +3766,21 @@
|
|
|
3288
3766
|
},
|
|
3289
3767
|
{
|
|
3290
3768
|
"name": "shape",
|
|
3291
|
-
"description": "
|
|
3769
|
+
"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\"`.",
|
|
3292
3770
|
"required": false,
|
|
3293
3771
|
"value": {
|
|
3294
3772
|
"kind": "expression",
|
|
3295
|
-
"type": "\"round\" | undefined"
|
|
3773
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
3774
|
+
}
|
|
3775
|
+
},
|
|
3776
|
+
{
|
|
3777
|
+
"name": "size",
|
|
3778
|
+
"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.",
|
|
3779
|
+
"required": false,
|
|
3780
|
+
"default": "'medium'",
|
|
3781
|
+
"value": {
|
|
3782
|
+
"kind": "expression",
|
|
3783
|
+
"type": "\"large\" | \"medium\" | \"xlarge\" | undefined"
|
|
3296
3784
|
}
|
|
3297
3785
|
},
|
|
3298
3786
|
{
|
|
@@ -3314,6 +3802,15 @@
|
|
|
3314
3802
|
"type": "string | undefined"
|
|
3315
3803
|
}
|
|
3316
3804
|
},
|
|
3805
|
+
{
|
|
3806
|
+
"name": "theme",
|
|
3807
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3808
|
+
"required": false,
|
|
3809
|
+
"value": {
|
|
3810
|
+
"kind": "expression",
|
|
3811
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
3812
|
+
}
|
|
3813
|
+
},
|
|
3317
3814
|
{
|
|
3318
3815
|
"name": "type",
|
|
3319
3816
|
"description": "The type of control to display. The default type is text.",
|
|
@@ -3471,7 +3968,7 @@
|
|
|
3471
3968
|
},
|
|
3472
3969
|
{
|
|
3473
3970
|
"name": "detail",
|
|
3474
|
-
"description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `
|
|
3971
|
+
"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.",
|
|
3475
3972
|
"required": false,
|
|
3476
3973
|
"value": {
|
|
3477
3974
|
"kind": "expression",
|
|
@@ -3482,10 +3979,9 @@
|
|
|
3482
3979
|
"name": "detail-icon",
|
|
3483
3980
|
"description": "The icon to use when `detail` is set to `true`.",
|
|
3484
3981
|
"required": false,
|
|
3485
|
-
"default": "chevronForward",
|
|
3486
3982
|
"value": {
|
|
3487
3983
|
"kind": "expression",
|
|
3488
|
-
"type": "string"
|
|
3984
|
+
"type": "string | undefined"
|
|
3489
3985
|
}
|
|
3490
3986
|
},
|
|
3491
3987
|
{
|
|
@@ -3527,7 +4023,7 @@
|
|
|
3527
4023
|
},
|
|
3528
4024
|
{
|
|
3529
4025
|
"name": "mode",
|
|
3530
|
-
"description": "The mode determines
|
|
4026
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3531
4027
|
"required": false,
|
|
3532
4028
|
"value": {
|
|
3533
4029
|
"kind": "expression",
|
|
@@ -3571,6 +4067,15 @@
|
|
|
3571
4067
|
"type": "string | undefined"
|
|
3572
4068
|
}
|
|
3573
4069
|
},
|
|
4070
|
+
{
|
|
4071
|
+
"name": "theme",
|
|
4072
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4073
|
+
"required": false,
|
|
4074
|
+
"value": {
|
|
4075
|
+
"kind": "expression",
|
|
4076
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4077
|
+
}
|
|
4078
|
+
},
|
|
3574
4079
|
{
|
|
3575
4080
|
"name": "type",
|
|
3576
4081
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -3618,7 +4123,7 @@
|
|
|
3618
4123
|
},
|
|
3619
4124
|
{
|
|
3620
4125
|
"name": "mode",
|
|
3621
|
-
"description": "The mode determines
|
|
4126
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3622
4127
|
"required": false,
|
|
3623
4128
|
"value": {
|
|
3624
4129
|
"kind": "expression",
|
|
@@ -3634,6 +4139,15 @@
|
|
|
3634
4139
|
"kind": "expression",
|
|
3635
4140
|
"type": "boolean"
|
|
3636
4141
|
}
|
|
4142
|
+
},
|
|
4143
|
+
{
|
|
4144
|
+
"name": "theme",
|
|
4145
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4146
|
+
"required": false,
|
|
4147
|
+
"value": {
|
|
4148
|
+
"kind": "expression",
|
|
4149
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4150
|
+
}
|
|
3637
4151
|
}
|
|
3638
4152
|
],
|
|
3639
4153
|
"slots": [
|
|
@@ -3660,7 +4174,26 @@
|
|
|
3660
4174
|
"module": "@ionic/core/src/components/item-group/item-group.d.ts",
|
|
3661
4175
|
"symbol": "ItemGroup"
|
|
3662
4176
|
},
|
|
3663
|
-
"attributes": [
|
|
4177
|
+
"attributes": [
|
|
4178
|
+
{
|
|
4179
|
+
"name": "mode",
|
|
4180
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4181
|
+
"required": false,
|
|
4182
|
+
"value": {
|
|
4183
|
+
"kind": "expression",
|
|
4184
|
+
"type": "\"ios\" | \"md\""
|
|
4185
|
+
}
|
|
4186
|
+
},
|
|
4187
|
+
{
|
|
4188
|
+
"name": "theme",
|
|
4189
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4190
|
+
"required": false,
|
|
4191
|
+
"value": {
|
|
4192
|
+
"kind": "expression",
|
|
4193
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4194
|
+
}
|
|
4195
|
+
}
|
|
4196
|
+
],
|
|
3664
4197
|
"slots": [],
|
|
3665
4198
|
"events": []
|
|
3666
4199
|
},
|
|
@@ -3722,7 +4255,7 @@
|
|
|
3722
4255
|
},
|
|
3723
4256
|
{
|
|
3724
4257
|
"name": "mode",
|
|
3725
|
-
"description": "The mode determines
|
|
4258
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3726
4259
|
"required": false,
|
|
3727
4260
|
"value": {
|
|
3728
4261
|
"kind": "expression",
|
|
@@ -3738,6 +4271,15 @@
|
|
|
3738
4271
|
"type": "string | undefined"
|
|
3739
4272
|
}
|
|
3740
4273
|
},
|
|
4274
|
+
{
|
|
4275
|
+
"name": "shape",
|
|
4276
|
+
"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.",
|
|
4277
|
+
"required": false,
|
|
4278
|
+
"value": {
|
|
4279
|
+
"kind": "expression",
|
|
4280
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
4281
|
+
}
|
|
4282
|
+
},
|
|
3741
4283
|
{
|
|
3742
4284
|
"name": "target",
|
|
3743
4285
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
@@ -3747,6 +4289,15 @@
|
|
|
3747
4289
|
"type": "string | undefined"
|
|
3748
4290
|
}
|
|
3749
4291
|
},
|
|
4292
|
+
{
|
|
4293
|
+
"name": "theme",
|
|
4294
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4295
|
+
"required": false,
|
|
4296
|
+
"value": {
|
|
4297
|
+
"kind": "expression",
|
|
4298
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4299
|
+
}
|
|
4300
|
+
},
|
|
3750
4301
|
{
|
|
3751
4302
|
"name": "type",
|
|
3752
4303
|
"description": "The type of the button.",
|
|
@@ -3795,6 +4346,15 @@
|
|
|
3795
4346
|
"symbol": "ItemOptions"
|
|
3796
4347
|
},
|
|
3797
4348
|
"attributes": [
|
|
4349
|
+
{
|
|
4350
|
+
"name": "mode",
|
|
4351
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4352
|
+
"required": false,
|
|
4353
|
+
"value": {
|
|
4354
|
+
"kind": "expression",
|
|
4355
|
+
"type": "\"ios\" | \"md\""
|
|
4356
|
+
}
|
|
4357
|
+
},
|
|
3798
4358
|
{
|
|
3799
4359
|
"name": "side",
|
|
3800
4360
|
"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.",
|
|
@@ -3804,6 +4364,15 @@
|
|
|
3804
4364
|
"kind": "expression",
|
|
3805
4365
|
"type": "\"end\" | \"start\""
|
|
3806
4366
|
}
|
|
4367
|
+
},
|
|
4368
|
+
{
|
|
4369
|
+
"name": "theme",
|
|
4370
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4371
|
+
"required": false,
|
|
4372
|
+
"value": {
|
|
4373
|
+
"kind": "expression",
|
|
4374
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4375
|
+
}
|
|
3807
4376
|
}
|
|
3808
4377
|
],
|
|
3809
4378
|
"slots": [],
|
|
@@ -3838,6 +4407,24 @@
|
|
|
3838
4407
|
"kind": "expression",
|
|
3839
4408
|
"type": "boolean"
|
|
3840
4409
|
}
|
|
4410
|
+
},
|
|
4411
|
+
{
|
|
4412
|
+
"name": "mode",
|
|
4413
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4414
|
+
"required": false,
|
|
4415
|
+
"value": {
|
|
4416
|
+
"kind": "expression",
|
|
4417
|
+
"type": "\"ios\" | \"md\""
|
|
4418
|
+
}
|
|
4419
|
+
},
|
|
4420
|
+
{
|
|
4421
|
+
"name": "theme",
|
|
4422
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4423
|
+
"required": false,
|
|
4424
|
+
"value": {
|
|
4425
|
+
"kind": "expression",
|
|
4426
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4427
|
+
}
|
|
3841
4428
|
}
|
|
3842
4429
|
],
|
|
3843
4430
|
"slots": [],
|
|
@@ -3874,7 +4461,7 @@
|
|
|
3874
4461
|
},
|
|
3875
4462
|
{
|
|
3876
4463
|
"name": "mode",
|
|
3877
|
-
"description": "The mode determines
|
|
4464
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3878
4465
|
"required": false,
|
|
3879
4466
|
"value": {
|
|
3880
4467
|
"kind": "expression",
|
|
@@ -3889,6 +4476,15 @@
|
|
|
3889
4476
|
"kind": "expression",
|
|
3890
4477
|
"type": "\"fixed\" | \"floating\" | \"stacked\" | undefined"
|
|
3891
4478
|
}
|
|
4479
|
+
},
|
|
4480
|
+
{
|
|
4481
|
+
"name": "theme",
|
|
4482
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4483
|
+
"required": false,
|
|
4484
|
+
"value": {
|
|
4485
|
+
"kind": "expression",
|
|
4486
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4487
|
+
}
|
|
3892
4488
|
}
|
|
3893
4489
|
],
|
|
3894
4490
|
"slots": [],
|
|
@@ -3924,12 +4520,30 @@
|
|
|
3924
4520
|
},
|
|
3925
4521
|
{
|
|
3926
4522
|
"name": "mode",
|
|
3927
|
-
"description": "The mode determines
|
|
4523
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3928
4524
|
"required": false,
|
|
3929
4525
|
"value": {
|
|
3930
4526
|
"kind": "expression",
|
|
3931
4527
|
"type": "\"ios\" | \"md\""
|
|
3932
4528
|
}
|
|
4529
|
+
},
|
|
4530
|
+
{
|
|
4531
|
+
"name": "shape",
|
|
4532
|
+
"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.",
|
|
4533
|
+
"required": false,
|
|
4534
|
+
"value": {
|
|
4535
|
+
"kind": "expression",
|
|
4536
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
4537
|
+
}
|
|
4538
|
+
},
|
|
4539
|
+
{
|
|
4540
|
+
"name": "theme",
|
|
4541
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4542
|
+
"required": false,
|
|
4543
|
+
"value": {
|
|
4544
|
+
"kind": "expression",
|
|
4545
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4546
|
+
}
|
|
3933
4547
|
}
|
|
3934
4548
|
],
|
|
3935
4549
|
"slots": [],
|
|
@@ -3964,12 +4578,21 @@
|
|
|
3964
4578
|
},
|
|
3965
4579
|
{
|
|
3966
4580
|
"name": "mode",
|
|
3967
|
-
"description": "The mode determines
|
|
4581
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3968
4582
|
"required": false,
|
|
3969
4583
|
"value": {
|
|
3970
4584
|
"kind": "expression",
|
|
3971
4585
|
"type": "\"ios\" | \"md\""
|
|
3972
4586
|
}
|
|
4587
|
+
},
|
|
4588
|
+
{
|
|
4589
|
+
"name": "theme",
|
|
4590
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4591
|
+
"required": false,
|
|
4592
|
+
"value": {
|
|
4593
|
+
"kind": "expression",
|
|
4594
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4595
|
+
}
|
|
3973
4596
|
}
|
|
3974
4597
|
],
|
|
3975
4598
|
"slots": [],
|
|
@@ -4081,7 +4704,7 @@
|
|
|
4081
4704
|
},
|
|
4082
4705
|
{
|
|
4083
4706
|
"name": "mode",
|
|
4084
|
-
"description": "The mode determines
|
|
4707
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4085
4708
|
"required": false,
|
|
4086
4709
|
"value": {
|
|
4087
4710
|
"kind": "expression",
|
|
@@ -4107,9 +4730,18 @@
|
|
|
4107
4730
|
"type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | null | undefined"
|
|
4108
4731
|
}
|
|
4109
4732
|
},
|
|
4733
|
+
{
|
|
4734
|
+
"name": "theme",
|
|
4735
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4736
|
+
"required": false,
|
|
4737
|
+
"value": {
|
|
4738
|
+
"kind": "expression",
|
|
4739
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4740
|
+
}
|
|
4741
|
+
},
|
|
4110
4742
|
{
|
|
4111
4743
|
"name": "translucent",
|
|
4112
|
-
"description": "If `true`, the loading indicator will be translucent.\nOnly applies when the
|
|
4744
|
+
"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).",
|
|
4113
4745
|
"required": false,
|
|
4114
4746
|
"default": "false",
|
|
4115
4747
|
"value": {
|
|
@@ -4258,6 +4890,15 @@
|
|
|
4258
4890
|
"type": "string | undefined"
|
|
4259
4891
|
}
|
|
4260
4892
|
},
|
|
4893
|
+
{
|
|
4894
|
+
"name": "mode",
|
|
4895
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4896
|
+
"required": false,
|
|
4897
|
+
"value": {
|
|
4898
|
+
"kind": "expression",
|
|
4899
|
+
"type": "\"ios\" | \"md\""
|
|
4900
|
+
}
|
|
4901
|
+
},
|
|
4261
4902
|
{
|
|
4262
4903
|
"name": "side",
|
|
4263
4904
|
"description": "Which side of the view the menu should be placed.",
|
|
@@ -4278,6 +4919,15 @@
|
|
|
4278
4919
|
"type": "boolean"
|
|
4279
4920
|
}
|
|
4280
4921
|
},
|
|
4922
|
+
{
|
|
4923
|
+
"name": "theme",
|
|
4924
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4925
|
+
"required": false,
|
|
4926
|
+
"value": {
|
|
4927
|
+
"kind": "expression",
|
|
4928
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
4929
|
+
}
|
|
4930
|
+
},
|
|
4281
4931
|
{
|
|
4282
4932
|
"name": "type",
|
|
4283
4933
|
"description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
|
|
@@ -4381,13 +5031,22 @@
|
|
|
4381
5031
|
},
|
|
4382
5032
|
{
|
|
4383
5033
|
"name": "mode",
|
|
4384
|
-
"description": "The mode determines
|
|
5034
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4385
5035
|
"required": false,
|
|
4386
5036
|
"value": {
|
|
4387
5037
|
"kind": "expression",
|
|
4388
5038
|
"type": "\"ios\" | \"md\""
|
|
4389
5039
|
}
|
|
4390
5040
|
},
|
|
5041
|
+
{
|
|
5042
|
+
"name": "theme",
|
|
5043
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5044
|
+
"required": false,
|
|
5045
|
+
"value": {
|
|
5046
|
+
"kind": "expression",
|
|
5047
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5048
|
+
}
|
|
5049
|
+
},
|
|
4391
5050
|
{
|
|
4392
5051
|
"name": "type",
|
|
4393
5052
|
"description": "The type of the button.",
|
|
@@ -4429,6 +5088,24 @@
|
|
|
4429
5088
|
"kind": "expression",
|
|
4430
5089
|
"type": "string | undefined"
|
|
4431
5090
|
}
|
|
5091
|
+
},
|
|
5092
|
+
{
|
|
5093
|
+
"name": "mode",
|
|
5094
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5095
|
+
"required": false,
|
|
5096
|
+
"value": {
|
|
5097
|
+
"kind": "expression",
|
|
5098
|
+
"type": "\"ios\" | \"md\""
|
|
5099
|
+
}
|
|
5100
|
+
},
|
|
5101
|
+
{
|
|
5102
|
+
"name": "theme",
|
|
5103
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5104
|
+
"required": false,
|
|
5105
|
+
"value": {
|
|
5106
|
+
"kind": "expression",
|
|
5107
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5108
|
+
}
|
|
4432
5109
|
}
|
|
4433
5110
|
],
|
|
4434
5111
|
"slots": [
|
|
@@ -4594,7 +5271,7 @@
|
|
|
4594
5271
|
},
|
|
4595
5272
|
{
|
|
4596
5273
|
"name": "mode",
|
|
4597
|
-
"description": "The mode determines
|
|
5274
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4598
5275
|
"required": false,
|
|
4599
5276
|
"value": {
|
|
4600
5277
|
"kind": "expression",
|
|
@@ -4610,6 +5287,15 @@
|
|
|
4610
5287
|
"type": "HTMLElement | undefined"
|
|
4611
5288
|
}
|
|
4612
5289
|
},
|
|
5290
|
+
{
|
|
5291
|
+
"name": "shape",
|
|
5292
|
+
"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.",
|
|
5293
|
+
"required": false,
|
|
5294
|
+
"value": {
|
|
5295
|
+
"kind": "expression",
|
|
5296
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
5297
|
+
}
|
|
5298
|
+
},
|
|
4613
5299
|
{
|
|
4614
5300
|
"name": "show-backdrop",
|
|
4615
5301
|
"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.",
|
|
@@ -4620,6 +5306,15 @@
|
|
|
4620
5306
|
"type": "boolean"
|
|
4621
5307
|
}
|
|
4622
5308
|
},
|
|
5309
|
+
{
|
|
5310
|
+
"name": "theme",
|
|
5311
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5312
|
+
"required": false,
|
|
5313
|
+
"value": {
|
|
5314
|
+
"kind": "expression",
|
|
5315
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5316
|
+
}
|
|
5317
|
+
},
|
|
4623
5318
|
{
|
|
4624
5319
|
"name": "trigger",
|
|
4625
5320
|
"description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked.",
|
|
@@ -4749,12 +5444,21 @@
|
|
|
4749
5444
|
},
|
|
4750
5445
|
{
|
|
4751
5446
|
"name": "mode",
|
|
4752
|
-
"description": "The mode determines
|
|
5447
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4753
5448
|
"required": false,
|
|
4754
5449
|
"value": {
|
|
4755
5450
|
"kind": "expression",
|
|
4756
5451
|
"type": "\"ios\" | \"md\""
|
|
4757
5452
|
}
|
|
5453
|
+
},
|
|
5454
|
+
{
|
|
5455
|
+
"name": "theme",
|
|
5456
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5457
|
+
"required": false,
|
|
5458
|
+
"value": {
|
|
5459
|
+
"kind": "expression",
|
|
5460
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5461
|
+
}
|
|
4758
5462
|
}
|
|
4759
5463
|
],
|
|
4760
5464
|
"slots": [],
|
|
@@ -4771,12 +5475,21 @@
|
|
|
4771
5475
|
"attributes": [
|
|
4772
5476
|
{
|
|
4773
5477
|
"name": "mode",
|
|
4774
|
-
"description": "The mode determines
|
|
5478
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4775
5479
|
"required": false,
|
|
4776
5480
|
"value": {
|
|
4777
5481
|
"kind": "expression",
|
|
4778
5482
|
"type": "\"ios\" | \"md\""
|
|
4779
5483
|
}
|
|
5484
|
+
},
|
|
5485
|
+
{
|
|
5486
|
+
"name": "theme",
|
|
5487
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5488
|
+
"required": false,
|
|
5489
|
+
"value": {
|
|
5490
|
+
"kind": "expression",
|
|
5491
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5492
|
+
}
|
|
4780
5493
|
}
|
|
4781
5494
|
],
|
|
4782
5495
|
"slots": [],
|
|
@@ -4813,13 +5526,22 @@
|
|
|
4813
5526
|
},
|
|
4814
5527
|
{
|
|
4815
5528
|
"name": "mode",
|
|
4816
|
-
"description": "The mode determines
|
|
5529
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4817
5530
|
"required": false,
|
|
4818
5531
|
"value": {
|
|
4819
5532
|
"kind": "expression",
|
|
4820
5533
|
"type": "\"ios\" | \"md\""
|
|
4821
5534
|
}
|
|
4822
5535
|
},
|
|
5536
|
+
{
|
|
5537
|
+
"name": "theme",
|
|
5538
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5539
|
+
"required": false,
|
|
5540
|
+
"value": {
|
|
5541
|
+
"kind": "expression",
|
|
5542
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5543
|
+
}
|
|
5544
|
+
},
|
|
4823
5545
|
{
|
|
4824
5546
|
"name": "value",
|
|
4825
5547
|
"description": "The selected option in the picker.",
|
|
@@ -4882,6 +5604,24 @@
|
|
|
4882
5604
|
"type": "boolean"
|
|
4883
5605
|
}
|
|
4884
5606
|
},
|
|
5607
|
+
{
|
|
5608
|
+
"name": "mode",
|
|
5609
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5610
|
+
"required": false,
|
|
5611
|
+
"value": {
|
|
5612
|
+
"kind": "expression",
|
|
5613
|
+
"type": "\"ios\" | \"md\""
|
|
5614
|
+
}
|
|
5615
|
+
},
|
|
5616
|
+
{
|
|
5617
|
+
"name": "theme",
|
|
5618
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5619
|
+
"required": false,
|
|
5620
|
+
"value": {
|
|
5621
|
+
"kind": "expression",
|
|
5622
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5623
|
+
}
|
|
5624
|
+
},
|
|
4885
5625
|
{
|
|
4886
5626
|
"name": "value",
|
|
4887
5627
|
"description": "The text value of the option.",
|
|
@@ -5012,7 +5752,7 @@
|
|
|
5012
5752
|
},
|
|
5013
5753
|
{
|
|
5014
5754
|
"name": "mode",
|
|
5015
|
-
"description": "The mode determines
|
|
5755
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5016
5756
|
"required": false,
|
|
5017
5757
|
"value": {
|
|
5018
5758
|
"kind": "expression",
|
|
@@ -5029,6 +5769,15 @@
|
|
|
5029
5769
|
"type": "boolean"
|
|
5030
5770
|
}
|
|
5031
5771
|
},
|
|
5772
|
+
{
|
|
5773
|
+
"name": "theme",
|
|
5774
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5775
|
+
"required": false,
|
|
5776
|
+
"value": {
|
|
5777
|
+
"kind": "expression",
|
|
5778
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
5779
|
+
}
|
|
5780
|
+
},
|
|
5032
5781
|
{
|
|
5033
5782
|
"name": "trigger",
|
|
5034
5783
|
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
@@ -5134,7 +5883,7 @@
|
|
|
5134
5883
|
"attributes": [
|
|
5135
5884
|
{
|
|
5136
5885
|
"name": "alignment",
|
|
5137
|
-
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for
|
|
5886
|
+
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
|
|
5138
5887
|
"required": false,
|
|
5139
5888
|
"value": {
|
|
5140
5889
|
"kind": "expression",
|
|
@@ -5153,7 +5902,7 @@
|
|
|
5153
5902
|
},
|
|
5154
5903
|
{
|
|
5155
5904
|
"name": "arrow",
|
|
5156
|
-
"description": "If `true`, the popover will display an arrow that points at the\n`reference`
|
|
5905
|
+
"description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme.",
|
|
5157
5906
|
"required": false,
|
|
5158
5907
|
"default": "true",
|
|
5159
5908
|
"value": {
|
|
@@ -5277,7 +6026,7 @@
|
|
|
5277
6026
|
},
|
|
5278
6027
|
{
|
|
5279
6028
|
"name": "mode",
|
|
5280
|
-
"description": "The mode determines
|
|
6029
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5281
6030
|
"required": false,
|
|
5282
6031
|
"value": {
|
|
5283
6032
|
"kind": "expression",
|
|
@@ -5324,9 +6073,18 @@
|
|
|
5324
6073
|
"type": "\"auto\" | \"cover\""
|
|
5325
6074
|
}
|
|
5326
6075
|
},
|
|
6076
|
+
{
|
|
6077
|
+
"name": "theme",
|
|
6078
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6079
|
+
"required": false,
|
|
6080
|
+
"value": {
|
|
6081
|
+
"kind": "expression",
|
|
6082
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6083
|
+
}
|
|
6084
|
+
},
|
|
5327
6085
|
{
|
|
5328
6086
|
"name": "translucent",
|
|
5329
|
-
"description": "If `true`, the popover will be translucent.\nOnly applies when the
|
|
6087
|
+
"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).",
|
|
5330
6088
|
"required": false,
|
|
5331
6089
|
"default": "false",
|
|
5332
6090
|
"value": {
|
|
@@ -5473,7 +6231,7 @@
|
|
|
5473
6231
|
},
|
|
5474
6232
|
{
|
|
5475
6233
|
"name": "mode",
|
|
5476
|
-
"description": "The mode determines
|
|
6234
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5477
6235
|
"required": false,
|
|
5478
6236
|
"value": {
|
|
5479
6237
|
"kind": "expression",
|
|
@@ -5490,6 +6248,15 @@
|
|
|
5490
6248
|
"type": "boolean"
|
|
5491
6249
|
}
|
|
5492
6250
|
},
|
|
6251
|
+
{
|
|
6252
|
+
"name": "theme",
|
|
6253
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6254
|
+
"required": false,
|
|
6255
|
+
"value": {
|
|
6256
|
+
"kind": "expression",
|
|
6257
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6258
|
+
}
|
|
6259
|
+
},
|
|
5493
6260
|
{
|
|
5494
6261
|
"name": "type",
|
|
5495
6262
|
"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).",
|
|
@@ -5572,7 +6339,7 @@
|
|
|
5572
6339
|
},
|
|
5573
6340
|
{
|
|
5574
6341
|
"name": "mode",
|
|
5575
|
-
"description": "The mode determines
|
|
6342
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5576
6343
|
"required": false,
|
|
5577
6344
|
"value": {
|
|
5578
6345
|
"kind": "expression",
|
|
@@ -5589,6 +6356,15 @@
|
|
|
5589
6356
|
"type": "string"
|
|
5590
6357
|
}
|
|
5591
6358
|
},
|
|
6359
|
+
{
|
|
6360
|
+
"name": "theme",
|
|
6361
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6362
|
+
"required": false,
|
|
6363
|
+
"value": {
|
|
6364
|
+
"kind": "expression",
|
|
6365
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6366
|
+
}
|
|
6367
|
+
},
|
|
5592
6368
|
{
|
|
5593
6369
|
"name": "value",
|
|
5594
6370
|
"description": "the value of the radio.",
|
|
@@ -5656,6 +6432,15 @@
|
|
|
5656
6432
|
"type": "((currentValue: any, compareValue: any) => boolean) | null | string | undefined"
|
|
5657
6433
|
}
|
|
5658
6434
|
},
|
|
6435
|
+
{
|
|
6436
|
+
"name": "mode",
|
|
6437
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6438
|
+
"required": false,
|
|
6439
|
+
"value": {
|
|
6440
|
+
"kind": "expression",
|
|
6441
|
+
"type": "\"ios\" | \"md\""
|
|
6442
|
+
}
|
|
6443
|
+
},
|
|
5659
6444
|
{
|
|
5660
6445
|
"name": "name",
|
|
5661
6446
|
"description": "The name of the control, which is submitted with the form data.",
|
|
@@ -5666,6 +6451,15 @@
|
|
|
5666
6451
|
"type": "string"
|
|
5667
6452
|
}
|
|
5668
6453
|
},
|
|
6454
|
+
{
|
|
6455
|
+
"name": "theme",
|
|
6456
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6457
|
+
"required": false,
|
|
6458
|
+
"value": {
|
|
6459
|
+
"kind": "expression",
|
|
6460
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6461
|
+
}
|
|
6462
|
+
},
|
|
5669
6463
|
{
|
|
5670
6464
|
"name": "value",
|
|
5671
6465
|
"description": "the value of the radio group.",
|
|
@@ -5787,7 +6581,7 @@
|
|
|
5787
6581
|
},
|
|
5788
6582
|
{
|
|
5789
6583
|
"name": "mode",
|
|
5790
|
-
"description": "The mode determines
|
|
6584
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5791
6585
|
"required": false,
|
|
5792
6586
|
"value": {
|
|
5793
6587
|
"kind": "expression",
|
|
@@ -5844,6 +6638,15 @@
|
|
|
5844
6638
|
"type": "number"
|
|
5845
6639
|
}
|
|
5846
6640
|
},
|
|
6641
|
+
{
|
|
6642
|
+
"name": "theme",
|
|
6643
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6644
|
+
"required": false,
|
|
6645
|
+
"value": {
|
|
6646
|
+
"kind": "expression",
|
|
6647
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6648
|
+
}
|
|
6649
|
+
},
|
|
5847
6650
|
{
|
|
5848
6651
|
"name": "ticks",
|
|
5849
6652
|
"description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
|
|
@@ -5973,7 +6776,7 @@
|
|
|
5973
6776
|
},
|
|
5974
6777
|
{
|
|
5975
6778
|
"name": "mode",
|
|
5976
|
-
"description": "The mode determines
|
|
6779
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5977
6780
|
"required": false,
|
|
5978
6781
|
"value": {
|
|
5979
6782
|
"kind": "expression",
|
|
@@ -6019,6 +6822,15 @@
|
|
|
6019
6822
|
"kind": "expression",
|
|
6020
6823
|
"type": "string"
|
|
6021
6824
|
}
|
|
6825
|
+
},
|
|
6826
|
+
{
|
|
6827
|
+
"name": "theme",
|
|
6828
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6829
|
+
"required": false,
|
|
6830
|
+
"value": {
|
|
6831
|
+
"kind": "expression",
|
|
6832
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6833
|
+
}
|
|
6022
6834
|
}
|
|
6023
6835
|
],
|
|
6024
6836
|
"slots": [],
|
|
@@ -6064,6 +6876,15 @@
|
|
|
6064
6876
|
"symbol": "RefresherContent"
|
|
6065
6877
|
},
|
|
6066
6878
|
"attributes": [
|
|
6879
|
+
{
|
|
6880
|
+
"name": "mode",
|
|
6881
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6882
|
+
"required": false,
|
|
6883
|
+
"value": {
|
|
6884
|
+
"kind": "expression",
|
|
6885
|
+
"type": "\"ios\" | \"md\""
|
|
6886
|
+
}
|
|
6887
|
+
},
|
|
6067
6888
|
{
|
|
6068
6889
|
"name": "pulling-icon",
|
|
6069
6890
|
"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.",
|
|
@@ -6099,6 +6920,15 @@
|
|
|
6099
6920
|
"kind": "expression",
|
|
6100
6921
|
"type": "IonicSafeString | string | undefined"
|
|
6101
6922
|
}
|
|
6923
|
+
},
|
|
6924
|
+
{
|
|
6925
|
+
"name": "theme",
|
|
6926
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6927
|
+
"required": false,
|
|
6928
|
+
"value": {
|
|
6929
|
+
"kind": "expression",
|
|
6930
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6931
|
+
}
|
|
6102
6932
|
}
|
|
6103
6933
|
],
|
|
6104
6934
|
"slots": [],
|
|
@@ -6112,7 +6942,26 @@
|
|
|
6112
6942
|
"module": "@ionic/core/src/components/reorder/reorder.d.ts",
|
|
6113
6943
|
"symbol": "Reorder"
|
|
6114
6944
|
},
|
|
6115
|
-
"attributes": [
|
|
6945
|
+
"attributes": [
|
|
6946
|
+
{
|
|
6947
|
+
"name": "mode",
|
|
6948
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6949
|
+
"required": false,
|
|
6950
|
+
"value": {
|
|
6951
|
+
"kind": "expression",
|
|
6952
|
+
"type": "\"ios\" | \"md\""
|
|
6953
|
+
}
|
|
6954
|
+
},
|
|
6955
|
+
{
|
|
6956
|
+
"name": "theme",
|
|
6957
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6958
|
+
"required": false,
|
|
6959
|
+
"value": {
|
|
6960
|
+
"kind": "expression",
|
|
6961
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6962
|
+
}
|
|
6963
|
+
}
|
|
6964
|
+
],
|
|
6116
6965
|
"slots": [],
|
|
6117
6966
|
"events": []
|
|
6118
6967
|
},
|
|
@@ -6134,6 +6983,24 @@
|
|
|
6134
6983
|
"kind": "expression",
|
|
6135
6984
|
"type": "boolean"
|
|
6136
6985
|
}
|
|
6986
|
+
},
|
|
6987
|
+
{
|
|
6988
|
+
"name": "mode",
|
|
6989
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6990
|
+
"required": false,
|
|
6991
|
+
"value": {
|
|
6992
|
+
"kind": "expression",
|
|
6993
|
+
"type": "\"ios\" | \"md\""
|
|
6994
|
+
}
|
|
6995
|
+
},
|
|
6996
|
+
{
|
|
6997
|
+
"name": "theme",
|
|
6998
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6999
|
+
"required": false,
|
|
7000
|
+
"value": {
|
|
7001
|
+
"kind": "expression",
|
|
7002
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7003
|
+
}
|
|
6137
7004
|
}
|
|
6138
7005
|
],
|
|
6139
7006
|
"slots": [],
|
|
@@ -6159,6 +7026,24 @@
|
|
|
6159
7026
|
"symbol": "RippleEffect"
|
|
6160
7027
|
},
|
|
6161
7028
|
"attributes": [
|
|
7029
|
+
{
|
|
7030
|
+
"name": "mode",
|
|
7031
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7032
|
+
"required": false,
|
|
7033
|
+
"value": {
|
|
7034
|
+
"kind": "expression",
|
|
7035
|
+
"type": "\"ios\" | \"md\""
|
|
7036
|
+
}
|
|
7037
|
+
},
|
|
7038
|
+
{
|
|
7039
|
+
"name": "theme",
|
|
7040
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7041
|
+
"required": false,
|
|
7042
|
+
"value": {
|
|
7043
|
+
"kind": "expression",
|
|
7044
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7045
|
+
}
|
|
7046
|
+
},
|
|
6162
7047
|
{
|
|
6163
7048
|
"name": "type",
|
|
6164
7049
|
"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.",
|
|
@@ -6206,16 +7091,34 @@
|
|
|
6206
7091
|
"required": true,
|
|
6207
7092
|
"value": {
|
|
6208
7093
|
"kind": "expression",
|
|
6209
|
-
"type": "string"
|
|
7094
|
+
"type": "string"
|
|
7095
|
+
}
|
|
7096
|
+
},
|
|
7097
|
+
{
|
|
7098
|
+
"name": "componentProps",
|
|
7099
|
+
"description": "A key value `{ 'red': true, 'blue': 'white'}` containing props that should be passed\nto the defined component when rendered.",
|
|
7100
|
+
"required": false,
|
|
7101
|
+
"value": {
|
|
7102
|
+
"kind": "expression",
|
|
7103
|
+
"type": "undefined | { [key: string]: any; }"
|
|
7104
|
+
}
|
|
7105
|
+
},
|
|
7106
|
+
{
|
|
7107
|
+
"name": "mode",
|
|
7108
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7109
|
+
"required": false,
|
|
7110
|
+
"value": {
|
|
7111
|
+
"kind": "expression",
|
|
7112
|
+
"type": "\"ios\" | \"md\""
|
|
6210
7113
|
}
|
|
6211
7114
|
},
|
|
6212
7115
|
{
|
|
6213
|
-
"name": "
|
|
6214
|
-
"description": "
|
|
7116
|
+
"name": "theme",
|
|
7117
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6215
7118
|
"required": false,
|
|
6216
7119
|
"value": {
|
|
6217
7120
|
"kind": "expression",
|
|
6218
|
-
"type": "
|
|
7121
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
6219
7122
|
}
|
|
6220
7123
|
},
|
|
6221
7124
|
{
|
|
@@ -6251,7 +7154,26 @@
|
|
|
6251
7154
|
"module": "@ionic/core/src/components/row/row.d.ts",
|
|
6252
7155
|
"symbol": "Row"
|
|
6253
7156
|
},
|
|
6254
|
-
"attributes": [
|
|
7157
|
+
"attributes": [
|
|
7158
|
+
{
|
|
7159
|
+
"name": "mode",
|
|
7160
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7161
|
+
"required": false,
|
|
7162
|
+
"value": {
|
|
7163
|
+
"kind": "expression",
|
|
7164
|
+
"type": "\"ios\" | \"md\""
|
|
7165
|
+
}
|
|
7166
|
+
},
|
|
7167
|
+
{
|
|
7168
|
+
"name": "theme",
|
|
7169
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7170
|
+
"required": false,
|
|
7171
|
+
"value": {
|
|
7172
|
+
"kind": "expression",
|
|
7173
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7174
|
+
}
|
|
7175
|
+
}
|
|
7176
|
+
],
|
|
6255
7177
|
"slots": [],
|
|
6256
7178
|
"events": []
|
|
6257
7179
|
},
|
|
@@ -6291,7 +7213,7 @@
|
|
|
6291
7213
|
"default": "'off'",
|
|
6292
7214
|
"value": {
|
|
6293
7215
|
"kind": "expression",
|
|
6294
|
-
"type": "\"name\" | \"
|
|
7216
|
+
"type": "\"name\" | \"url\" | \"off\" | \"on\" | \"additional-name\" | \"address-level1\" | \"address-level2\" | \"address-level3\" | \"address-level4\" | \"address-line1\" | \"address-line2\" | \"address-line3\" | \"bday-day\" | \"bday-month\" | \"bday-year\" | \"cc-csc\" | \"cc-exp\" | \"cc-exp-month\" | \"cc-exp-year\" | \"cc-family-name\" | \"cc-given-name\" | \"cc-name\" | \"cc-number\" | \"cc-type\" | \"country\" | \"country-name\" | \"current-password\" | \"family-name\" | \"given-name\" | \"honorific-prefix\" | \"honorific-suffix\" | \"new-password\" | \"one-time-code\" | \"organization\" | \"postal-code\" | \"street-address\" | \"transaction-amount\" | \"transaction-currency\" | \"username\" | \"email\" | \"tel\" | \"tel-area-code\" | \"tel-country-code\" | \"tel-extension\" | \"tel-local\" | \"tel-national\" | \"nickname\" | \"organization-title\" | \"cc-additional-name\" | \"language\" | \"bday\" | \"sex\" | \"impp\" | \"photo\""
|
|
6295
7217
|
}
|
|
6296
7218
|
},
|
|
6297
7219
|
{
|
|
@@ -6306,17 +7228,16 @@
|
|
|
6306
7228
|
},
|
|
6307
7229
|
{
|
|
6308
7230
|
"name": "cancel-button-icon",
|
|
6309
|
-
"description": "Set the cancel button icon. Only
|
|
7231
|
+
"description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`.",
|
|
6310
7232
|
"required": false,
|
|
6311
|
-
"default": "config.get('backButtonIcon', arrowBackSharp) as string",
|
|
6312
7233
|
"value": {
|
|
6313
7234
|
"kind": "expression",
|
|
6314
|
-
"type": "string"
|
|
7235
|
+
"type": "string | undefined"
|
|
6315
7236
|
}
|
|
6316
7237
|
},
|
|
6317
7238
|
{
|
|
6318
7239
|
"name": "cancel-button-text",
|
|
6319
|
-
"description": "Set the the cancel button text. Only
|
|
7240
|
+
"description": "Set the the cancel button text. Only available when the theme is `\"ios\"`.",
|
|
6320
7241
|
"required": false,
|
|
6321
7242
|
"default": "'Cancel'",
|
|
6322
7243
|
"value": {
|
|
@@ -6326,7 +7247,7 @@
|
|
|
6326
7247
|
},
|
|
6327
7248
|
{
|
|
6328
7249
|
"name": "clear-icon",
|
|
6329
|
-
"description": "Set the clear icon. Defaults to
|
|
7250
|
+
"description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme.",
|
|
6330
7251
|
"required": false,
|
|
6331
7252
|
"value": {
|
|
6332
7253
|
"kind": "expression",
|
|
@@ -6399,7 +7320,7 @@
|
|
|
6399
7320
|
},
|
|
6400
7321
|
{
|
|
6401
7322
|
"name": "mode",
|
|
6402
|
-
"description": "The mode determines
|
|
7323
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6403
7324
|
"required": false,
|
|
6404
7325
|
"value": {
|
|
6405
7326
|
"kind": "expression",
|
|
@@ -6428,7 +7349,7 @@
|
|
|
6428
7349
|
},
|
|
6429
7350
|
{
|
|
6430
7351
|
"name": "search-icon",
|
|
6431
|
-
"description": "The icon to use as the search icon. Defaults to
|
|
7352
|
+
"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.",
|
|
6432
7353
|
"required": false,
|
|
6433
7354
|
"value": {
|
|
6434
7355
|
"kind": "expression",
|
|
@@ -6465,6 +7386,15 @@
|
|
|
6465
7386
|
"type": "boolean"
|
|
6466
7387
|
}
|
|
6467
7388
|
},
|
|
7389
|
+
{
|
|
7390
|
+
"name": "theme",
|
|
7391
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7392
|
+
"required": false,
|
|
7393
|
+
"value": {
|
|
7394
|
+
"kind": "expression",
|
|
7395
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7396
|
+
}
|
|
7397
|
+
},
|
|
6468
7398
|
{
|
|
6469
7399
|
"name": "type",
|
|
6470
7400
|
"description": "Set the type of the input.",
|
|
@@ -6580,7 +7510,7 @@
|
|
|
6580
7510
|
},
|
|
6581
7511
|
{
|
|
6582
7512
|
"name": "mode",
|
|
6583
|
-
"description": "The mode determines
|
|
7513
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6584
7514
|
"required": false,
|
|
6585
7515
|
"value": {
|
|
6586
7516
|
"kind": "expression",
|
|
@@ -6617,6 +7547,15 @@
|
|
|
6617
7547
|
"type": "boolean"
|
|
6618
7548
|
}
|
|
6619
7549
|
},
|
|
7550
|
+
{
|
|
7551
|
+
"name": "theme",
|
|
7552
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7553
|
+
"required": false,
|
|
7554
|
+
"value": {
|
|
7555
|
+
"kind": "expression",
|
|
7556
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7557
|
+
}
|
|
7558
|
+
},
|
|
6620
7559
|
{
|
|
6621
7560
|
"name": "value",
|
|
6622
7561
|
"description": "the value of the segment.",
|
|
@@ -6672,13 +7611,22 @@
|
|
|
6672
7611
|
},
|
|
6673
7612
|
{
|
|
6674
7613
|
"name": "mode",
|
|
6675
|
-
"description": "The mode determines
|
|
7614
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6676
7615
|
"required": false,
|
|
6677
7616
|
"value": {
|
|
6678
7617
|
"kind": "expression",
|
|
6679
7618
|
"type": "\"ios\" | \"md\""
|
|
6680
7619
|
}
|
|
6681
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
|
+
},
|
|
6682
7630
|
{
|
|
6683
7631
|
"name": "type",
|
|
6684
7632
|
"description": "The type of the button.",
|
|
@@ -6752,7 +7700,7 @@
|
|
|
6752
7700
|
},
|
|
6753
7701
|
{
|
|
6754
7702
|
"name": "expanded-icon",
|
|
6755
|
-
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in
|
|
7703
|
+
"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.",
|
|
6756
7704
|
"required": false,
|
|
6757
7705
|
"value": {
|
|
6758
7706
|
"kind": "expression",
|
|
@@ -6761,7 +7709,7 @@
|
|
|
6761
7709
|
},
|
|
6762
7710
|
{
|
|
6763
7711
|
"name": "fill",
|
|
6764
|
-
"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
|
|
7712
|
+
"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.",
|
|
6765
7713
|
"required": false,
|
|
6766
7714
|
"value": {
|
|
6767
7715
|
"kind": "expression",
|
|
@@ -6818,7 +7766,7 @@
|
|
|
6818
7766
|
},
|
|
6819
7767
|
{
|
|
6820
7768
|
"name": "mode",
|
|
6821
|
-
"description": "The mode determines
|
|
7769
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6822
7770
|
"required": false,
|
|
6823
7771
|
"value": {
|
|
6824
7772
|
"kind": "expression",
|
|
@@ -6882,9 +7830,18 @@
|
|
|
6882
7830
|
"type": "\"round\" | undefined"
|
|
6883
7831
|
}
|
|
6884
7832
|
},
|
|
7833
|
+
{
|
|
7834
|
+
"name": "theme",
|
|
7835
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7836
|
+
"required": false,
|
|
7837
|
+
"value": {
|
|
7838
|
+
"kind": "expression",
|
|
7839
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7840
|
+
}
|
|
7841
|
+
},
|
|
6885
7842
|
{
|
|
6886
7843
|
"name": "toggle-icon",
|
|
6887
|
-
"description": "The toggle icon to use. Defaults to
|
|
7844
|
+
"description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes.",
|
|
6888
7845
|
"required": false,
|
|
6889
7846
|
"value": {
|
|
6890
7847
|
"kind": "expression",
|
|
@@ -6987,6 +7944,24 @@
|
|
|
6987
7944
|
"type": "boolean"
|
|
6988
7945
|
}
|
|
6989
7946
|
},
|
|
7947
|
+
{
|
|
7948
|
+
"name": "mode",
|
|
7949
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7950
|
+
"required": false,
|
|
7951
|
+
"value": {
|
|
7952
|
+
"kind": "expression",
|
|
7953
|
+
"type": "\"ios\" | \"md\""
|
|
7954
|
+
}
|
|
7955
|
+
},
|
|
7956
|
+
{
|
|
7957
|
+
"name": "theme",
|
|
7958
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7959
|
+
"required": false,
|
|
7960
|
+
"value": {
|
|
7961
|
+
"kind": "expression",
|
|
7962
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
7963
|
+
}
|
|
7964
|
+
},
|
|
6990
7965
|
{
|
|
6991
7966
|
"name": "value",
|
|
6992
7967
|
"description": "The text value of the option.",
|
|
@@ -7018,6 +7993,24 @@
|
|
|
7018
7993
|
"kind": "expression",
|
|
7019
7994
|
"type": "boolean"
|
|
7020
7995
|
}
|
|
7996
|
+
},
|
|
7997
|
+
{
|
|
7998
|
+
"name": "mode",
|
|
7999
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8000
|
+
"required": false,
|
|
8001
|
+
"value": {
|
|
8002
|
+
"kind": "expression",
|
|
8003
|
+
"type": "\"ios\" | \"md\""
|
|
8004
|
+
}
|
|
8005
|
+
},
|
|
8006
|
+
{
|
|
8007
|
+
"name": "theme",
|
|
8008
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8009
|
+
"required": false,
|
|
8010
|
+
"value": {
|
|
8011
|
+
"kind": "expression",
|
|
8012
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8013
|
+
}
|
|
7021
8014
|
}
|
|
7022
8015
|
],
|
|
7023
8016
|
"slots": [],
|
|
@@ -7050,6 +8043,15 @@
|
|
|
7050
8043
|
"type": "number | undefined"
|
|
7051
8044
|
}
|
|
7052
8045
|
},
|
|
8046
|
+
{
|
|
8047
|
+
"name": "mode",
|
|
8048
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8049
|
+
"required": false,
|
|
8050
|
+
"value": {
|
|
8051
|
+
"kind": "expression",
|
|
8052
|
+
"type": "\"ios\" | \"md\""
|
|
8053
|
+
}
|
|
8054
|
+
},
|
|
7053
8055
|
{
|
|
7054
8056
|
"name": "name",
|
|
7055
8057
|
"description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
|
|
@@ -7068,6 +8070,24 @@
|
|
|
7068
8070
|
"kind": "expression",
|
|
7069
8071
|
"type": "boolean"
|
|
7070
8072
|
}
|
|
8073
|
+
},
|
|
8074
|
+
{
|
|
8075
|
+
"name": "size",
|
|
8076
|
+
"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.",
|
|
8077
|
+
"required": false,
|
|
8078
|
+
"value": {
|
|
8079
|
+
"kind": "expression",
|
|
8080
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined"
|
|
8081
|
+
}
|
|
8082
|
+
},
|
|
8083
|
+
{
|
|
8084
|
+
"name": "theme",
|
|
8085
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8086
|
+
"required": false,
|
|
8087
|
+
"value": {
|
|
8088
|
+
"kind": "expression",
|
|
8089
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8090
|
+
}
|
|
7071
8091
|
}
|
|
7072
8092
|
],
|
|
7073
8093
|
"slots": [],
|
|
@@ -7101,6 +8121,24 @@
|
|
|
7101
8121
|
"type": "boolean"
|
|
7102
8122
|
}
|
|
7103
8123
|
},
|
|
8124
|
+
{
|
|
8125
|
+
"name": "mode",
|
|
8126
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8127
|
+
"required": false,
|
|
8128
|
+
"value": {
|
|
8129
|
+
"kind": "expression",
|
|
8130
|
+
"type": "\"ios\" | \"md\""
|
|
8131
|
+
}
|
|
8132
|
+
},
|
|
8133
|
+
{
|
|
8134
|
+
"name": "theme",
|
|
8135
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8136
|
+
"required": false,
|
|
8137
|
+
"value": {
|
|
8138
|
+
"kind": "expression",
|
|
8139
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8140
|
+
}
|
|
8141
|
+
},
|
|
7104
8142
|
{
|
|
7105
8143
|
"name": "when",
|
|
7106
8144
|
"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.",
|
|
@@ -7144,6 +8182,15 @@
|
|
|
7144
8182
|
"type": "Function | HTMLElement | null | string | undefined"
|
|
7145
8183
|
}
|
|
7146
8184
|
},
|
|
8185
|
+
{
|
|
8186
|
+
"name": "mode",
|
|
8187
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8188
|
+
"required": false,
|
|
8189
|
+
"value": {
|
|
8190
|
+
"kind": "expression",
|
|
8191
|
+
"type": "\"ios\" | \"md\""
|
|
8192
|
+
}
|
|
8193
|
+
},
|
|
7147
8194
|
{
|
|
7148
8195
|
"name": "tab",
|
|
7149
8196
|
"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.",
|
|
@@ -7152,6 +8199,15 @@
|
|
|
7152
8199
|
"kind": "expression",
|
|
7153
8200
|
"type": "string"
|
|
7154
8201
|
}
|
|
8202
|
+
},
|
|
8203
|
+
{
|
|
8204
|
+
"name": "theme",
|
|
8205
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8206
|
+
"required": false,
|
|
8207
|
+
"value": {
|
|
8208
|
+
"kind": "expression",
|
|
8209
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8210
|
+
}
|
|
7155
8211
|
}
|
|
7156
8212
|
],
|
|
7157
8213
|
"slots": [],
|
|
@@ -7175,9 +8231,19 @@
|
|
|
7175
8231
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
7176
8232
|
}
|
|
7177
8233
|
},
|
|
8234
|
+
{
|
|
8235
|
+
"name": "expand",
|
|
8236
|
+
"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\"`.",
|
|
8237
|
+
"required": false,
|
|
8238
|
+
"default": "'full'",
|
|
8239
|
+
"value": {
|
|
8240
|
+
"kind": "expression",
|
|
8241
|
+
"type": "\"compact\" | \"full\""
|
|
8242
|
+
}
|
|
8243
|
+
},
|
|
7178
8244
|
{
|
|
7179
8245
|
"name": "mode",
|
|
7180
|
-
"description": "The mode determines
|
|
8246
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7181
8247
|
"required": false,
|
|
7182
8248
|
"value": {
|
|
7183
8249
|
"kind": "expression",
|
|
@@ -7193,9 +8259,27 @@
|
|
|
7193
8259
|
"type": "string | undefined"
|
|
7194
8260
|
}
|
|
7195
8261
|
},
|
|
8262
|
+
{
|
|
8263
|
+
"name": "shape",
|
|
8264
|
+
"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.",
|
|
8265
|
+
"required": false,
|
|
8266
|
+
"value": {
|
|
8267
|
+
"kind": "expression",
|
|
8268
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
8269
|
+
}
|
|
8270
|
+
},
|
|
8271
|
+
{
|
|
8272
|
+
"name": "theme",
|
|
8273
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8274
|
+
"required": false,
|
|
8275
|
+
"value": {
|
|
8276
|
+
"kind": "expression",
|
|
8277
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8278
|
+
}
|
|
8279
|
+
},
|
|
7196
8280
|
{
|
|
7197
8281
|
"name": "translucent",
|
|
7198
|
-
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the
|
|
8282
|
+
"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).",
|
|
7199
8283
|
"required": false,
|
|
7200
8284
|
"default": "false",
|
|
7201
8285
|
"value": {
|
|
@@ -7255,7 +8339,7 @@
|
|
|
7255
8339
|
},
|
|
7256
8340
|
{
|
|
7257
8341
|
"name": "mode",
|
|
7258
|
-
"description": "The mode determines
|
|
8342
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7259
8343
|
"required": false,
|
|
7260
8344
|
"value": {
|
|
7261
8345
|
"kind": "expression",
|
|
@@ -7298,6 +8382,15 @@
|
|
|
7298
8382
|
"kind": "expression",
|
|
7299
8383
|
"type": "string | undefined"
|
|
7300
8384
|
}
|
|
8385
|
+
},
|
|
8386
|
+
{
|
|
8387
|
+
"name": "theme",
|
|
8388
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8389
|
+
"required": false,
|
|
8390
|
+
"value": {
|
|
8391
|
+
"kind": "expression",
|
|
8392
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8393
|
+
}
|
|
7301
8394
|
}
|
|
7302
8395
|
],
|
|
7303
8396
|
"slots": [],
|
|
@@ -7311,7 +8404,26 @@
|
|
|
7311
8404
|
"module": "@ionic/core/src/components/tabs/tabs.d.ts",
|
|
7312
8405
|
"symbol": "Tabs"
|
|
7313
8406
|
},
|
|
7314
|
-
"attributes": [
|
|
8407
|
+
"attributes": [
|
|
8408
|
+
{
|
|
8409
|
+
"name": "mode",
|
|
8410
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8411
|
+
"required": false,
|
|
8412
|
+
"value": {
|
|
8413
|
+
"kind": "expression",
|
|
8414
|
+
"type": "\"ios\" | \"md\""
|
|
8415
|
+
}
|
|
8416
|
+
},
|
|
8417
|
+
{
|
|
8418
|
+
"name": "theme",
|
|
8419
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8420
|
+
"required": false,
|
|
8421
|
+
"value": {
|
|
8422
|
+
"kind": "expression",
|
|
8423
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8424
|
+
}
|
|
8425
|
+
}
|
|
8426
|
+
],
|
|
7315
8427
|
"slots": [
|
|
7316
8428
|
{
|
|
7317
8429
|
"name": "default",
|
|
@@ -7369,12 +8481,21 @@
|
|
|
7369
8481
|
},
|
|
7370
8482
|
{
|
|
7371
8483
|
"name": "mode",
|
|
7372
|
-
"description": "The mode determines
|
|
8484
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7373
8485
|
"required": false,
|
|
7374
8486
|
"value": {
|
|
7375
8487
|
"kind": "expression",
|
|
7376
8488
|
"type": "\"ios\" | \"md\""
|
|
7377
8489
|
}
|
|
8490
|
+
},
|
|
8491
|
+
{
|
|
8492
|
+
"name": "theme",
|
|
8493
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8494
|
+
"required": false,
|
|
8495
|
+
"value": {
|
|
8496
|
+
"kind": "expression",
|
|
8497
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8498
|
+
}
|
|
7378
8499
|
}
|
|
7379
8500
|
],
|
|
7380
8501
|
"slots": [],
|
|
@@ -7505,7 +8626,7 @@
|
|
|
7505
8626
|
},
|
|
7506
8627
|
{
|
|
7507
8628
|
"name": "fill",
|
|
7508
|
-
"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
|
|
8629
|
+
"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\"`.",
|
|
7509
8630
|
"required": false,
|
|
7510
8631
|
"value": {
|
|
7511
8632
|
"kind": "expression",
|
|
@@ -7569,7 +8690,7 @@
|
|
|
7569
8690
|
},
|
|
7570
8691
|
{
|
|
7571
8692
|
"name": "mode",
|
|
7572
|
-
"description": "The mode determines
|
|
8693
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7573
8694
|
"required": false,
|
|
7574
8695
|
"value": {
|
|
7575
8696
|
"kind": "expression",
|
|
@@ -7626,11 +8747,21 @@
|
|
|
7626
8747
|
},
|
|
7627
8748
|
{
|
|
7628
8749
|
"name": "shape",
|
|
7629
|
-
"description": "
|
|
8750
|
+
"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.",
|
|
7630
8751
|
"required": false,
|
|
7631
8752
|
"value": {
|
|
7632
8753
|
"kind": "expression",
|
|
7633
|
-
"type": "\"round\" | undefined"
|
|
8754
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
8755
|
+
}
|
|
8756
|
+
},
|
|
8757
|
+
{
|
|
8758
|
+
"name": "size",
|
|
8759
|
+
"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.",
|
|
8760
|
+
"required": false,
|
|
8761
|
+
"default": "'medium'",
|
|
8762
|
+
"value": {
|
|
8763
|
+
"kind": "expression",
|
|
8764
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined"
|
|
7634
8765
|
}
|
|
7635
8766
|
},
|
|
7636
8767
|
{
|
|
@@ -7643,6 +8774,15 @@
|
|
|
7643
8774
|
"type": "boolean"
|
|
7644
8775
|
}
|
|
7645
8776
|
},
|
|
8777
|
+
{
|
|
8778
|
+
"name": "theme",
|
|
8779
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8780
|
+
"required": false,
|
|
8781
|
+
"value": {
|
|
8782
|
+
"kind": "expression",
|
|
8783
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8784
|
+
}
|
|
8785
|
+
},
|
|
7646
8786
|
{
|
|
7647
8787
|
"name": "value",
|
|
7648
8788
|
"description": "The value of the textarea.",
|
|
@@ -7728,7 +8868,26 @@
|
|
|
7728
8868
|
"module": "@ionic/core/src/components/thumbnail/thumbnail.d.ts",
|
|
7729
8869
|
"symbol": "Thumbnail"
|
|
7730
8870
|
},
|
|
7731
|
-
"attributes": [
|
|
8871
|
+
"attributes": [
|
|
8872
|
+
{
|
|
8873
|
+
"name": "mode",
|
|
8874
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8875
|
+
"required": false,
|
|
8876
|
+
"value": {
|
|
8877
|
+
"kind": "expression",
|
|
8878
|
+
"type": "\"ios\" | \"md\""
|
|
8879
|
+
}
|
|
8880
|
+
},
|
|
8881
|
+
{
|
|
8882
|
+
"name": "theme",
|
|
8883
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8884
|
+
"required": false,
|
|
8885
|
+
"value": {
|
|
8886
|
+
"kind": "expression",
|
|
8887
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8888
|
+
}
|
|
8889
|
+
}
|
|
8890
|
+
],
|
|
7732
8891
|
"slots": [],
|
|
7733
8892
|
"events": []
|
|
7734
8893
|
},
|
|
@@ -7750,6 +8909,15 @@
|
|
|
7750
8909
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
7751
8910
|
}
|
|
7752
8911
|
},
|
|
8912
|
+
{
|
|
8913
|
+
"name": "mode",
|
|
8914
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8915
|
+
"required": false,
|
|
8916
|
+
"value": {
|
|
8917
|
+
"kind": "expression",
|
|
8918
|
+
"type": "\"ios\" | \"md\""
|
|
8919
|
+
}
|
|
8920
|
+
},
|
|
7753
8921
|
{
|
|
7754
8922
|
"name": "size",
|
|
7755
8923
|
"description": "The size of the toolbar title.",
|
|
@@ -7758,6 +8926,15 @@
|
|
|
7758
8926
|
"kind": "expression",
|
|
7759
8927
|
"type": "\"large\" | \"small\" | undefined"
|
|
7760
8928
|
}
|
|
8929
|
+
},
|
|
8930
|
+
{
|
|
8931
|
+
"name": "theme",
|
|
8932
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8933
|
+
"required": false,
|
|
8934
|
+
"value": {
|
|
8935
|
+
"kind": "expression",
|
|
8936
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
8937
|
+
}
|
|
7761
8938
|
}
|
|
7762
8939
|
],
|
|
7763
8940
|
"slots": [],
|
|
@@ -7905,7 +9082,7 @@
|
|
|
7905
9082
|
},
|
|
7906
9083
|
{
|
|
7907
9084
|
"name": "mode",
|
|
7908
|
-
"description": "The mode determines
|
|
9085
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7909
9086
|
"required": false,
|
|
7910
9087
|
"value": {
|
|
7911
9088
|
"kind": "expression",
|
|
@@ -7931,6 +9108,15 @@
|
|
|
7931
9108
|
"type": "HTMLElement | string | undefined"
|
|
7932
9109
|
}
|
|
7933
9110
|
},
|
|
9111
|
+
{
|
|
9112
|
+
"name": "shape",
|
|
9113
|
+
"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.",
|
|
9114
|
+
"required": false,
|
|
9115
|
+
"value": {
|
|
9116
|
+
"kind": "expression",
|
|
9117
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
|
|
9118
|
+
}
|
|
9119
|
+
},
|
|
7934
9120
|
{
|
|
7935
9121
|
"name": "swipe-gesture",
|
|
7936
9122
|
"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.",
|
|
@@ -7940,9 +9126,18 @@
|
|
|
7940
9126
|
"type": "\"vertical\" | undefined"
|
|
7941
9127
|
}
|
|
7942
9128
|
},
|
|
9129
|
+
{
|
|
9130
|
+
"name": "theme",
|
|
9131
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9132
|
+
"required": false,
|
|
9133
|
+
"value": {
|
|
9134
|
+
"kind": "expression",
|
|
9135
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9136
|
+
}
|
|
9137
|
+
},
|
|
7943
9138
|
{
|
|
7944
9139
|
"name": "translucent",
|
|
7945
|
-
"description": "If `true`, the toast will be translucent.\nOnly applies when the
|
|
9140
|
+
"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).",
|
|
7946
9141
|
"required": false,
|
|
7947
9142
|
"default": "false",
|
|
7948
9143
|
"value": {
|
|
@@ -8122,7 +9317,7 @@
|
|
|
8122
9317
|
},
|
|
8123
9318
|
{
|
|
8124
9319
|
"name": "mode",
|
|
8125
|
-
"description": "The mode determines
|
|
9320
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8126
9321
|
"required": false,
|
|
8127
9322
|
"value": {
|
|
8128
9323
|
"kind": "expression",
|
|
@@ -8139,6 +9334,15 @@
|
|
|
8139
9334
|
"type": "string"
|
|
8140
9335
|
}
|
|
8141
9336
|
},
|
|
9337
|
+
{
|
|
9338
|
+
"name": "theme",
|
|
9339
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9340
|
+
"required": false,
|
|
9341
|
+
"value": {
|
|
9342
|
+
"kind": "expression",
|
|
9343
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9344
|
+
}
|
|
9345
|
+
},
|
|
8142
9346
|
{
|
|
8143
9347
|
"name": "value",
|
|
8144
9348
|
"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>`.",
|
|
@@ -8209,12 +9413,21 @@
|
|
|
8209
9413
|
},
|
|
8210
9414
|
{
|
|
8211
9415
|
"name": "mode",
|
|
8212
|
-
"description": "The mode determines
|
|
9416
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8213
9417
|
"required": false,
|
|
8214
9418
|
"value": {
|
|
8215
9419
|
"kind": "expression",
|
|
8216
9420
|
"type": "\"ios\" | \"md\""
|
|
8217
9421
|
}
|
|
9422
|
+
},
|
|
9423
|
+
{
|
|
9424
|
+
"name": "theme",
|
|
9425
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
9426
|
+
"required": false,
|
|
9427
|
+
"value": {
|
|
9428
|
+
"kind": "expression",
|
|
9429
|
+
"type": "\"ios\" | \"md\" | \"ionic\""
|
|
9430
|
+
}
|
|
8218
9431
|
}
|
|
8219
9432
|
],
|
|
8220
9433
|
"slots": [
|
|
@@ -8228,11 +9441,11 @@
|
|
|
8228
9441
|
},
|
|
8229
9442
|
{
|
|
8230
9443
|
"name": "primary",
|
|
8231
|
-
"description": "Content is placed to the right of the toolbar text in
|
|
9444
|
+
"description": "Content is placed to the right of the toolbar text in the `\"ios\"` theme, and to the far right in the `\"md\"` theme."
|
|
8232
9445
|
},
|
|
8233
9446
|
{
|
|
8234
9447
|
"name": "secondary",
|
|
8235
|
-
"description": "Content is placed to the left of the toolbar text in
|
|
9448
|
+
"description": "Content is placed to the left of the toolbar text in the `\"ios\"` theme, and directly to the right in the `\"md\"` theme."
|
|
8236
9449
|
},
|
|
8237
9450
|
{
|
|
8238
9451
|
"name": "start",
|