@ionic/vue 8.4.1-dev.11732235436.1dec59cf → 8.4.1-dev.11732561669.1ff93af7
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 +31 -13
- package/dist/index.js.map +1 -1
- package/dist/types/components/Overlays.d.ts +1 -1
- package/dist/vetur/attributes.json +1473 -180
- package/dist/vetur/tags.json +199 -45
- package/dist/web-types.json +1343 -112
- package/package.json +2 -2
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
},
|
|
7
7
|
"ion-accordion/mode": {
|
|
8
8
|
"type": "\"ios\" | \"md\"",
|
|
9
|
-
"description": "The mode determines
|
|
9
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
10
10
|
"options": [
|
|
11
11
|
"ios",
|
|
12
12
|
"md"
|
|
@@ -17,8 +17,17 @@
|
|
|
17
17
|
"description": "If `true`, the accordion cannot be interacted with,\nbut does not alter the opacity.",
|
|
18
18
|
"options": []
|
|
19
19
|
},
|
|
20
|
+
"ion-accordion/theme": {
|
|
21
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
22
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
23
|
+
"options": [
|
|
24
|
+
"ios",
|
|
25
|
+
"md",
|
|
26
|
+
"ionic"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
20
29
|
"ion-accordion/toggle-icon": {
|
|
21
|
-
"type": "string",
|
|
30
|
+
"type": "string | undefined",
|
|
22
31
|
"description": "The toggle icon to use. This icon will be\nrotated when the accordion is expanded\nor collapsed.",
|
|
23
32
|
"options": []
|
|
24
33
|
},
|
|
@@ -55,7 +64,7 @@
|
|
|
55
64
|
},
|
|
56
65
|
"ion-accordion-group/mode": {
|
|
57
66
|
"type": "\"ios\" | \"md\"",
|
|
58
|
-
"description": "The mode determines
|
|
67
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
59
68
|
"options": [
|
|
60
69
|
"ios",
|
|
61
70
|
"md"
|
|
@@ -71,6 +80,24 @@
|
|
|
71
80
|
"description": "If `true`, the accordion group cannot be interacted with,\nbut does not alter the opacity.",
|
|
72
81
|
"options": []
|
|
73
82
|
},
|
|
83
|
+
"ion-accordion-group/shape": {
|
|
84
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
85
|
+
"description": "Set to `\"soft\"` for an accordion group with slightly rounded corners,\n`\"round\"` for an accordion group with fully rounded corners, or\n`\"rectangular\"` for an accordion group without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.\nOnly applies when `expand` is set to `\"inset\"`.",
|
|
86
|
+
"options": [
|
|
87
|
+
"rectangular",
|
|
88
|
+
"round",
|
|
89
|
+
"soft"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"ion-accordion-group/theme": {
|
|
93
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
94
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
95
|
+
"options": [
|
|
96
|
+
"ios",
|
|
97
|
+
"md",
|
|
98
|
+
"ionic"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
74
101
|
"ion-accordion-group/value": {
|
|
75
102
|
"type": "null | string | string[] | undefined",
|
|
76
103
|
"description": "The value of the accordion group. This controls which\naccordions are expanded.\nThis should be an array of strings only when `multiple=\"true\"`",
|
|
@@ -128,7 +155,7 @@
|
|
|
128
155
|
},
|
|
129
156
|
"ion-action-sheet/mode": {
|
|
130
157
|
"type": "\"ios\" | \"md\"",
|
|
131
|
-
"description": "The mode determines
|
|
158
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
132
159
|
"options": [
|
|
133
160
|
"ios",
|
|
134
161
|
"md"
|
|
@@ -139,9 +166,18 @@
|
|
|
139
166
|
"description": "Subtitle for the action sheet.",
|
|
140
167
|
"options": []
|
|
141
168
|
},
|
|
169
|
+
"ion-action-sheet/theme": {
|
|
170
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
171
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
172
|
+
"options": [
|
|
173
|
+
"ios",
|
|
174
|
+
"md",
|
|
175
|
+
"ionic"
|
|
176
|
+
]
|
|
177
|
+
},
|
|
142
178
|
"ion-action-sheet/translucent": {
|
|
143
179
|
"type": "boolean",
|
|
144
|
-
"description": "If `true`, the action sheet will be translucent.\nOnly applies when the
|
|
180
|
+
"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).",
|
|
145
181
|
"options": []
|
|
146
182
|
},
|
|
147
183
|
"ion-action-sheet/trigger": {
|
|
@@ -211,7 +247,7 @@
|
|
|
211
247
|
},
|
|
212
248
|
"ion-alert/mode": {
|
|
213
249
|
"type": "\"ios\" | \"md\"",
|
|
214
|
-
"description": "The mode determines
|
|
250
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
215
251
|
"options": [
|
|
216
252
|
"ios",
|
|
217
253
|
"md"
|
|
@@ -222,9 +258,18 @@
|
|
|
222
258
|
"description": "The subtitle in the heading of the alert. Displayed under the title.",
|
|
223
259
|
"options": []
|
|
224
260
|
},
|
|
261
|
+
"ion-alert/theme": {
|
|
262
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
263
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
264
|
+
"options": [
|
|
265
|
+
"ios",
|
|
266
|
+
"md",
|
|
267
|
+
"ionic"
|
|
268
|
+
]
|
|
269
|
+
},
|
|
225
270
|
"ion-alert/translucent": {
|
|
226
271
|
"type": "boolean",
|
|
227
|
-
"description": "If `true`, the alert will be translucent.\nOnly applies when the
|
|
272
|
+
"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).",
|
|
228
273
|
"options": []
|
|
229
274
|
},
|
|
230
275
|
"ion-alert/trigger": {
|
|
@@ -232,6 +277,61 @@
|
|
|
232
277
|
"description": "An ID corresponding to the trigger element that\ncauses the alert to open when clicked.",
|
|
233
278
|
"options": []
|
|
234
279
|
},
|
|
280
|
+
"ion-app/mode": {
|
|
281
|
+
"type": "\"ios\" | \"md\"",
|
|
282
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
283
|
+
"options": [
|
|
284
|
+
"ios",
|
|
285
|
+
"md"
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
"ion-app/theme": {
|
|
289
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
290
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
291
|
+
"options": [
|
|
292
|
+
"ios",
|
|
293
|
+
"md",
|
|
294
|
+
"ionic"
|
|
295
|
+
]
|
|
296
|
+
},
|
|
297
|
+
"ion-avatar/mode": {
|
|
298
|
+
"type": "\"ios\" | \"md\"",
|
|
299
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
300
|
+
"options": [
|
|
301
|
+
"ios",
|
|
302
|
+
"md"
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
"ion-avatar/shape": {
|
|
306
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
307
|
+
"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.",
|
|
308
|
+
"options": [
|
|
309
|
+
"rectangular",
|
|
310
|
+
"round",
|
|
311
|
+
"soft"
|
|
312
|
+
]
|
|
313
|
+
},
|
|
314
|
+
"ion-avatar/size": {
|
|
315
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxsmall\" | undefined",
|
|
316
|
+
"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.",
|
|
317
|
+
"options": [
|
|
318
|
+
"large",
|
|
319
|
+
"medium",
|
|
320
|
+
"small",
|
|
321
|
+
"xlarge",
|
|
322
|
+
"xsmall",
|
|
323
|
+
"xxsmall"
|
|
324
|
+
]
|
|
325
|
+
},
|
|
326
|
+
"ion-avatar/theme": {
|
|
327
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
328
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
329
|
+
"options": [
|
|
330
|
+
"ios",
|
|
331
|
+
"md",
|
|
332
|
+
"ionic"
|
|
333
|
+
]
|
|
334
|
+
},
|
|
235
335
|
"ion-back-button/color": {
|
|
236
336
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
237
337
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -264,7 +364,7 @@
|
|
|
264
364
|
},
|
|
265
365
|
"ion-back-button/mode": {
|
|
266
366
|
"type": "\"ios\" | \"md\"",
|
|
267
|
-
"description": "The mode determines
|
|
367
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
268
368
|
"options": [
|
|
269
369
|
"ios",
|
|
270
370
|
"md"
|
|
@@ -280,6 +380,15 @@
|
|
|
280
380
|
"description": "The text to display in the back button.",
|
|
281
381
|
"options": []
|
|
282
382
|
},
|
|
383
|
+
"ion-back-button/theme": {
|
|
384
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
385
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
386
|
+
"options": [
|
|
387
|
+
"ios",
|
|
388
|
+
"md",
|
|
389
|
+
"ionic"
|
|
390
|
+
]
|
|
391
|
+
},
|
|
283
392
|
"ion-back-button/type": {
|
|
284
393
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
285
394
|
"description": "The type of the button.",
|
|
@@ -289,6 +398,14 @@
|
|
|
289
398
|
"submit"
|
|
290
399
|
]
|
|
291
400
|
},
|
|
401
|
+
"ion-backdrop/mode": {
|
|
402
|
+
"type": "\"ios\" | \"md\"",
|
|
403
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
404
|
+
"options": [
|
|
405
|
+
"ios",
|
|
406
|
+
"md"
|
|
407
|
+
]
|
|
408
|
+
},
|
|
292
409
|
"ion-backdrop/stop-propagation": {
|
|
293
410
|
"type": "boolean",
|
|
294
411
|
"description": "If `true`, the backdrop will stop propagation on tap.",
|
|
@@ -299,6 +416,15 @@
|
|
|
299
416
|
"description": "If `true`, the backdrop will can be clicked and will emit the `ionBackdropTap` event.",
|
|
300
417
|
"options": []
|
|
301
418
|
},
|
|
419
|
+
"ion-backdrop/theme": {
|
|
420
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
421
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
422
|
+
"options": [
|
|
423
|
+
"ios",
|
|
424
|
+
"md",
|
|
425
|
+
"ionic"
|
|
426
|
+
]
|
|
427
|
+
},
|
|
302
428
|
"ion-backdrop/visible": {
|
|
303
429
|
"type": "boolean",
|
|
304
430
|
"description": "If `true`, the backdrop will be visible.",
|
|
@@ -321,12 +447,40 @@
|
|
|
321
447
|
},
|
|
322
448
|
"ion-badge/mode": {
|
|
323
449
|
"type": "\"ios\" | \"md\"",
|
|
324
|
-
"description": "The mode determines
|
|
450
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
325
451
|
"options": [
|
|
326
452
|
"ios",
|
|
327
453
|
"md"
|
|
328
454
|
]
|
|
329
455
|
},
|
|
456
|
+
"ion-badge/shape": {
|
|
457
|
+
"type": "\"round | rectangular\" | \"soft\" | undefined",
|
|
458
|
+
"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.",
|
|
459
|
+
"options": [
|
|
460
|
+
"soft"
|
|
461
|
+
]
|
|
462
|
+
},
|
|
463
|
+
"ion-badge/size": {
|
|
464
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxsmall\" | undefined",
|
|
465
|
+
"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.",
|
|
466
|
+
"options": [
|
|
467
|
+
"large",
|
|
468
|
+
"medium",
|
|
469
|
+
"small",
|
|
470
|
+
"xlarge",
|
|
471
|
+
"xsmall",
|
|
472
|
+
"xxsmall"
|
|
473
|
+
]
|
|
474
|
+
},
|
|
475
|
+
"ion-badge/theme": {
|
|
476
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
477
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
478
|
+
"options": [
|
|
479
|
+
"ios",
|
|
480
|
+
"md",
|
|
481
|
+
"ionic"
|
|
482
|
+
]
|
|
483
|
+
},
|
|
330
484
|
"ion-breadcrumb/active": {
|
|
331
485
|
"type": "boolean",
|
|
332
486
|
"description": "If `true`, the breadcrumb will take on a different look to show that\nit is the currently active breadcrumb. Defaults to `true` for the\nlast breadcrumb if it is not set on any.",
|
|
@@ -364,7 +518,7 @@
|
|
|
364
518
|
},
|
|
365
519
|
"ion-breadcrumb/mode": {
|
|
366
520
|
"type": "\"ios\" | \"md\"",
|
|
367
|
-
"description": "The mode determines
|
|
521
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
368
522
|
"options": [
|
|
369
523
|
"ios",
|
|
370
524
|
"md"
|
|
@@ -399,6 +553,15 @@
|
|
|
399
553
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
400
554
|
"options": []
|
|
401
555
|
},
|
|
556
|
+
"ion-breadcrumb/theme": {
|
|
557
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
558
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
559
|
+
"options": [
|
|
560
|
+
"ios",
|
|
561
|
+
"md",
|
|
562
|
+
"ionic"
|
|
563
|
+
]
|
|
564
|
+
},
|
|
402
565
|
"ion-breadcrumbs/color": {
|
|
403
566
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
404
567
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -431,12 +594,21 @@
|
|
|
431
594
|
},
|
|
432
595
|
"ion-breadcrumbs/mode": {
|
|
433
596
|
"type": "\"ios\" | \"md\"",
|
|
434
|
-
"description": "The mode determines
|
|
597
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
435
598
|
"options": [
|
|
436
599
|
"ios",
|
|
437
600
|
"md"
|
|
438
601
|
]
|
|
439
602
|
},
|
|
603
|
+
"ion-breadcrumbs/theme": {
|
|
604
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
605
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
606
|
+
"options": [
|
|
607
|
+
"ios",
|
|
608
|
+
"md",
|
|
609
|
+
"ionic"
|
|
610
|
+
]
|
|
611
|
+
},
|
|
440
612
|
"ion-button/button-type": {
|
|
441
613
|
"type": "string",
|
|
442
614
|
"description": "The type of button.",
|
|
@@ -497,7 +669,7 @@
|
|
|
497
669
|
},
|
|
498
670
|
"ion-button/mode": {
|
|
499
671
|
"type": "\"ios\" | \"md\"",
|
|
500
|
-
"description": "The mode determines
|
|
672
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
501
673
|
"options": [
|
|
502
674
|
"ios",
|
|
503
675
|
"md"
|
|
@@ -523,19 +695,23 @@
|
|
|
523
695
|
]
|
|
524
696
|
},
|
|
525
697
|
"ion-button/shape": {
|
|
526
|
-
"type": "\"round\" | undefined",
|
|
527
|
-
"description": "Set to `\"round\"` for a button with
|
|
698
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
699
|
+
"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.",
|
|
528
700
|
"options": [
|
|
529
|
-
"
|
|
701
|
+
"rectangular",
|
|
702
|
+
"round",
|
|
703
|
+
"soft"
|
|
530
704
|
]
|
|
531
705
|
},
|
|
532
706
|
"ion-button/size": {
|
|
533
|
-
"type": "\"default\" | \"large\" | \"small\" | undefined",
|
|
707
|
+
"type": "\"default\" | \"large\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined",
|
|
534
708
|
"description": "Set to `\"small\"` for a button with less height and padding, to `\"default\"`\nfor a button with the default height and padding, or to `\"large\"` for a button\nwith more height and padding. By default the size is unset, unless the button\nis inside of an item, where the size is `\"small\"` by default. Set the size to\n`\"default\"` inside of an item to make it a standard size button.",
|
|
535
709
|
"options": [
|
|
536
710
|
"default",
|
|
537
711
|
"large",
|
|
538
|
-
"small"
|
|
712
|
+
"small",
|
|
713
|
+
"xlarge",
|
|
714
|
+
"xsmall"
|
|
539
715
|
]
|
|
540
716
|
},
|
|
541
717
|
"ion-button/strong": {
|
|
@@ -548,6 +724,15 @@
|
|
|
548
724
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
549
725
|
"options": []
|
|
550
726
|
},
|
|
727
|
+
"ion-button/theme": {
|
|
728
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
729
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
730
|
+
"options": [
|
|
731
|
+
"ios",
|
|
732
|
+
"md",
|
|
733
|
+
"ionic"
|
|
734
|
+
]
|
|
735
|
+
},
|
|
551
736
|
"ion-button/type": {
|
|
552
737
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
553
738
|
"description": "The type of the button.",
|
|
@@ -559,9 +744,26 @@
|
|
|
559
744
|
},
|
|
560
745
|
"ion-buttons/collapse": {
|
|
561
746
|
"type": "boolean",
|
|
562
|
-
"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`
|
|
747
|
+
"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)",
|
|
563
748
|
"options": []
|
|
564
749
|
},
|
|
750
|
+
"ion-buttons/mode": {
|
|
751
|
+
"type": "\"ios\" | \"md\"",
|
|
752
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
753
|
+
"options": [
|
|
754
|
+
"ios",
|
|
755
|
+
"md"
|
|
756
|
+
]
|
|
757
|
+
},
|
|
758
|
+
"ion-buttons/theme": {
|
|
759
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
760
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
761
|
+
"options": [
|
|
762
|
+
"ios",
|
|
763
|
+
"md",
|
|
764
|
+
"ionic"
|
|
765
|
+
]
|
|
766
|
+
},
|
|
565
767
|
"ion-card/button": {
|
|
566
768
|
"type": "boolean",
|
|
567
769
|
"description": "If `true`, a button tag will be rendered and the card will be tappable.",
|
|
@@ -599,7 +801,7 @@
|
|
|
599
801
|
},
|
|
600
802
|
"ion-card/mode": {
|
|
601
803
|
"type": "\"ios\" | \"md\"",
|
|
602
|
-
"description": "The mode determines
|
|
804
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
603
805
|
"options": [
|
|
604
806
|
"ios",
|
|
605
807
|
"md"
|
|
@@ -624,11 +826,29 @@
|
|
|
624
826
|
"root"
|
|
625
827
|
]
|
|
626
828
|
},
|
|
829
|
+
"ion-card/shape": {
|
|
830
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
831
|
+
"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\"`.",
|
|
832
|
+
"options": [
|
|
833
|
+
"rectangular",
|
|
834
|
+
"round",
|
|
835
|
+
"soft"
|
|
836
|
+
]
|
|
837
|
+
},
|
|
627
838
|
"ion-card/target": {
|
|
628
839
|
"type": "string | undefined",
|
|
629
840
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
630
841
|
"options": []
|
|
631
842
|
},
|
|
843
|
+
"ion-card/theme": {
|
|
844
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
845
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
846
|
+
"options": [
|
|
847
|
+
"ios",
|
|
848
|
+
"md",
|
|
849
|
+
"ionic"
|
|
850
|
+
]
|
|
851
|
+
},
|
|
632
852
|
"ion-card/type": {
|
|
633
853
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
634
854
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -640,12 +860,21 @@
|
|
|
640
860
|
},
|
|
641
861
|
"ion-card-content/mode": {
|
|
642
862
|
"type": "\"ios\" | \"md\"",
|
|
643
|
-
"description": "The mode determines
|
|
863
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
644
864
|
"options": [
|
|
645
865
|
"ios",
|
|
646
866
|
"md"
|
|
647
867
|
]
|
|
648
868
|
},
|
|
869
|
+
"ion-card-content/theme": {
|
|
870
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
871
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
872
|
+
"options": [
|
|
873
|
+
"ios",
|
|
874
|
+
"md",
|
|
875
|
+
"ionic"
|
|
876
|
+
]
|
|
877
|
+
},
|
|
649
878
|
"ion-card-header/color": {
|
|
650
879
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
651
880
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -663,15 +892,24 @@
|
|
|
663
892
|
},
|
|
664
893
|
"ion-card-header/mode": {
|
|
665
894
|
"type": "\"ios\" | \"md\"",
|
|
666
|
-
"description": "The mode determines
|
|
895
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
667
896
|
"options": [
|
|
668
897
|
"ios",
|
|
669
898
|
"md"
|
|
670
899
|
]
|
|
671
900
|
},
|
|
901
|
+
"ion-card-header/theme": {
|
|
902
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
903
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
904
|
+
"options": [
|
|
905
|
+
"ios",
|
|
906
|
+
"md",
|
|
907
|
+
"ionic"
|
|
908
|
+
]
|
|
909
|
+
},
|
|
672
910
|
"ion-card-header/translucent": {
|
|
673
911
|
"type": "boolean",
|
|
674
|
-
"description": "If `true`, the card header will be translucent.\nOnly applies when the
|
|
912
|
+
"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).",
|
|
675
913
|
"options": []
|
|
676
914
|
},
|
|
677
915
|
"ion-card-subtitle/color": {
|
|
@@ -691,12 +929,21 @@
|
|
|
691
929
|
},
|
|
692
930
|
"ion-card-subtitle/mode": {
|
|
693
931
|
"type": "\"ios\" | \"md\"",
|
|
694
|
-
"description": "The mode determines
|
|
932
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
695
933
|
"options": [
|
|
696
934
|
"ios",
|
|
697
935
|
"md"
|
|
698
936
|
]
|
|
699
937
|
},
|
|
938
|
+
"ion-card-subtitle/theme": {
|
|
939
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
940
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
941
|
+
"options": [
|
|
942
|
+
"ios",
|
|
943
|
+
"md",
|
|
944
|
+
"ionic"
|
|
945
|
+
]
|
|
946
|
+
},
|
|
700
947
|
"ion-card-title/color": {
|
|
701
948
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
702
949
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -714,12 +961,21 @@
|
|
|
714
961
|
},
|
|
715
962
|
"ion-card-title/mode": {
|
|
716
963
|
"type": "\"ios\" | \"md\"",
|
|
717
|
-
"description": "The mode determines
|
|
964
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
718
965
|
"options": [
|
|
719
966
|
"ios",
|
|
720
967
|
"md"
|
|
721
968
|
]
|
|
722
969
|
},
|
|
970
|
+
"ion-card-title/theme": {
|
|
971
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
972
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
973
|
+
"options": [
|
|
974
|
+
"ios",
|
|
975
|
+
"md",
|
|
976
|
+
"ionic"
|
|
977
|
+
]
|
|
978
|
+
},
|
|
723
979
|
"ion-checkbox/alignment": {
|
|
724
980
|
"type": "\"center\" | \"start\" | undefined",
|
|
725
981
|
"description": "How to control the alignment of the checkbox and label on the cross axis.\n`\"start\"`: The label and control will appear on the left of the cross axis in LTR, and on the right side in RTL.\n`\"center\"`: The label and control will appear at the center of the cross axis in both LTR and RTL.\nSetting this property will change the checkbox `display` to `block`.",
|
|
@@ -779,7 +1035,7 @@
|
|
|
779
1035
|
},
|
|
780
1036
|
"ion-checkbox/mode": {
|
|
781
1037
|
"type": "\"ios\" | \"md\"",
|
|
782
|
-
"description": "The mode determines
|
|
1038
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
783
1039
|
"options": [
|
|
784
1040
|
"ios",
|
|
785
1041
|
"md"
|
|
@@ -790,6 +1046,30 @@
|
|
|
790
1046
|
"description": "The name of the control, which is submitted with the form data.",
|
|
791
1047
|
"options": []
|
|
792
1048
|
},
|
|
1049
|
+
"ion-checkbox/shape": {
|
|
1050
|
+
"type": "\"rectangular\" | \"soft\" | undefined",
|
|
1051
|
+
"description": "Set to `\"soft\"` for a checkbox with more rounded corners. Only available when the theme is `\"ionic\"`.",
|
|
1052
|
+
"options": [
|
|
1053
|
+
"rectangular",
|
|
1054
|
+
"soft"
|
|
1055
|
+
]
|
|
1056
|
+
},
|
|
1057
|
+
"ion-checkbox/size": {
|
|
1058
|
+
"type": "\"small\" | undefined",
|
|
1059
|
+
"description": "Set to `\"small\"` for a checkbox with less height and padding.",
|
|
1060
|
+
"options": [
|
|
1061
|
+
"small"
|
|
1062
|
+
]
|
|
1063
|
+
},
|
|
1064
|
+
"ion-checkbox/theme": {
|
|
1065
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1066
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1067
|
+
"options": [
|
|
1068
|
+
"ios",
|
|
1069
|
+
"md",
|
|
1070
|
+
"ionic"
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
793
1073
|
"ion-checkbox/value": {
|
|
794
1074
|
"type": "any",
|
|
795
1075
|
"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>`.",
|
|
@@ -817,7 +1097,7 @@
|
|
|
817
1097
|
},
|
|
818
1098
|
"ion-chip/mode": {
|
|
819
1099
|
"type": "\"ios\" | \"md\"",
|
|
820
|
-
"description": "The mode determines
|
|
1100
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
821
1101
|
"options": [
|
|
822
1102
|
"ios",
|
|
823
1103
|
"md"
|
|
@@ -828,6 +1108,40 @@
|
|
|
828
1108
|
"description": "Display an outline style button.",
|
|
829
1109
|
"options": []
|
|
830
1110
|
},
|
|
1111
|
+
"ion-chip/shape": {
|
|
1112
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
1113
|
+
"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.",
|
|
1114
|
+
"options": [
|
|
1115
|
+
"rectangular",
|
|
1116
|
+
"round",
|
|
1117
|
+
"soft"
|
|
1118
|
+
]
|
|
1119
|
+
},
|
|
1120
|
+
"ion-chip/size": {
|
|
1121
|
+
"type": "\"large\" | \"small\" | undefined",
|
|
1122
|
+
"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.",
|
|
1123
|
+
"options": [
|
|
1124
|
+
"large",
|
|
1125
|
+
"small"
|
|
1126
|
+
]
|
|
1127
|
+
},
|
|
1128
|
+
"ion-chip/theme": {
|
|
1129
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1130
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1131
|
+
"options": [
|
|
1132
|
+
"ios",
|
|
1133
|
+
"md",
|
|
1134
|
+
"ionic"
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
"ion-col/mode": {
|
|
1138
|
+
"type": "\"ios\" | \"md\"",
|
|
1139
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1140
|
+
"options": [
|
|
1141
|
+
"ios",
|
|
1142
|
+
"md"
|
|
1143
|
+
]
|
|
1144
|
+
},
|
|
831
1145
|
"ion-col/offset": {
|
|
832
1146
|
"type": "string | undefined",
|
|
833
1147
|
"description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available.",
|
|
@@ -948,6 +1262,15 @@
|
|
|
948
1262
|
"description": "The size of the column for xs screens, in terms of how many columns it should take up out\nof the total available. If `\"auto\"` is passed, the column will be the size of its content.",
|
|
949
1263
|
"options": []
|
|
950
1264
|
},
|
|
1265
|
+
"ion-col/theme": {
|
|
1266
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1267
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1268
|
+
"options": [
|
|
1269
|
+
"ios",
|
|
1270
|
+
"md",
|
|
1271
|
+
"ionic"
|
|
1272
|
+
]
|
|
1273
|
+
},
|
|
951
1274
|
"ion-content/color": {
|
|
952
1275
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
953
1276
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -981,6 +1304,14 @@
|
|
|
981
1304
|
"description": "If `true`, the content will scroll behind the headers\nand footers. This effect can easily be seen by setting the toolbar\nto transparent.",
|
|
982
1305
|
"options": []
|
|
983
1306
|
},
|
|
1307
|
+
"ion-content/mode": {
|
|
1308
|
+
"type": "\"ios\" | \"md\"",
|
|
1309
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1310
|
+
"options": [
|
|
1311
|
+
"ios",
|
|
1312
|
+
"md"
|
|
1313
|
+
]
|
|
1314
|
+
},
|
|
984
1315
|
"ion-content/scroll-events": {
|
|
985
1316
|
"type": "boolean",
|
|
986
1317
|
"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`.",
|
|
@@ -996,6 +1327,15 @@
|
|
|
996
1327
|
"description": "If you want to disable the content scrolling in the Y axis, set this property to `false`.",
|
|
997
1328
|
"options": []
|
|
998
1329
|
},
|
|
1330
|
+
"ion-content/theme": {
|
|
1331
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1332
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1333
|
+
"options": [
|
|
1334
|
+
"ios",
|
|
1335
|
+
"md",
|
|
1336
|
+
"ionic"
|
|
1337
|
+
]
|
|
1338
|
+
},
|
|
999
1339
|
"ion-datetime/cancel-text": {
|
|
1000
1340
|
"type": "string",
|
|
1001
1341
|
"description": "The text to display on the picker's cancel button.",
|
|
@@ -1093,7 +1433,7 @@
|
|
|
1093
1433
|
},
|
|
1094
1434
|
"ion-datetime/mode": {
|
|
1095
1435
|
"type": "\"ios\" | \"md\"",
|
|
1096
|
-
"description": "The mode determines
|
|
1436
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1097
1437
|
"options": [
|
|
1098
1438
|
"ios",
|
|
1099
1439
|
"md"
|
|
@@ -1165,6 +1505,15 @@
|
|
|
1165
1505
|
"fixed"
|
|
1166
1506
|
]
|
|
1167
1507
|
},
|
|
1508
|
+
"ion-datetime/theme": {
|
|
1509
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1510
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1511
|
+
"options": [
|
|
1512
|
+
"ios",
|
|
1513
|
+
"md",
|
|
1514
|
+
"ionic"
|
|
1515
|
+
]
|
|
1516
|
+
},
|
|
1168
1517
|
"ion-datetime/title-selected-dates-formatter": {
|
|
1169
1518
|
"type": "((selectedDates: string[]) => string) | undefined",
|
|
1170
1519
|
"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.",
|
|
@@ -1207,12 +1556,21 @@
|
|
|
1207
1556
|
},
|
|
1208
1557
|
"ion-datetime-button/mode": {
|
|
1209
1558
|
"type": "\"ios\" | \"md\"",
|
|
1210
|
-
"description": "The mode determines
|
|
1559
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1211
1560
|
"options": [
|
|
1212
1561
|
"ios",
|
|
1213
1562
|
"md"
|
|
1214
1563
|
]
|
|
1215
1564
|
},
|
|
1565
|
+
"ion-datetime-button/theme": {
|
|
1566
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1567
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1568
|
+
"options": [
|
|
1569
|
+
"ios",
|
|
1570
|
+
"md",
|
|
1571
|
+
"ionic"
|
|
1572
|
+
]
|
|
1573
|
+
},
|
|
1216
1574
|
"ion-fab/activated": {
|
|
1217
1575
|
"type": "boolean",
|
|
1218
1576
|
"description": "If `true`, both the `ion-fab-button` and all `ion-fab-list` inside `ion-fab` will become active.\nThat means `ion-fab-button` will become a `close` icon and `ion-fab-list` will become visible.",
|
|
@@ -1232,6 +1590,23 @@
|
|
|
1232
1590
|
"start"
|
|
1233
1591
|
]
|
|
1234
1592
|
},
|
|
1593
|
+
"ion-fab/mode": {
|
|
1594
|
+
"type": "\"ios\" | \"md\"",
|
|
1595
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1596
|
+
"options": [
|
|
1597
|
+
"ios",
|
|
1598
|
+
"md"
|
|
1599
|
+
]
|
|
1600
|
+
},
|
|
1601
|
+
"ion-fab/theme": {
|
|
1602
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1603
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1604
|
+
"options": [
|
|
1605
|
+
"ios",
|
|
1606
|
+
"md",
|
|
1607
|
+
"ionic"
|
|
1608
|
+
]
|
|
1609
|
+
},
|
|
1235
1610
|
"ion-fab/vertical": {
|
|
1236
1611
|
"type": "\"bottom\" | \"center\" | \"top\" | undefined",
|
|
1237
1612
|
"description": "Where to align the fab vertically in the viewport.",
|
|
@@ -1247,7 +1622,7 @@
|
|
|
1247
1622
|
"options": []
|
|
1248
1623
|
},
|
|
1249
1624
|
"ion-fab-button/close-icon": {
|
|
1250
|
-
"type": "string",
|
|
1625
|
+
"type": "string | undefined",
|
|
1251
1626
|
"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.",
|
|
1252
1627
|
"options": []
|
|
1253
1628
|
},
|
|
@@ -1283,7 +1658,7 @@
|
|
|
1283
1658
|
},
|
|
1284
1659
|
"ion-fab-button/mode": {
|
|
1285
1660
|
"type": "\"ios\" | \"md\"",
|
|
1286
|
-
"description": "The mode determines
|
|
1661
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1287
1662
|
"options": [
|
|
1288
1663
|
"ios",
|
|
1289
1664
|
"md"
|
|
@@ -1325,9 +1700,18 @@
|
|
|
1325
1700
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1326
1701
|
"options": []
|
|
1327
1702
|
},
|
|
1703
|
+
"ion-fab-button/theme": {
|
|
1704
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1705
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1706
|
+
"options": [
|
|
1707
|
+
"ios",
|
|
1708
|
+
"md",
|
|
1709
|
+
"ionic"
|
|
1710
|
+
]
|
|
1711
|
+
},
|
|
1328
1712
|
"ion-fab-button/translucent": {
|
|
1329
1713
|
"type": "boolean",
|
|
1330
|
-
"description": "If `true`, the fab button will be translucent.\nOnly applies when the
|
|
1714
|
+
"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).",
|
|
1331
1715
|
"options": []
|
|
1332
1716
|
},
|
|
1333
1717
|
"ion-fab-button/type": {
|
|
@@ -1344,6 +1728,14 @@
|
|
|
1344
1728
|
"description": "If `true`, the fab list will show all fab buttons in the list.",
|
|
1345
1729
|
"options": []
|
|
1346
1730
|
},
|
|
1731
|
+
"ion-fab-list/mode": {
|
|
1732
|
+
"type": "\"ios\" | \"md\"",
|
|
1733
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1734
|
+
"options": [
|
|
1735
|
+
"ios",
|
|
1736
|
+
"md"
|
|
1737
|
+
]
|
|
1738
|
+
},
|
|
1347
1739
|
"ion-fab-list/side": {
|
|
1348
1740
|
"type": "\"bottom\" | \"end\" | \"start\" | \"top\"",
|
|
1349
1741
|
"description": "The side the fab list will show on relative to the main fab button.",
|
|
@@ -1354,24 +1746,42 @@
|
|
|
1354
1746
|
"top"
|
|
1355
1747
|
]
|
|
1356
1748
|
},
|
|
1749
|
+
"ion-fab-list/theme": {
|
|
1750
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1751
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1752
|
+
"options": [
|
|
1753
|
+
"ios",
|
|
1754
|
+
"md",
|
|
1755
|
+
"ionic"
|
|
1756
|
+
]
|
|
1757
|
+
},
|
|
1357
1758
|
"ion-footer/collapse": {
|
|
1358
1759
|
"type": "\"fade\" | undefined",
|
|
1359
|
-
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies
|
|
1760
|
+
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies when the theme is `\"ios\"`.",
|
|
1360
1761
|
"options": [
|
|
1361
1762
|
"fade"
|
|
1362
1763
|
]
|
|
1363
1764
|
},
|
|
1364
1765
|
"ion-footer/mode": {
|
|
1365
1766
|
"type": "\"ios\" | \"md\"",
|
|
1366
|
-
"description": "The mode determines
|
|
1767
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1367
1768
|
"options": [
|
|
1368
1769
|
"ios",
|
|
1369
1770
|
"md"
|
|
1370
1771
|
]
|
|
1371
1772
|
},
|
|
1773
|
+
"ion-footer/theme": {
|
|
1774
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1775
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1776
|
+
"options": [
|
|
1777
|
+
"ios",
|
|
1778
|
+
"md",
|
|
1779
|
+
"ionic"
|
|
1780
|
+
]
|
|
1781
|
+
},
|
|
1372
1782
|
"ion-footer/translucent": {
|
|
1373
1783
|
"type": "boolean",
|
|
1374
|
-
"description": "If `true`, the footer will be translucent.\nOnly applies when the
|
|
1784
|
+
"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.",
|
|
1375
1785
|
"options": []
|
|
1376
1786
|
},
|
|
1377
1787
|
"ion-grid/fixed": {
|
|
@@ -1379,25 +1789,56 @@
|
|
|
1379
1789
|
"description": "If `true`, the grid will have a fixed width based on the screen size.",
|
|
1380
1790
|
"options": []
|
|
1381
1791
|
},
|
|
1792
|
+
"ion-grid/mode": {
|
|
1793
|
+
"type": "\"ios\" | \"md\"",
|
|
1794
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1795
|
+
"options": [
|
|
1796
|
+
"ios",
|
|
1797
|
+
"md"
|
|
1798
|
+
]
|
|
1799
|
+
},
|
|
1800
|
+
"ion-grid/theme": {
|
|
1801
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1802
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1803
|
+
"options": [
|
|
1804
|
+
"ios",
|
|
1805
|
+
"md",
|
|
1806
|
+
"ionic"
|
|
1807
|
+
]
|
|
1808
|
+
},
|
|
1382
1809
|
"ion-header/collapse": {
|
|
1383
1810
|
"type": "\"condense\" | \"fade\" | undefined",
|
|
1384
|
-
"description": "Describes the scroll effect that will be applied to the header.\nOnly applies
|
|
1811
|
+
"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)",
|
|
1385
1812
|
"options": [
|
|
1386
1813
|
"condense",
|
|
1387
1814
|
"fade"
|
|
1388
1815
|
]
|
|
1389
1816
|
},
|
|
1817
|
+
"ion-header/divider": {
|
|
1818
|
+
"type": "boolean",
|
|
1819
|
+
"description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes",
|
|
1820
|
+
"options": []
|
|
1821
|
+
},
|
|
1390
1822
|
"ion-header/mode": {
|
|
1391
1823
|
"type": "\"ios\" | \"md\"",
|
|
1392
|
-
"description": "The mode determines
|
|
1824
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1393
1825
|
"options": [
|
|
1394
1826
|
"ios",
|
|
1395
1827
|
"md"
|
|
1396
1828
|
]
|
|
1397
1829
|
},
|
|
1830
|
+
"ion-header/theme": {
|
|
1831
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1832
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1833
|
+
"options": [
|
|
1834
|
+
"ios",
|
|
1835
|
+
"md",
|
|
1836
|
+
"ionic"
|
|
1837
|
+
]
|
|
1838
|
+
},
|
|
1398
1839
|
"ion-header/translucent": {
|
|
1399
1840
|
"type": "boolean",
|
|
1400
|
-
"description": "If `true`, the header will be translucent.\nOnly applies when the
|
|
1841
|
+
"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.",
|
|
1401
1842
|
"options": []
|
|
1402
1843
|
},
|
|
1403
1844
|
"ion-img/alt": {
|
|
@@ -1405,16 +1846,41 @@
|
|
|
1405
1846
|
"description": "This attribute defines the alternative text describing the image.\nUsers will see this text displayed if the image URL is wrong,\nthe image is not in one of the supported formats, or if the image is not yet downloaded.",
|
|
1406
1847
|
"options": []
|
|
1407
1848
|
},
|
|
1849
|
+
"ion-img/mode": {
|
|
1850
|
+
"type": "\"ios\" | \"md\"",
|
|
1851
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1852
|
+
"options": [
|
|
1853
|
+
"ios",
|
|
1854
|
+
"md"
|
|
1855
|
+
]
|
|
1856
|
+
},
|
|
1408
1857
|
"ion-img/src": {
|
|
1409
1858
|
"type": "string | undefined",
|
|
1410
1859
|
"description": "The image URL. This attribute is mandatory for the `<img>` element.",
|
|
1411
1860
|
"options": []
|
|
1412
1861
|
},
|
|
1413
|
-
"ion-
|
|
1862
|
+
"ion-img/theme": {
|
|
1863
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1864
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1865
|
+
"options": [
|
|
1866
|
+
"ios",
|
|
1867
|
+
"md",
|
|
1868
|
+
"ionic"
|
|
1869
|
+
]
|
|
1870
|
+
},
|
|
1871
|
+
"ion-infinite-scroll/disabled": {
|
|
1414
1872
|
"type": "boolean",
|
|
1415
1873
|
"description": "If `true`, the infinite scroll will be hidden and scroll event listeners\nwill be removed.\n\nSet this to true to disable the infinite scroll from actively\ntrying to receive new data while scrolling. This is useful\nwhen it is known that there is no more data that can be added, and\nthe infinite scroll is no longer needed.",
|
|
1416
1874
|
"options": []
|
|
1417
1875
|
},
|
|
1876
|
+
"ion-infinite-scroll/mode": {
|
|
1877
|
+
"type": "\"ios\" | \"md\"",
|
|
1878
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1879
|
+
"options": [
|
|
1880
|
+
"ios",
|
|
1881
|
+
"md"
|
|
1882
|
+
]
|
|
1883
|
+
},
|
|
1418
1884
|
"ion-infinite-scroll/position": {
|
|
1419
1885
|
"type": "\"bottom\" | \"top\"",
|
|
1420
1886
|
"description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
|
|
@@ -1423,6 +1889,15 @@
|
|
|
1423
1889
|
"top"
|
|
1424
1890
|
]
|
|
1425
1891
|
},
|
|
1892
|
+
"ion-infinite-scroll/theme": {
|
|
1893
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1894
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1895
|
+
"options": [
|
|
1896
|
+
"ios",
|
|
1897
|
+
"md",
|
|
1898
|
+
"ionic"
|
|
1899
|
+
]
|
|
1900
|
+
},
|
|
1426
1901
|
"ion-infinite-scroll/threshold": {
|
|
1427
1902
|
"type": "string",
|
|
1428
1903
|
"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.",
|
|
@@ -1448,67 +1923,84 @@
|
|
|
1448
1923
|
"description": "Optional text to display while loading.\n`loadingText` can accept either plaintext or HTML as a string.\nTo display characters normally reserved for HTML, they\nmust be escaped. For example `<Ionic>` would become\n`<Ionic>`\n\nFor more information: [Security Documentation](https://ionicframework.com/docs/faq/security)\n\nThis property accepts custom HTML as a string.\nContent is parsed as plaintext by default.\n`innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config\nbefore custom HTML can be used.",
|
|
1449
1924
|
"options": []
|
|
1450
1925
|
},
|
|
1926
|
+
"ion-infinite-scroll-content/mode": {
|
|
1927
|
+
"type": "\"ios\" | \"md\"",
|
|
1928
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1929
|
+
"options": [
|
|
1930
|
+
"ios",
|
|
1931
|
+
"md"
|
|
1932
|
+
]
|
|
1933
|
+
},
|
|
1934
|
+
"ion-infinite-scroll-content/theme": {
|
|
1935
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1936
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1937
|
+
"options": [
|
|
1938
|
+
"ios",
|
|
1939
|
+
"md",
|
|
1940
|
+
"ionic"
|
|
1941
|
+
]
|
|
1942
|
+
},
|
|
1451
1943
|
"ion-input/autocapitalize": {
|
|
1452
1944
|
"type": "string",
|
|
1453
1945
|
"description": "Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.\nAvailable options: `\"off\"`, `\"none\"`, `\"on\"`, `\"sentences\"`, `\"words\"`, `\"characters\"`.",
|
|
1454
1946
|
"options": []
|
|
1455
1947
|
},
|
|
1456
1948
|
"ion-input/autocomplete": {
|
|
1457
|
-
"type": "\"name\" | \"
|
|
1949
|
+
"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\"",
|
|
1458
1950
|
"description": "Indicates whether the value of the control can be automatically completed by the browser.",
|
|
1459
1951
|
"options": [
|
|
1460
1952
|
"name",
|
|
1461
|
-
"email",
|
|
1462
|
-
"tel",
|
|
1463
1953
|
"url",
|
|
1464
|
-
"on",
|
|
1465
1954
|
"off",
|
|
1466
|
-
"
|
|
1467
|
-
"given-name",
|
|
1955
|
+
"on",
|
|
1468
1956
|
"additional-name",
|
|
1469
|
-
"
|
|
1470
|
-
"
|
|
1471
|
-
"
|
|
1472
|
-
"
|
|
1473
|
-
"new-password",
|
|
1474
|
-
"current-password",
|
|
1475
|
-
"one-time-code",
|
|
1476
|
-
"organization-title",
|
|
1477
|
-
"organization",
|
|
1478
|
-
"street-address",
|
|
1957
|
+
"address-level1",
|
|
1958
|
+
"address-level2",
|
|
1959
|
+
"address-level3",
|
|
1960
|
+
"address-level4",
|
|
1479
1961
|
"address-line1",
|
|
1480
1962
|
"address-line2",
|
|
1481
1963
|
"address-line3",
|
|
1482
|
-
"
|
|
1483
|
-
"
|
|
1484
|
-
"
|
|
1485
|
-
"
|
|
1486
|
-
"country",
|
|
1487
|
-
"country-name",
|
|
1488
|
-
"postal-code",
|
|
1489
|
-
"cc-name",
|
|
1490
|
-
"cc-given-name",
|
|
1491
|
-
"cc-additional-name",
|
|
1492
|
-
"cc-family-name",
|
|
1493
|
-
"cc-number",
|
|
1964
|
+
"bday-day",
|
|
1965
|
+
"bday-month",
|
|
1966
|
+
"bday-year",
|
|
1967
|
+
"cc-csc",
|
|
1494
1968
|
"cc-exp",
|
|
1495
1969
|
"cc-exp-month",
|
|
1496
1970
|
"cc-exp-year",
|
|
1497
|
-
"cc-
|
|
1971
|
+
"cc-family-name",
|
|
1972
|
+
"cc-given-name",
|
|
1973
|
+
"cc-name",
|
|
1974
|
+
"cc-number",
|
|
1498
1975
|
"cc-type",
|
|
1499
|
-
"
|
|
1976
|
+
"country",
|
|
1977
|
+
"country-name",
|
|
1978
|
+
"current-password",
|
|
1979
|
+
"family-name",
|
|
1980
|
+
"given-name",
|
|
1981
|
+
"honorific-prefix",
|
|
1982
|
+
"honorific-suffix",
|
|
1983
|
+
"new-password",
|
|
1984
|
+
"one-time-code",
|
|
1985
|
+
"organization",
|
|
1986
|
+
"postal-code",
|
|
1987
|
+
"street-address",
|
|
1500
1988
|
"transaction-amount",
|
|
1989
|
+
"transaction-currency",
|
|
1990
|
+
"username",
|
|
1991
|
+
"email",
|
|
1992
|
+
"tel",
|
|
1993
|
+
"tel-area-code",
|
|
1994
|
+
"tel-country-code",
|
|
1995
|
+
"tel-extension",
|
|
1996
|
+
"tel-local",
|
|
1997
|
+
"tel-national",
|
|
1998
|
+
"nickname",
|
|
1999
|
+
"organization-title",
|
|
2000
|
+
"cc-additional-name",
|
|
1501
2001
|
"language",
|
|
1502
2002
|
"bday",
|
|
1503
|
-
"bday-day",
|
|
1504
|
-
"bday-month",
|
|
1505
|
-
"bday-year",
|
|
1506
2003
|
"sex",
|
|
1507
|
-
"tel-country-code",
|
|
1508
|
-
"tel-national",
|
|
1509
|
-
"tel-area-code",
|
|
1510
|
-
"tel-local",
|
|
1511
|
-
"tel-extension",
|
|
1512
2004
|
"impp",
|
|
1513
2005
|
"photo"
|
|
1514
2006
|
]
|
|
@@ -1596,7 +2088,7 @@
|
|
|
1596
2088
|
},
|
|
1597
2089
|
"ion-input/fill": {
|
|
1598
2090
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
1599
|
-
"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
|
|
2091
|
+
"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\"`.",
|
|
1600
2092
|
"options": [
|
|
1601
2093
|
"outline",
|
|
1602
2094
|
"solid"
|
|
@@ -1627,8 +2119,8 @@
|
|
|
1627
2119
|
"options": []
|
|
1628
2120
|
},
|
|
1629
2121
|
"ion-input/label-placement": {
|
|
1630
|
-
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\"",
|
|
1631
|
-
"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 (\"...\").",
|
|
2122
|
+
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\" | undefined",
|
|
2123
|
+
"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.",
|
|
1632
2124
|
"options": [
|
|
1633
2125
|
"end",
|
|
1634
2126
|
"fixed",
|
|
@@ -1659,7 +2151,7 @@
|
|
|
1659
2151
|
},
|
|
1660
2152
|
"ion-input/mode": {
|
|
1661
2153
|
"type": "\"ios\" | \"md\"",
|
|
1662
|
-
"description": "The mode determines
|
|
2154
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1663
2155
|
"options": [
|
|
1664
2156
|
"ios",
|
|
1665
2157
|
"md"
|
|
@@ -1696,10 +2188,21 @@
|
|
|
1696
2188
|
"options": []
|
|
1697
2189
|
},
|
|
1698
2190
|
"ion-input/shape": {
|
|
1699
|
-
"type": "\"round\" | undefined",
|
|
1700
|
-
"description": "
|
|
2191
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2192
|
+
"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\"`.",
|
|
1701
2193
|
"options": [
|
|
1702
|
-
"
|
|
2194
|
+
"rectangular",
|
|
2195
|
+
"round",
|
|
2196
|
+
"soft"
|
|
2197
|
+
]
|
|
2198
|
+
},
|
|
2199
|
+
"ion-input/size": {
|
|
2200
|
+
"type": "\"large\" | \"medium\" | \"xlarge\" | undefined",
|
|
2201
|
+
"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.",
|
|
2202
|
+
"options": [
|
|
2203
|
+
"large",
|
|
2204
|
+
"medium",
|
|
2205
|
+
"xlarge"
|
|
1703
2206
|
]
|
|
1704
2207
|
},
|
|
1705
2208
|
"ion-input/spellcheck": {
|
|
@@ -1712,6 +2215,15 @@
|
|
|
1712
2215
|
"description": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number.",
|
|
1713
2216
|
"options": []
|
|
1714
2217
|
},
|
|
2218
|
+
"ion-input/theme": {
|
|
2219
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2220
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2221
|
+
"options": [
|
|
2222
|
+
"ios",
|
|
2223
|
+
"md",
|
|
2224
|
+
"ionic"
|
|
2225
|
+
]
|
|
2226
|
+
},
|
|
1715
2227
|
"ion-input/type": {
|
|
1716
2228
|
"type": "\"date\" | \"datetime-local\" | \"email\" | \"month\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"time\" | \"url\" | \"week\"",
|
|
1717
2229
|
"description": "The type of control to display. The default type is text.",
|
|
@@ -1790,11 +2302,11 @@
|
|
|
1790
2302
|
},
|
|
1791
2303
|
"ion-item/detail": {
|
|
1792
2304
|
"type": "boolean | undefined",
|
|
1793
|
-
"description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `
|
|
2305
|
+
"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.",
|
|
1794
2306
|
"options": []
|
|
1795
2307
|
},
|
|
1796
2308
|
"ion-item/detail-icon": {
|
|
1797
|
-
"type": "string",
|
|
2309
|
+
"type": "string | undefined",
|
|
1798
2310
|
"description": "The icon to use when `detail` is set to `true`.",
|
|
1799
2311
|
"options": []
|
|
1800
2312
|
},
|
|
@@ -1824,7 +2336,7 @@
|
|
|
1824
2336
|
},
|
|
1825
2337
|
"ion-item/mode": {
|
|
1826
2338
|
"type": "\"ios\" | \"md\"",
|
|
1827
|
-
"description": "The mode determines
|
|
2339
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1828
2340
|
"options": [
|
|
1829
2341
|
"ios",
|
|
1830
2342
|
"md"
|
|
@@ -1854,6 +2366,15 @@
|
|
|
1854
2366
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1855
2367
|
"options": []
|
|
1856
2368
|
},
|
|
2369
|
+
"ion-item/theme": {
|
|
2370
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2371
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2372
|
+
"options": [
|
|
2373
|
+
"ios",
|
|
2374
|
+
"md",
|
|
2375
|
+
"ionic"
|
|
2376
|
+
]
|
|
2377
|
+
},
|
|
1857
2378
|
"ion-item/type": {
|
|
1858
2379
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
1859
2380
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -1880,7 +2401,7 @@
|
|
|
1880
2401
|
},
|
|
1881
2402
|
"ion-item-divider/mode": {
|
|
1882
2403
|
"type": "\"ios\" | \"md\"",
|
|
1883
|
-
"description": "The mode determines
|
|
2404
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1884
2405
|
"options": [
|
|
1885
2406
|
"ios",
|
|
1886
2407
|
"md"
|
|
@@ -1891,6 +2412,32 @@
|
|
|
1891
2412
|
"description": "When it's set to `true`, the item-divider will stay visible when it reaches the top\nof the viewport until the next `ion-item-divider` replaces it.\n\nThis feature relies in `position:sticky`:\nhttps://caniuse.com/#feat=css-sticky",
|
|
1892
2413
|
"options": []
|
|
1893
2414
|
},
|
|
2415
|
+
"ion-item-divider/theme": {
|
|
2416
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2417
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2418
|
+
"options": [
|
|
2419
|
+
"ios",
|
|
2420
|
+
"md",
|
|
2421
|
+
"ionic"
|
|
2422
|
+
]
|
|
2423
|
+
},
|
|
2424
|
+
"ion-item-group/mode": {
|
|
2425
|
+
"type": "\"ios\" | \"md\"",
|
|
2426
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2427
|
+
"options": [
|
|
2428
|
+
"ios",
|
|
2429
|
+
"md"
|
|
2430
|
+
]
|
|
2431
|
+
},
|
|
2432
|
+
"ion-item-group/theme": {
|
|
2433
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2434
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2435
|
+
"options": [
|
|
2436
|
+
"ios",
|
|
2437
|
+
"md",
|
|
2438
|
+
"ionic"
|
|
2439
|
+
]
|
|
2440
|
+
},
|
|
1894
2441
|
"ion-item-option/color": {
|
|
1895
2442
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
1896
2443
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -1928,7 +2475,7 @@
|
|
|
1928
2475
|
},
|
|
1929
2476
|
"ion-item-option/mode": {
|
|
1930
2477
|
"type": "\"ios\" | \"md\"",
|
|
1931
|
-
"description": "The mode determines
|
|
2478
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1932
2479
|
"options": [
|
|
1933
2480
|
"ios",
|
|
1934
2481
|
"md"
|
|
@@ -1939,11 +2486,29 @@
|
|
|
1939
2486
|
"description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).",
|
|
1940
2487
|
"options": []
|
|
1941
2488
|
},
|
|
2489
|
+
"ion-item-option/shape": {
|
|
2490
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2491
|
+
"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.",
|
|
2492
|
+
"options": [
|
|
2493
|
+
"rectangular",
|
|
2494
|
+
"round",
|
|
2495
|
+
"soft"
|
|
2496
|
+
]
|
|
2497
|
+
},
|
|
1942
2498
|
"ion-item-option/target": {
|
|
1943
2499
|
"type": "string | undefined",
|
|
1944
2500
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1945
2501
|
"options": []
|
|
1946
2502
|
},
|
|
2503
|
+
"ion-item-option/theme": {
|
|
2504
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2505
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2506
|
+
"options": [
|
|
2507
|
+
"ios",
|
|
2508
|
+
"md",
|
|
2509
|
+
"ionic"
|
|
2510
|
+
]
|
|
2511
|
+
},
|
|
1947
2512
|
"ion-item-option/type": {
|
|
1948
2513
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
1949
2514
|
"description": "The type of the button.",
|
|
@@ -1953,6 +2518,14 @@
|
|
|
1953
2518
|
"submit"
|
|
1954
2519
|
]
|
|
1955
2520
|
},
|
|
2521
|
+
"ion-item-options/mode": {
|
|
2522
|
+
"type": "\"ios\" | \"md\"",
|
|
2523
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2524
|
+
"options": [
|
|
2525
|
+
"ios",
|
|
2526
|
+
"md"
|
|
2527
|
+
]
|
|
2528
|
+
},
|
|
1956
2529
|
"ion-item-options/side": {
|
|
1957
2530
|
"type": "\"end\" | \"start\"",
|
|
1958
2531
|
"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.",
|
|
@@ -1961,11 +2534,37 @@
|
|
|
1961
2534
|
"start"
|
|
1962
2535
|
]
|
|
1963
2536
|
},
|
|
2537
|
+
"ion-item-options/theme": {
|
|
2538
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2539
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2540
|
+
"options": [
|
|
2541
|
+
"ios",
|
|
2542
|
+
"md",
|
|
2543
|
+
"ionic"
|
|
2544
|
+
]
|
|
2545
|
+
},
|
|
1964
2546
|
"ion-item-sliding/disabled": {
|
|
1965
2547
|
"type": "boolean",
|
|
1966
2548
|
"description": "If `true`, the user cannot interact with the sliding item.",
|
|
1967
2549
|
"options": []
|
|
1968
2550
|
},
|
|
2551
|
+
"ion-item-sliding/mode": {
|
|
2552
|
+
"type": "\"ios\" | \"md\"",
|
|
2553
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2554
|
+
"options": [
|
|
2555
|
+
"ios",
|
|
2556
|
+
"md"
|
|
2557
|
+
]
|
|
2558
|
+
},
|
|
2559
|
+
"ion-item-sliding/theme": {
|
|
2560
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2561
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2562
|
+
"options": [
|
|
2563
|
+
"ios",
|
|
2564
|
+
"md",
|
|
2565
|
+
"ionic"
|
|
2566
|
+
]
|
|
2567
|
+
},
|
|
1969
2568
|
"ion-label/color": {
|
|
1970
2569
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
1971
2570
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -1983,7 +2582,7 @@
|
|
|
1983
2582
|
},
|
|
1984
2583
|
"ion-label/mode": {
|
|
1985
2584
|
"type": "\"ios\" | \"md\"",
|
|
1986
|
-
"description": "The mode determines
|
|
2585
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1987
2586
|
"options": [
|
|
1988
2587
|
"ios",
|
|
1989
2588
|
"md"
|
|
@@ -1998,6 +2597,15 @@
|
|
|
1998
2597
|
"stacked"
|
|
1999
2598
|
]
|
|
2000
2599
|
},
|
|
2600
|
+
"ion-label/theme": {
|
|
2601
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2602
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2603
|
+
"options": [
|
|
2604
|
+
"ios",
|
|
2605
|
+
"md",
|
|
2606
|
+
"ionic"
|
|
2607
|
+
]
|
|
2608
|
+
},
|
|
2001
2609
|
"ion-list/inset": {
|
|
2002
2610
|
"type": "boolean",
|
|
2003
2611
|
"description": "If `true`, the list will have margin around it and rounded corners.",
|
|
@@ -2014,12 +2622,30 @@
|
|
|
2014
2622
|
},
|
|
2015
2623
|
"ion-list/mode": {
|
|
2016
2624
|
"type": "\"ios\" | \"md\"",
|
|
2017
|
-
"description": "The mode determines
|
|
2625
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2018
2626
|
"options": [
|
|
2019
2627
|
"ios",
|
|
2020
2628
|
"md"
|
|
2021
2629
|
]
|
|
2022
2630
|
},
|
|
2631
|
+
"ion-list/shape": {
|
|
2632
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2633
|
+
"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.",
|
|
2634
|
+
"options": [
|
|
2635
|
+
"rectangular",
|
|
2636
|
+
"round",
|
|
2637
|
+
"soft"
|
|
2638
|
+
]
|
|
2639
|
+
},
|
|
2640
|
+
"ion-list/theme": {
|
|
2641
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2642
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2643
|
+
"options": [
|
|
2644
|
+
"ios",
|
|
2645
|
+
"md",
|
|
2646
|
+
"ionic"
|
|
2647
|
+
]
|
|
2648
|
+
},
|
|
2023
2649
|
"ion-list-header/color": {
|
|
2024
2650
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2025
2651
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -2046,12 +2672,21 @@
|
|
|
2046
2672
|
},
|
|
2047
2673
|
"ion-list-header/mode": {
|
|
2048
2674
|
"type": "\"ios\" | \"md\"",
|
|
2049
|
-
"description": "The mode determines
|
|
2675
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2050
2676
|
"options": [
|
|
2051
2677
|
"ios",
|
|
2052
2678
|
"md"
|
|
2053
2679
|
]
|
|
2054
2680
|
},
|
|
2681
|
+
"ion-list-header/theme": {
|
|
2682
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2683
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2684
|
+
"options": [
|
|
2685
|
+
"ios",
|
|
2686
|
+
"md",
|
|
2687
|
+
"ionic"
|
|
2688
|
+
]
|
|
2689
|
+
},
|
|
2055
2690
|
"ion-loading/animated": {
|
|
2056
2691
|
"type": "boolean",
|
|
2057
2692
|
"description": "If `true`, the loading indicator will animate.",
|
|
@@ -2104,7 +2739,7 @@
|
|
|
2104
2739
|
},
|
|
2105
2740
|
"ion-loading/mode": {
|
|
2106
2741
|
"type": "\"ios\" | \"md\"",
|
|
2107
|
-
"description": "The mode determines
|
|
2742
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2108
2743
|
"options": [
|
|
2109
2744
|
"ios",
|
|
2110
2745
|
"md"
|
|
@@ -2130,9 +2765,18 @@
|
|
|
2130
2765
|
"lines-small"
|
|
2131
2766
|
]
|
|
2132
2767
|
},
|
|
2768
|
+
"ion-loading/theme": {
|
|
2769
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2770
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2771
|
+
"options": [
|
|
2772
|
+
"ios",
|
|
2773
|
+
"md",
|
|
2774
|
+
"ionic"
|
|
2775
|
+
]
|
|
2776
|
+
},
|
|
2133
2777
|
"ion-loading/translucent": {
|
|
2134
2778
|
"type": "boolean",
|
|
2135
|
-
"description": "If `true`, the loading indicator will be translucent.\nOnly applies when the
|
|
2779
|
+
"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).",
|
|
2136
2780
|
"options": []
|
|
2137
2781
|
},
|
|
2138
2782
|
"ion-loading/trigger": {
|
|
@@ -2160,6 +2804,14 @@
|
|
|
2160
2804
|
"description": "An id for the menu.",
|
|
2161
2805
|
"options": []
|
|
2162
2806
|
},
|
|
2807
|
+
"ion-menu/mode": {
|
|
2808
|
+
"type": "\"ios\" | \"md\"",
|
|
2809
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2810
|
+
"options": [
|
|
2811
|
+
"ios",
|
|
2812
|
+
"md"
|
|
2813
|
+
]
|
|
2814
|
+
},
|
|
2163
2815
|
"ion-menu/side": {
|
|
2164
2816
|
"type": "\"end\" | \"start\"",
|
|
2165
2817
|
"description": "Which side of the view the menu should be placed.",
|
|
@@ -2173,6 +2825,15 @@
|
|
|
2173
2825
|
"description": "If `true`, swiping the menu is enabled.",
|
|
2174
2826
|
"options": []
|
|
2175
2827
|
},
|
|
2828
|
+
"ion-menu/theme": {
|
|
2829
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2830
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2831
|
+
"options": [
|
|
2832
|
+
"ios",
|
|
2833
|
+
"md",
|
|
2834
|
+
"ionic"
|
|
2835
|
+
]
|
|
2836
|
+
},
|
|
2176
2837
|
"ion-menu/type": {
|
|
2177
2838
|
"type": "\"overlay\" | \"push\" | \"reveal\" | undefined",
|
|
2178
2839
|
"description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
|
|
@@ -2214,12 +2875,21 @@
|
|
|
2214
2875
|
},
|
|
2215
2876
|
"ion-menu-button/mode": {
|
|
2216
2877
|
"type": "\"ios\" | \"md\"",
|
|
2217
|
-
"description": "The mode determines
|
|
2878
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2218
2879
|
"options": [
|
|
2219
2880
|
"ios",
|
|
2220
2881
|
"md"
|
|
2221
2882
|
]
|
|
2222
2883
|
},
|
|
2884
|
+
"ion-menu-button/theme": {
|
|
2885
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2886
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2887
|
+
"options": [
|
|
2888
|
+
"ios",
|
|
2889
|
+
"md",
|
|
2890
|
+
"ionic"
|
|
2891
|
+
]
|
|
2892
|
+
},
|
|
2223
2893
|
"ion-menu-button/type": {
|
|
2224
2894
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
2225
2895
|
"description": "The type of the button.",
|
|
@@ -2239,6 +2909,23 @@
|
|
|
2239
2909
|
"description": "Optional property that maps to a Menu's `menuId` prop.\nCan also be `start` or `end` for the menu side.\nThis is used to find the correct menu to toggle.\n\nIf this property is not used, `ion-menu-toggle` will toggle the\nfirst menu that is active.",
|
|
2240
2910
|
"options": []
|
|
2241
2911
|
},
|
|
2912
|
+
"ion-menu-toggle/mode": {
|
|
2913
|
+
"type": "\"ios\" | \"md\"",
|
|
2914
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2915
|
+
"options": [
|
|
2916
|
+
"ios",
|
|
2917
|
+
"md"
|
|
2918
|
+
]
|
|
2919
|
+
},
|
|
2920
|
+
"ion-menu-toggle/theme": {
|
|
2921
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2922
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2923
|
+
"options": [
|
|
2924
|
+
"ios",
|
|
2925
|
+
"md",
|
|
2926
|
+
"ionic"
|
|
2927
|
+
]
|
|
2928
|
+
},
|
|
2242
2929
|
"ion-modal/animated": {
|
|
2243
2930
|
"type": "boolean",
|
|
2244
2931
|
"description": "If `true`, the modal will animate.",
|
|
@@ -2319,7 +3006,7 @@
|
|
|
2319
3006
|
},
|
|
2320
3007
|
"ion-modal/mode": {
|
|
2321
3008
|
"type": "\"ios\" | \"md\"",
|
|
2322
|
-
"description": "The mode determines
|
|
3009
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2323
3010
|
"options": [
|
|
2324
3011
|
"ios",
|
|
2325
3012
|
"md"
|
|
@@ -2330,11 +3017,29 @@
|
|
|
2330
3017
|
"description": "The element that presented the modal. This is used for card presentation effects\nand for stacking multiple modals on top of each other. Only applies in iOS mode.",
|
|
2331
3018
|
"options": []
|
|
2332
3019
|
},
|
|
3020
|
+
"ion-modal/shape": {
|
|
3021
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
3022
|
+
"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.",
|
|
3023
|
+
"options": [
|
|
3024
|
+
"rectangular",
|
|
3025
|
+
"round",
|
|
3026
|
+
"soft"
|
|
3027
|
+
]
|
|
3028
|
+
},
|
|
2333
3029
|
"ion-modal/show-backdrop": {
|
|
2334
3030
|
"type": "boolean",
|
|
2335
3031
|
"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.",
|
|
2336
3032
|
"options": []
|
|
2337
3033
|
},
|
|
3034
|
+
"ion-modal/theme": {
|
|
3035
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3036
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3037
|
+
"options": [
|
|
3038
|
+
"ios",
|
|
3039
|
+
"md",
|
|
3040
|
+
"ionic"
|
|
3041
|
+
]
|
|
3042
|
+
},
|
|
2338
3043
|
"ion-modal/trigger": {
|
|
2339
3044
|
"type": "string | undefined",
|
|
2340
3045
|
"description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked.",
|
|
@@ -2347,9 +3052,17 @@
|
|
|
2347
3052
|
},
|
|
2348
3053
|
"ion-nav/animation": {
|
|
2349
3054
|
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2350
|
-
"description": "By default `ion-nav` animates transition between pages based
|
|
3055
|
+
"description": "By default `ion-nav` animates transition between pages based on the mode (\"ios\" or \"md\").\nHowever, this property allows to create custom transition using `AnimationBuilder` functions.",
|
|
2351
3056
|
"options": []
|
|
2352
3057
|
},
|
|
3058
|
+
"ion-nav/mode": {
|
|
3059
|
+
"type": "\"ios\" | \"md\"",
|
|
3060
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3061
|
+
"options": [
|
|
3062
|
+
"ios",
|
|
3063
|
+
"md"
|
|
3064
|
+
]
|
|
3065
|
+
},
|
|
2353
3066
|
"ion-nav/root": {
|
|
2354
3067
|
"type": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
2355
3068
|
"description": "Root NavComponent to load",
|
|
@@ -2365,6 +3078,15 @@
|
|
|
2365
3078
|
"description": "If the nav component should allow for swipe-to-go-back.",
|
|
2366
3079
|
"options": []
|
|
2367
3080
|
},
|
|
3081
|
+
"ion-nav/theme": {
|
|
3082
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3083
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3084
|
+
"options": [
|
|
3085
|
+
"ios",
|
|
3086
|
+
"md",
|
|
3087
|
+
"ionic"
|
|
3088
|
+
]
|
|
3089
|
+
},
|
|
2368
3090
|
"ion-nav-link/component": {
|
|
2369
3091
|
"type": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
2370
3092
|
"description": "Component to navigate to. Only used if the `routerDirection` is `\"forward\"` or `\"root\"`.",
|
|
@@ -2375,6 +3097,14 @@
|
|
|
2375
3097
|
"description": "Data you want to pass to the component as props. Only used if the `\"routerDirection\"` is `\"forward\"` or `\"root\"`.",
|
|
2376
3098
|
"options": []
|
|
2377
3099
|
},
|
|
3100
|
+
"ion-nav-link/mode": {
|
|
3101
|
+
"type": "\"ios\" | \"md\"",
|
|
3102
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3103
|
+
"options": [
|
|
3104
|
+
"ios",
|
|
3105
|
+
"md"
|
|
3106
|
+
]
|
|
3107
|
+
},
|
|
2378
3108
|
"ion-nav-link/router-animation": {
|
|
2379
3109
|
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2380
3110
|
"description": "The transition animation when navigating to another page.",
|
|
@@ -2389,6 +3119,15 @@
|
|
|
2389
3119
|
"root"
|
|
2390
3120
|
]
|
|
2391
3121
|
},
|
|
3122
|
+
"ion-nav-link/theme": {
|
|
3123
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3124
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3125
|
+
"options": [
|
|
3126
|
+
"ios",
|
|
3127
|
+
"md",
|
|
3128
|
+
"ionic"
|
|
3129
|
+
]
|
|
3130
|
+
},
|
|
2392
3131
|
"ion-note/color": {
|
|
2393
3132
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2394
3133
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -2406,20 +3145,38 @@
|
|
|
2406
3145
|
},
|
|
2407
3146
|
"ion-note/mode": {
|
|
2408
3147
|
"type": "\"ios\" | \"md\"",
|
|
2409
|
-
"description": "The mode determines
|
|
3148
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2410
3149
|
"options": [
|
|
2411
3150
|
"ios",
|
|
2412
3151
|
"md"
|
|
2413
3152
|
]
|
|
2414
3153
|
},
|
|
3154
|
+
"ion-note/theme": {
|
|
3155
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3156
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3157
|
+
"options": [
|
|
3158
|
+
"ios",
|
|
3159
|
+
"md",
|
|
3160
|
+
"ionic"
|
|
3161
|
+
]
|
|
3162
|
+
},
|
|
2415
3163
|
"ion-picker/mode": {
|
|
2416
3164
|
"type": "\"ios\" | \"md\"",
|
|
2417
|
-
"description": "The mode determines
|
|
3165
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2418
3166
|
"options": [
|
|
2419
3167
|
"ios",
|
|
2420
3168
|
"md"
|
|
2421
3169
|
]
|
|
2422
3170
|
},
|
|
3171
|
+
"ion-picker/theme": {
|
|
3172
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3173
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3174
|
+
"options": [
|
|
3175
|
+
"ios",
|
|
3176
|
+
"md",
|
|
3177
|
+
"ionic"
|
|
3178
|
+
]
|
|
3179
|
+
},
|
|
2423
3180
|
"ion-picker-column/color": {
|
|
2424
3181
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2425
3182
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -2442,12 +3199,21 @@
|
|
|
2442
3199
|
},
|
|
2443
3200
|
"ion-picker-column/mode": {
|
|
2444
3201
|
"type": "\"ios\" | \"md\"",
|
|
2445
|
-
"description": "The mode determines
|
|
3202
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2446
3203
|
"options": [
|
|
2447
3204
|
"ios",
|
|
2448
3205
|
"md"
|
|
2449
3206
|
]
|
|
2450
3207
|
},
|
|
3208
|
+
"ion-picker-column/theme": {
|
|
3209
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3210
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3211
|
+
"options": [
|
|
3212
|
+
"ios",
|
|
3213
|
+
"md",
|
|
3214
|
+
"ionic"
|
|
3215
|
+
]
|
|
3216
|
+
},
|
|
2451
3217
|
"ion-picker-column/value": {
|
|
2452
3218
|
"type": "number | string | undefined",
|
|
2453
3219
|
"description": "The selected option in the picker.",
|
|
@@ -2473,6 +3239,23 @@
|
|
|
2473
3239
|
"description": "If `true`, the user cannot interact with the picker column option.",
|
|
2474
3240
|
"options": []
|
|
2475
3241
|
},
|
|
3242
|
+
"ion-picker-column-option/mode": {
|
|
3243
|
+
"type": "\"ios\" | \"md\"",
|
|
3244
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3245
|
+
"options": [
|
|
3246
|
+
"ios",
|
|
3247
|
+
"md"
|
|
3248
|
+
]
|
|
3249
|
+
},
|
|
3250
|
+
"ion-picker-column-option/theme": {
|
|
3251
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3252
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3253
|
+
"options": [
|
|
3254
|
+
"ios",
|
|
3255
|
+
"md",
|
|
3256
|
+
"ionic"
|
|
3257
|
+
]
|
|
3258
|
+
},
|
|
2476
3259
|
"ion-picker-column-option/value": {
|
|
2477
3260
|
"type": "any",
|
|
2478
3261
|
"description": "The text value of the option.",
|
|
@@ -2535,7 +3318,7 @@
|
|
|
2535
3318
|
},
|
|
2536
3319
|
"ion-picker-legacy/mode": {
|
|
2537
3320
|
"type": "\"ios\" | \"md\"",
|
|
2538
|
-
"description": "The mode determines
|
|
3321
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2539
3322
|
"options": [
|
|
2540
3323
|
"ios",
|
|
2541
3324
|
"md"
|
|
@@ -2546,6 +3329,15 @@
|
|
|
2546
3329
|
"description": "If `true`, a backdrop will be displayed behind the picker.",
|
|
2547
3330
|
"options": []
|
|
2548
3331
|
},
|
|
3332
|
+
"ion-picker-legacy/theme": {
|
|
3333
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3334
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3335
|
+
"options": [
|
|
3336
|
+
"ios",
|
|
3337
|
+
"md",
|
|
3338
|
+
"ionic"
|
|
3339
|
+
]
|
|
3340
|
+
},
|
|
2549
3341
|
"ion-picker-legacy/trigger": {
|
|
2550
3342
|
"type": "string | undefined",
|
|
2551
3343
|
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
@@ -2553,7 +3345,7 @@
|
|
|
2553
3345
|
},
|
|
2554
3346
|
"ion-popover/alignment": {
|
|
2555
3347
|
"type": "\"center\" | \"end\" | \"start\" | undefined",
|
|
2556
|
-
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for
|
|
3348
|
+
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
|
|
2557
3349
|
"options": [
|
|
2558
3350
|
"center",
|
|
2559
3351
|
"end",
|
|
@@ -2567,7 +3359,7 @@
|
|
|
2567
3359
|
},
|
|
2568
3360
|
"ion-popover/arrow": {
|
|
2569
3361
|
"type": "boolean",
|
|
2570
|
-
"description": "If `true`, the popover will display an arrow that points at the\n`reference`
|
|
3362
|
+
"description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme.",
|
|
2571
3363
|
"options": []
|
|
2572
3364
|
},
|
|
2573
3365
|
"ion-popover/backdrop-dismiss": {
|
|
@@ -2632,7 +3424,7 @@
|
|
|
2632
3424
|
},
|
|
2633
3425
|
"ion-popover/mode": {
|
|
2634
3426
|
"type": "\"ios\" | \"md\"",
|
|
2635
|
-
"description": "The mode determines
|
|
3427
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2636
3428
|
"options": [
|
|
2637
3429
|
"ios",
|
|
2638
3430
|
"md"
|
|
@@ -2671,9 +3463,18 @@
|
|
|
2671
3463
|
"cover"
|
|
2672
3464
|
]
|
|
2673
3465
|
},
|
|
3466
|
+
"ion-popover/theme": {
|
|
3467
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3468
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3469
|
+
"options": [
|
|
3470
|
+
"ios",
|
|
3471
|
+
"md",
|
|
3472
|
+
"ionic"
|
|
3473
|
+
]
|
|
3474
|
+
},
|
|
2674
3475
|
"ion-popover/translucent": {
|
|
2675
3476
|
"type": "boolean",
|
|
2676
|
-
"description": "If `true`, the popover will be translucent.\nOnly applies when the
|
|
3477
|
+
"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).",
|
|
2677
3478
|
"options": []
|
|
2678
3479
|
},
|
|
2679
3480
|
"ion-popover/trigger": {
|
|
@@ -2712,7 +3513,7 @@
|
|
|
2712
3513
|
},
|
|
2713
3514
|
"ion-progress-bar/mode": {
|
|
2714
3515
|
"type": "\"ios\" | \"md\"",
|
|
2715
|
-
"description": "The mode determines
|
|
3516
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2716
3517
|
"options": [
|
|
2717
3518
|
"ios",
|
|
2718
3519
|
"md"
|
|
@@ -2723,6 +3524,15 @@
|
|
|
2723
3524
|
"description": "If true, reverse the progress bar direction.",
|
|
2724
3525
|
"options": []
|
|
2725
3526
|
},
|
|
3527
|
+
"ion-progress-bar/theme": {
|
|
3528
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3529
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3530
|
+
"options": [
|
|
3531
|
+
"ios",
|
|
3532
|
+
"md",
|
|
3533
|
+
"ionic"
|
|
3534
|
+
]
|
|
3535
|
+
},
|
|
2726
3536
|
"ion-progress-bar/type": {
|
|
2727
3537
|
"type": "\"determinate\" | \"indeterminate\"",
|
|
2728
3538
|
"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).",
|
|
@@ -2785,7 +3595,7 @@
|
|
|
2785
3595
|
},
|
|
2786
3596
|
"ion-radio/mode": {
|
|
2787
3597
|
"type": "\"ios\" | \"md\"",
|
|
2788
|
-
"description": "The mode determines
|
|
3598
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2789
3599
|
"options": [
|
|
2790
3600
|
"ios",
|
|
2791
3601
|
"md"
|
|
@@ -2796,6 +3606,15 @@
|
|
|
2796
3606
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2797
3607
|
"options": []
|
|
2798
3608
|
},
|
|
3609
|
+
"ion-radio/theme": {
|
|
3610
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3611
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3612
|
+
"options": [
|
|
3613
|
+
"ios",
|
|
3614
|
+
"md",
|
|
3615
|
+
"ionic"
|
|
3616
|
+
]
|
|
3617
|
+
},
|
|
2799
3618
|
"ion-radio/value": {
|
|
2800
3619
|
"type": "any",
|
|
2801
3620
|
"description": "the value of the radio.",
|
|
@@ -2811,11 +3630,28 @@
|
|
|
2811
3630
|
"description": "This property allows developers to specify a custom function or property\nname for comparing objects when determining the selected option in the\nion-radio-group. When not specified, the default behavior will use strict\nequality (===) for comparison.",
|
|
2812
3631
|
"options": []
|
|
2813
3632
|
},
|
|
3633
|
+
"ion-radio-group/mode": {
|
|
3634
|
+
"type": "\"ios\" | \"md\"",
|
|
3635
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3636
|
+
"options": [
|
|
3637
|
+
"ios",
|
|
3638
|
+
"md"
|
|
3639
|
+
]
|
|
3640
|
+
},
|
|
2814
3641
|
"ion-radio-group/name": {
|
|
2815
3642
|
"type": "string",
|
|
2816
3643
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2817
3644
|
"options": []
|
|
2818
3645
|
},
|
|
3646
|
+
"ion-radio-group/theme": {
|
|
3647
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3648
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3649
|
+
"options": [
|
|
3650
|
+
"ios",
|
|
3651
|
+
"md",
|
|
3652
|
+
"ionic"
|
|
3653
|
+
]
|
|
3654
|
+
},
|
|
2819
3655
|
"ion-radio-group/value": {
|
|
2820
3656
|
"type": "any",
|
|
2821
3657
|
"description": "the value of the radio group.",
|
|
@@ -2883,7 +3719,7 @@
|
|
|
2883
3719
|
},
|
|
2884
3720
|
"ion-range/mode": {
|
|
2885
3721
|
"type": "\"ios\" | \"md\"",
|
|
2886
|
-
"description": "The mode determines
|
|
3722
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2887
3723
|
"options": [
|
|
2888
3724
|
"ios",
|
|
2889
3725
|
"md"
|
|
@@ -2914,6 +3750,15 @@
|
|
|
2914
3750
|
"description": "Specifies the value granularity.",
|
|
2915
3751
|
"options": []
|
|
2916
3752
|
},
|
|
3753
|
+
"ion-range/theme": {
|
|
3754
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3755
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3756
|
+
"options": [
|
|
3757
|
+
"ios",
|
|
3758
|
+
"md",
|
|
3759
|
+
"ionic"
|
|
3760
|
+
]
|
|
3761
|
+
},
|
|
2917
3762
|
"ion-range/ticks": {
|
|
2918
3763
|
"type": "boolean",
|
|
2919
3764
|
"description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
|
|
@@ -2936,7 +3781,7 @@
|
|
|
2936
3781
|
},
|
|
2937
3782
|
"ion-refresher/mode": {
|
|
2938
3783
|
"type": "\"ios\" | \"md\"",
|
|
2939
|
-
"description": "The mode determines
|
|
3784
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2940
3785
|
"options": [
|
|
2941
3786
|
"ios",
|
|
2942
3787
|
"md"
|
|
@@ -2962,6 +3807,23 @@
|
|
|
2962
3807
|
"description": "Time it takes the refresher to snap back to the `refreshing` state.\nDoes not apply when the refresher content uses a spinner,\nenabling the native refresher.",
|
|
2963
3808
|
"options": []
|
|
2964
3809
|
},
|
|
3810
|
+
"ion-refresher/theme": {
|
|
3811
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3812
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3813
|
+
"options": [
|
|
3814
|
+
"ios",
|
|
3815
|
+
"md",
|
|
3816
|
+
"ionic"
|
|
3817
|
+
]
|
|
3818
|
+
},
|
|
3819
|
+
"ion-refresher-content/mode": {
|
|
3820
|
+
"type": "\"ios\" | \"md\"",
|
|
3821
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3822
|
+
"options": [
|
|
3823
|
+
"ios",
|
|
3824
|
+
"md"
|
|
3825
|
+
]
|
|
3826
|
+
},
|
|
2965
3827
|
"ion-refresher-content/pulling-icon": {
|
|
2966
3828
|
"type": "null | string | undefined",
|
|
2967
3829
|
"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.",
|
|
@@ -2992,11 +3854,71 @@
|
|
|
2992
3854
|
"description": "The text you want to display when performing a refresh.\n`refreshingText` can accept either plaintext or HTML as a string.\nTo display characters normally reserved for HTML, they\nmust be escaped. For example `<Ionic>` would become\n`<Ionic>`\n\nFor more information: [Security Documentation](https://ionicframework.com/docs/faq/security)\n\nContent is parsed as plaintext by default.\n`innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config\nbefore custom HTML can be used.",
|
|
2993
3855
|
"options": []
|
|
2994
3856
|
},
|
|
3857
|
+
"ion-refresher-content/theme": {
|
|
3858
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3859
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3860
|
+
"options": [
|
|
3861
|
+
"ios",
|
|
3862
|
+
"md",
|
|
3863
|
+
"ionic"
|
|
3864
|
+
]
|
|
3865
|
+
},
|
|
3866
|
+
"ion-reorder/mode": {
|
|
3867
|
+
"type": "\"ios\" | \"md\"",
|
|
3868
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3869
|
+
"options": [
|
|
3870
|
+
"ios",
|
|
3871
|
+
"md"
|
|
3872
|
+
]
|
|
3873
|
+
},
|
|
3874
|
+
"ion-reorder/theme": {
|
|
3875
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3876
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3877
|
+
"options": [
|
|
3878
|
+
"ios",
|
|
3879
|
+
"md",
|
|
3880
|
+
"ionic"
|
|
3881
|
+
]
|
|
3882
|
+
},
|
|
2995
3883
|
"ion-reorder-group/disabled": {
|
|
2996
3884
|
"type": "boolean",
|
|
2997
3885
|
"description": "If `true`, the reorder will be hidden.",
|
|
2998
3886
|
"options": []
|
|
2999
3887
|
},
|
|
3888
|
+
"ion-reorder-group/mode": {
|
|
3889
|
+
"type": "\"ios\" | \"md\"",
|
|
3890
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3891
|
+
"options": [
|
|
3892
|
+
"ios",
|
|
3893
|
+
"md"
|
|
3894
|
+
]
|
|
3895
|
+
},
|
|
3896
|
+
"ion-reorder-group/theme": {
|
|
3897
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3898
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3899
|
+
"options": [
|
|
3900
|
+
"ios",
|
|
3901
|
+
"md",
|
|
3902
|
+
"ionic"
|
|
3903
|
+
]
|
|
3904
|
+
},
|
|
3905
|
+
"ion-ripple-effect/mode": {
|
|
3906
|
+
"type": "\"ios\" | \"md\"",
|
|
3907
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3908
|
+
"options": [
|
|
3909
|
+
"ios",
|
|
3910
|
+
"md"
|
|
3911
|
+
]
|
|
3912
|
+
},
|
|
3913
|
+
"ion-ripple-effect/theme": {
|
|
3914
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3915
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3916
|
+
"options": [
|
|
3917
|
+
"ios",
|
|
3918
|
+
"md",
|
|
3919
|
+
"ionic"
|
|
3920
|
+
]
|
|
3921
|
+
},
|
|
3000
3922
|
"ion-ripple-effect/type": {
|
|
3001
3923
|
"type": "\"bounded\" | \"unbounded\"",
|
|
3002
3924
|
"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.",
|
|
@@ -3025,6 +3947,23 @@
|
|
|
3025
3947
|
"description": "A key value `{ 'red': true, 'blue': 'white'}` containing props that should be passed\nto the defined component when rendered.",
|
|
3026
3948
|
"options": []
|
|
3027
3949
|
},
|
|
3950
|
+
"ion-route/mode": {
|
|
3951
|
+
"type": "\"ios\" | \"md\"",
|
|
3952
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3953
|
+
"options": [
|
|
3954
|
+
"ios",
|
|
3955
|
+
"md"
|
|
3956
|
+
]
|
|
3957
|
+
},
|
|
3958
|
+
"ion-route/theme": {
|
|
3959
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3960
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3961
|
+
"options": [
|
|
3962
|
+
"ios",
|
|
3963
|
+
"md",
|
|
3964
|
+
"ionic"
|
|
3965
|
+
]
|
|
3966
|
+
},
|
|
3028
3967
|
"ion-route/url": {
|
|
3029
3968
|
"type": "string",
|
|
3030
3969
|
"description": "Relative path that needs to match in order for this route to apply.\n\nAccepts paths similar to expressjs so that you can define parameters\nin the url /foo/:bar where bar would be available in incoming props.",
|
|
@@ -3040,11 +3979,28 @@
|
|
|
3040
3979
|
"description": "A redirect route, redirects \"from\" a URL \"to\" another URL. This property is that \"to\" URL.\nWhen the defined `ion-route-redirect` rule matches, the router will redirect to the path\nspecified in this property.\n\nThe value of this property is always an absolute path inside the scope of routes defined in\n`ion-router` it can't be used with another router or to perform a redirection to a different domain.\n\nNote that this is a virtual redirect, it will not cause a real browser refresh, again, it's\na redirect inside the context of ion-router.\n\nWhen this property is not specified or his value is `undefined` the whole redirect route is noop,\neven if the \"from\" value matches.",
|
|
3041
3980
|
"options": []
|
|
3042
3981
|
},
|
|
3982
|
+
"ion-router/mode": {
|
|
3983
|
+
"type": "\"ios\" | \"md\"",
|
|
3984
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3985
|
+
"options": [
|
|
3986
|
+
"ios",
|
|
3987
|
+
"md"
|
|
3988
|
+
]
|
|
3989
|
+
},
|
|
3043
3990
|
"ion-router/root": {
|
|
3044
3991
|
"type": "string",
|
|
3045
3992
|
"description": "The root path to use when matching URLs. By default, this is set to \"/\", but you can specify\nan alternate prefix for all URL paths.",
|
|
3046
3993
|
"options": []
|
|
3047
3994
|
},
|
|
3995
|
+
"ion-router/theme": {
|
|
3996
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3997
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3998
|
+
"options": [
|
|
3999
|
+
"ios",
|
|
4000
|
+
"md",
|
|
4001
|
+
"ionic"
|
|
4002
|
+
]
|
|
4003
|
+
},
|
|
3048
4004
|
"ion-router/use-hash": {
|
|
3049
4005
|
"type": "boolean",
|
|
3050
4006
|
"description": "The router can work in two \"modes\":\n- With hash: `/index.html#/path/to/page`\n- Without hash: `/path/to/page`\n\nUsing one or another might depend in the requirements of your app and/or where it's deployed.\n\nUsually \"hash-less\" navigation works better for SEO and it's more user friendly too, but it might\nrequires additional server-side configuration in order to properly work.\n\nOn the other side hash-navigation is much easier to deploy, it even works over the file protocol.\n\nBy default, this property is `true`, change to `false` to allow hash-less URLs.",
|
|
@@ -3070,6 +4026,14 @@
|
|
|
3070
4026
|
"description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered.",
|
|
3071
4027
|
"options": []
|
|
3072
4028
|
},
|
|
4029
|
+
"ion-router-link/mode": {
|
|
4030
|
+
"type": "\"ios\" | \"md\"",
|
|
4031
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4032
|
+
"options": [
|
|
4033
|
+
"ios",
|
|
4034
|
+
"md"
|
|
4035
|
+
]
|
|
4036
|
+
},
|
|
3073
4037
|
"ion-router-link/rel": {
|
|
3074
4038
|
"type": "string | undefined",
|
|
3075
4039
|
"description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).",
|
|
@@ -3094,24 +4058,59 @@
|
|
|
3094
4058
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3095
4059
|
"options": []
|
|
3096
4060
|
},
|
|
4061
|
+
"ion-router-link/theme": {
|
|
4062
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4063
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4064
|
+
"options": [
|
|
4065
|
+
"ios",
|
|
4066
|
+
"md",
|
|
4067
|
+
"ionic"
|
|
4068
|
+
]
|
|
4069
|
+
},
|
|
3097
4070
|
"ion-router-outlet/animated": {
|
|
3098
4071
|
"type": "boolean",
|
|
3099
4072
|
"description": "If `true`, the router-outlet should animate the transition of components.",
|
|
3100
4073
|
"options": []
|
|
3101
4074
|
},
|
|
3102
|
-
"ion-router-outlet/animation": {
|
|
3103
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
3104
|
-
"description": "This property allows to create custom transition using AnimationBuilder functions.",
|
|
3105
|
-
"options": []
|
|
4075
|
+
"ion-router-outlet/animation": {
|
|
4076
|
+
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
4077
|
+
"description": "This property allows to create custom transition using AnimationBuilder functions.",
|
|
4078
|
+
"options": []
|
|
4079
|
+
},
|
|
4080
|
+
"ion-router-outlet/mode": {
|
|
4081
|
+
"type": "\"ios\" | \"md\"",
|
|
4082
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4083
|
+
"options": [
|
|
4084
|
+
"ios",
|
|
4085
|
+
"md"
|
|
4086
|
+
]
|
|
4087
|
+
},
|
|
4088
|
+
"ion-router-outlet/theme": {
|
|
4089
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4090
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4091
|
+
"options": [
|
|
4092
|
+
"ios",
|
|
4093
|
+
"md",
|
|
4094
|
+
"ionic"
|
|
4095
|
+
]
|
|
3106
4096
|
},
|
|
3107
|
-
"ion-
|
|
4097
|
+
"ion-row/mode": {
|
|
3108
4098
|
"type": "\"ios\" | \"md\"",
|
|
3109
|
-
"description": "The mode determines
|
|
4099
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3110
4100
|
"options": [
|
|
3111
4101
|
"ios",
|
|
3112
4102
|
"md"
|
|
3113
4103
|
]
|
|
3114
4104
|
},
|
|
4105
|
+
"ion-row/theme": {
|
|
4106
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4107
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4108
|
+
"options": [
|
|
4109
|
+
"ios",
|
|
4110
|
+
"md",
|
|
4111
|
+
"ionic"
|
|
4112
|
+
]
|
|
4113
|
+
},
|
|
3115
4114
|
"ion-searchbar/animated": {
|
|
3116
4115
|
"type": "boolean",
|
|
3117
4116
|
"description": "If `true`, enable searchbar animation.",
|
|
@@ -3123,61 +4122,61 @@
|
|
|
3123
4122
|
"options": []
|
|
3124
4123
|
},
|
|
3125
4124
|
"ion-searchbar/autocomplete": {
|
|
3126
|
-
"type": "\"name\" | \"
|
|
4125
|
+
"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\"",
|
|
3127
4126
|
"description": "Set the input's autocomplete property.",
|
|
3128
4127
|
"options": [
|
|
3129
4128
|
"name",
|
|
3130
|
-
"email",
|
|
3131
|
-
"tel",
|
|
3132
4129
|
"url",
|
|
3133
|
-
"on",
|
|
3134
4130
|
"off",
|
|
3135
|
-
"
|
|
3136
|
-
"given-name",
|
|
4131
|
+
"on",
|
|
3137
4132
|
"additional-name",
|
|
3138
|
-
"
|
|
3139
|
-
"
|
|
3140
|
-
"
|
|
3141
|
-
"
|
|
3142
|
-
"new-password",
|
|
3143
|
-
"current-password",
|
|
3144
|
-
"one-time-code",
|
|
3145
|
-
"organization-title",
|
|
3146
|
-
"organization",
|
|
3147
|
-
"street-address",
|
|
4133
|
+
"address-level1",
|
|
4134
|
+
"address-level2",
|
|
4135
|
+
"address-level3",
|
|
4136
|
+
"address-level4",
|
|
3148
4137
|
"address-line1",
|
|
3149
4138
|
"address-line2",
|
|
3150
4139
|
"address-line3",
|
|
3151
|
-
"
|
|
3152
|
-
"
|
|
3153
|
-
"
|
|
3154
|
-
"
|
|
3155
|
-
"country",
|
|
3156
|
-
"country-name",
|
|
3157
|
-
"postal-code",
|
|
3158
|
-
"cc-name",
|
|
3159
|
-
"cc-given-name",
|
|
3160
|
-
"cc-additional-name",
|
|
3161
|
-
"cc-family-name",
|
|
3162
|
-
"cc-number",
|
|
4140
|
+
"bday-day",
|
|
4141
|
+
"bday-month",
|
|
4142
|
+
"bday-year",
|
|
4143
|
+
"cc-csc",
|
|
3163
4144
|
"cc-exp",
|
|
3164
4145
|
"cc-exp-month",
|
|
3165
4146
|
"cc-exp-year",
|
|
3166
|
-
"cc-
|
|
4147
|
+
"cc-family-name",
|
|
4148
|
+
"cc-given-name",
|
|
4149
|
+
"cc-name",
|
|
4150
|
+
"cc-number",
|
|
3167
4151
|
"cc-type",
|
|
3168
|
-
"
|
|
4152
|
+
"country",
|
|
4153
|
+
"country-name",
|
|
4154
|
+
"current-password",
|
|
4155
|
+
"family-name",
|
|
4156
|
+
"given-name",
|
|
4157
|
+
"honorific-prefix",
|
|
4158
|
+
"honorific-suffix",
|
|
4159
|
+
"new-password",
|
|
4160
|
+
"one-time-code",
|
|
4161
|
+
"organization",
|
|
4162
|
+
"postal-code",
|
|
4163
|
+
"street-address",
|
|
3169
4164
|
"transaction-amount",
|
|
4165
|
+
"transaction-currency",
|
|
4166
|
+
"username",
|
|
4167
|
+
"email",
|
|
4168
|
+
"tel",
|
|
4169
|
+
"tel-area-code",
|
|
4170
|
+
"tel-country-code",
|
|
4171
|
+
"tel-extension",
|
|
4172
|
+
"tel-local",
|
|
4173
|
+
"tel-national",
|
|
4174
|
+
"nickname",
|
|
4175
|
+
"organization-title",
|
|
4176
|
+
"cc-additional-name",
|
|
3170
4177
|
"language",
|
|
3171
4178
|
"bday",
|
|
3172
|
-
"bday-day",
|
|
3173
|
-
"bday-month",
|
|
3174
|
-
"bday-year",
|
|
3175
4179
|
"sex",
|
|
3176
|
-
"tel-country-code",
|
|
3177
|
-
"tel-national",
|
|
3178
|
-
"tel-area-code",
|
|
3179
|
-
"tel-local",
|
|
3180
|
-
"tel-extension",
|
|
3181
4180
|
"impp",
|
|
3182
4181
|
"photo"
|
|
3183
4182
|
]
|
|
@@ -3191,18 +4190,18 @@
|
|
|
3191
4190
|
]
|
|
3192
4191
|
},
|
|
3193
4192
|
"ion-searchbar/cancel-button-icon": {
|
|
3194
|
-
"type": "string",
|
|
3195
|
-
"description": "Set the cancel button icon. Only
|
|
4193
|
+
"type": "string | undefined",
|
|
4194
|
+
"description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`.",
|
|
3196
4195
|
"options": []
|
|
3197
4196
|
},
|
|
3198
4197
|
"ion-searchbar/cancel-button-text": {
|
|
3199
4198
|
"type": "string",
|
|
3200
|
-
"description": "Set the the cancel button text. Only
|
|
4199
|
+
"description": "Set the the cancel button text. Only available when the theme is `\"ios\"`.",
|
|
3201
4200
|
"options": []
|
|
3202
4201
|
},
|
|
3203
4202
|
"ion-searchbar/clear-icon": {
|
|
3204
4203
|
"type": "string | undefined",
|
|
3205
|
-
"description": "Set the clear icon. Defaults to
|
|
4204
|
+
"description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme.",
|
|
3206
4205
|
"options": []
|
|
3207
4206
|
},
|
|
3208
4207
|
"ion-searchbar/color": {
|
|
@@ -3269,7 +4268,7 @@
|
|
|
3269
4268
|
},
|
|
3270
4269
|
"ion-searchbar/mode": {
|
|
3271
4270
|
"type": "\"ios\" | \"md\"",
|
|
3272
|
-
"description": "The mode determines
|
|
4271
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3273
4272
|
"options": [
|
|
3274
4273
|
"ios",
|
|
3275
4274
|
"md"
|
|
@@ -3287,7 +4286,7 @@
|
|
|
3287
4286
|
},
|
|
3288
4287
|
"ion-searchbar/search-icon": {
|
|
3289
4288
|
"type": "string | undefined",
|
|
3290
|
-
"description": "The icon to use as the search icon. Defaults to
|
|
4289
|
+
"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.",
|
|
3291
4290
|
"options": []
|
|
3292
4291
|
},
|
|
3293
4292
|
"ion-searchbar/show-cancel-button": {
|
|
@@ -3313,6 +4312,15 @@
|
|
|
3313
4312
|
"description": "If `true`, enable spellcheck on the input.",
|
|
3314
4313
|
"options": []
|
|
3315
4314
|
},
|
|
4315
|
+
"ion-searchbar/theme": {
|
|
4316
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4317
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4318
|
+
"options": [
|
|
4319
|
+
"ios",
|
|
4320
|
+
"md",
|
|
4321
|
+
"ionic"
|
|
4322
|
+
]
|
|
4323
|
+
},
|
|
3316
4324
|
"ion-searchbar/type": {
|
|
3317
4325
|
"type": "\"email\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"",
|
|
3318
4326
|
"description": "Set the type of the input.",
|
|
@@ -3353,7 +4361,7 @@
|
|
|
3353
4361
|
},
|
|
3354
4362
|
"ion-segment/mode": {
|
|
3355
4363
|
"type": "\"ios\" | \"md\"",
|
|
3356
|
-
"description": "The mode determines
|
|
4364
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3357
4365
|
"options": [
|
|
3358
4366
|
"ios",
|
|
3359
4367
|
"md"
|
|
@@ -3374,6 +4382,15 @@
|
|
|
3374
4382
|
"description": "If `true`, users will be able to swipe between segment buttons to activate them.",
|
|
3375
4383
|
"options": []
|
|
3376
4384
|
},
|
|
4385
|
+
"ion-segment/theme": {
|
|
4386
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4387
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4388
|
+
"options": [
|
|
4389
|
+
"ios",
|
|
4390
|
+
"md",
|
|
4391
|
+
"ionic"
|
|
4392
|
+
]
|
|
4393
|
+
},
|
|
3377
4394
|
"ion-segment/value": {
|
|
3378
4395
|
"type": "number | string | undefined",
|
|
3379
4396
|
"description": "the value of the segment.",
|
|
@@ -3403,12 +4420,21 @@
|
|
|
3403
4420
|
},
|
|
3404
4421
|
"ion-segment-button/mode": {
|
|
3405
4422
|
"type": "\"ios\" | \"md\"",
|
|
3406
|
-
"description": "The mode determines
|
|
4423
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3407
4424
|
"options": [
|
|
3408
4425
|
"ios",
|
|
3409
4426
|
"md"
|
|
3410
4427
|
]
|
|
3411
4428
|
},
|
|
4429
|
+
"ion-segment-button/theme": {
|
|
4430
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4431
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4432
|
+
"options": [
|
|
4433
|
+
"ios",
|
|
4434
|
+
"md",
|
|
4435
|
+
"ionic"
|
|
4436
|
+
]
|
|
4437
|
+
},
|
|
3412
4438
|
"ion-segment-button/type": {
|
|
3413
4439
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
3414
4440
|
"description": "The type of the button.",
|
|
@@ -3460,12 +4486,12 @@
|
|
|
3460
4486
|
},
|
|
3461
4487
|
"ion-select/expanded-icon": {
|
|
3462
4488
|
"type": "string | undefined",
|
|
3463
|
-
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in
|
|
4489
|
+
"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.",
|
|
3464
4490
|
"options": []
|
|
3465
4491
|
},
|
|
3466
4492
|
"ion-select/fill": {
|
|
3467
4493
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
3468
|
-
"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
|
|
4494
|
+
"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.",
|
|
3469
4495
|
"options": [
|
|
3470
4496
|
"outline",
|
|
3471
4497
|
"solid"
|
|
@@ -3513,7 +4539,7 @@
|
|
|
3513
4539
|
},
|
|
3514
4540
|
"ion-select/mode": {
|
|
3515
4541
|
"type": "\"ios\" | \"md\"",
|
|
3516
|
-
"description": "The mode determines
|
|
4542
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3517
4543
|
"options": [
|
|
3518
4544
|
"ios",
|
|
3519
4545
|
"md"
|
|
@@ -3545,15 +4571,35 @@
|
|
|
3545
4571
|
"options": []
|
|
3546
4572
|
},
|
|
3547
4573
|
"ion-select/shape": {
|
|
3548
|
-
"type": "\"round\" | undefined",
|
|
3549
|
-
"description": "
|
|
4574
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4575
|
+
"description": "Set to `\"soft\"` for a select with slightly rounded corners,\n`\"round\"` for a select with fully rounded corners,\nor `\"rectangular\"` for a select without rounded corners.\n\nDefaults to `\"round\"` for the `\"ionic\"` theme, undefined for all other themes.",
|
|
4576
|
+
"options": [
|
|
4577
|
+
"rectangular",
|
|
4578
|
+
"round",
|
|
4579
|
+
"soft"
|
|
4580
|
+
]
|
|
4581
|
+
},
|
|
4582
|
+
"ion-select/size": {
|
|
4583
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
4584
|
+
"description": "The size of the select. If \"large\" it will increase the height of the select, while\n\"small\" and \"medium\" provide progressively smaller heights.\n\nDefaults to `\"medium\"` for the ionic theme, and undefined for all other themes.",
|
|
4585
|
+
"options": [
|
|
4586
|
+
"large",
|
|
4587
|
+
"medium",
|
|
4588
|
+
"small"
|
|
4589
|
+
]
|
|
4590
|
+
},
|
|
4591
|
+
"ion-select/theme": {
|
|
4592
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4593
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3550
4594
|
"options": [
|
|
3551
|
-
"
|
|
4595
|
+
"ios",
|
|
4596
|
+
"md",
|
|
4597
|
+
"ionic"
|
|
3552
4598
|
]
|
|
3553
4599
|
},
|
|
3554
4600
|
"ion-select/toggle-icon": {
|
|
3555
4601
|
"type": "string | undefined",
|
|
3556
|
-
"description": "The toggle icon to use. Defaults to
|
|
4602
|
+
"description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes.",
|
|
3557
4603
|
"options": []
|
|
3558
4604
|
},
|
|
3559
4605
|
"ion-select/value": {
|
|
@@ -3581,6 +4627,23 @@
|
|
|
3581
4627
|
"description": "If `true`, the user cannot interact with the select option. This property does not apply when `interface=\"action-sheet\"` as `ion-action-sheet` does not allow for disabled buttons.",
|
|
3582
4628
|
"options": []
|
|
3583
4629
|
},
|
|
4630
|
+
"ion-select-option/mode": {
|
|
4631
|
+
"type": "\"ios\" | \"md\"",
|
|
4632
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4633
|
+
"options": [
|
|
4634
|
+
"ios",
|
|
4635
|
+
"md"
|
|
4636
|
+
]
|
|
4637
|
+
},
|
|
4638
|
+
"ion-select-option/theme": {
|
|
4639
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4640
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4641
|
+
"options": [
|
|
4642
|
+
"ios",
|
|
4643
|
+
"md",
|
|
4644
|
+
"ionic"
|
|
4645
|
+
]
|
|
4646
|
+
},
|
|
3584
4647
|
"ion-select-option/value": {
|
|
3585
4648
|
"type": "any",
|
|
3586
4649
|
"description": "The text value of the option.",
|
|
@@ -3591,6 +4654,23 @@
|
|
|
3591
4654
|
"description": "If `true`, the skeleton text will animate.",
|
|
3592
4655
|
"options": []
|
|
3593
4656
|
},
|
|
4657
|
+
"ion-skeleton-text/mode": {
|
|
4658
|
+
"type": "\"ios\" | \"md\"",
|
|
4659
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4660
|
+
"options": [
|
|
4661
|
+
"ios",
|
|
4662
|
+
"md"
|
|
4663
|
+
]
|
|
4664
|
+
},
|
|
4665
|
+
"ion-skeleton-text/theme": {
|
|
4666
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4667
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4668
|
+
"options": [
|
|
4669
|
+
"ios",
|
|
4670
|
+
"md",
|
|
4671
|
+
"ionic"
|
|
4672
|
+
]
|
|
4673
|
+
},
|
|
3594
4674
|
"ion-spinner/color": {
|
|
3595
4675
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3596
4676
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -3611,6 +4691,14 @@
|
|
|
3611
4691
|
"description": "Duration of the spinner animation in milliseconds. The default varies based on the spinner.",
|
|
3612
4692
|
"options": []
|
|
3613
4693
|
},
|
|
4694
|
+
"ion-spinner/mode": {
|
|
4695
|
+
"type": "\"ios\" | \"md\"",
|
|
4696
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4697
|
+
"options": [
|
|
4698
|
+
"ios",
|
|
4699
|
+
"md"
|
|
4700
|
+
]
|
|
4701
|
+
},
|
|
3614
4702
|
"ion-spinner/name": {
|
|
3615
4703
|
"type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | undefined",
|
|
3616
4704
|
"description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
|
|
@@ -3631,6 +4719,26 @@
|
|
|
3631
4719
|
"description": "If `true`, the spinner's animation will be paused.",
|
|
3632
4720
|
"options": []
|
|
3633
4721
|
},
|
|
4722
|
+
"ion-spinner/size": {
|
|
4723
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined",
|
|
4724
|
+
"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.",
|
|
4725
|
+
"options": [
|
|
4726
|
+
"large",
|
|
4727
|
+
"medium",
|
|
4728
|
+
"small",
|
|
4729
|
+
"xlarge",
|
|
4730
|
+
"xsmall"
|
|
4731
|
+
]
|
|
4732
|
+
},
|
|
4733
|
+
"ion-spinner/theme": {
|
|
4734
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4735
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4736
|
+
"options": [
|
|
4737
|
+
"ios",
|
|
4738
|
+
"md",
|
|
4739
|
+
"ionic"
|
|
4740
|
+
]
|
|
4741
|
+
},
|
|
3634
4742
|
"ion-split-pane/content-id": {
|
|
3635
4743
|
"type": "string | undefined",
|
|
3636
4744
|
"description": "The `id` of the main content. When using\na router this is typically `ion-router-outlet`.\nWhen not using a router, this is typically\nyour main view's `ion-content`. This is not the\nid of the `ion-content` inside of your `ion-menu`.",
|
|
@@ -3641,6 +4749,23 @@
|
|
|
3641
4749
|
"description": "If `true`, the split pane will be hidden.",
|
|
3642
4750
|
"options": []
|
|
3643
4751
|
},
|
|
4752
|
+
"ion-split-pane/mode": {
|
|
4753
|
+
"type": "\"ios\" | \"md\"",
|
|
4754
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4755
|
+
"options": [
|
|
4756
|
+
"ios",
|
|
4757
|
+
"md"
|
|
4758
|
+
]
|
|
4759
|
+
},
|
|
4760
|
+
"ion-split-pane/theme": {
|
|
4761
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4762
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4763
|
+
"options": [
|
|
4764
|
+
"ios",
|
|
4765
|
+
"md",
|
|
4766
|
+
"ionic"
|
|
4767
|
+
]
|
|
4768
|
+
},
|
|
3644
4769
|
"ion-split-pane/when": {
|
|
3645
4770
|
"type": "boolean | string",
|
|
3646
4771
|
"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.",
|
|
@@ -3651,11 +4776,28 @@
|
|
|
3651
4776
|
"description": "The component to display inside of the tab.",
|
|
3652
4777
|
"options": []
|
|
3653
4778
|
},
|
|
4779
|
+
"ion-tab/mode": {
|
|
4780
|
+
"type": "\"ios\" | \"md\"",
|
|
4781
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4782
|
+
"options": [
|
|
4783
|
+
"ios",
|
|
4784
|
+
"md"
|
|
4785
|
+
]
|
|
4786
|
+
},
|
|
3654
4787
|
"ion-tab/tab": {
|
|
3655
4788
|
"type": "string",
|
|
3656
4789
|
"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.",
|
|
3657
4790
|
"options": []
|
|
3658
4791
|
},
|
|
4792
|
+
"ion-tab/theme": {
|
|
4793
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4794
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4795
|
+
"options": [
|
|
4796
|
+
"ios",
|
|
4797
|
+
"md",
|
|
4798
|
+
"ionic"
|
|
4799
|
+
]
|
|
4800
|
+
},
|
|
3659
4801
|
"ion-tab-bar/color": {
|
|
3660
4802
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3661
4803
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -3671,9 +4813,17 @@
|
|
|
3671
4813
|
"warning"
|
|
3672
4814
|
]
|
|
3673
4815
|
},
|
|
4816
|
+
"ion-tab-bar/expand": {
|
|
4817
|
+
"type": "\"compact\" | \"full\"",
|
|
4818
|
+
"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\"`.",
|
|
4819
|
+
"options": [
|
|
4820
|
+
"compact",
|
|
4821
|
+
"full"
|
|
4822
|
+
]
|
|
4823
|
+
},
|
|
3674
4824
|
"ion-tab-bar/mode": {
|
|
3675
4825
|
"type": "\"ios\" | \"md\"",
|
|
3676
|
-
"description": "The mode determines
|
|
4826
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3677
4827
|
"options": [
|
|
3678
4828
|
"ios",
|
|
3679
4829
|
"md"
|
|
@@ -3684,9 +4834,27 @@
|
|
|
3684
4834
|
"description": "The selected tab component",
|
|
3685
4835
|
"options": []
|
|
3686
4836
|
},
|
|
4837
|
+
"ion-tab-bar/shape": {
|
|
4838
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4839
|
+
"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.",
|
|
4840
|
+
"options": [
|
|
4841
|
+
"rectangular",
|
|
4842
|
+
"round",
|
|
4843
|
+
"soft"
|
|
4844
|
+
]
|
|
4845
|
+
},
|
|
4846
|
+
"ion-tab-bar/theme": {
|
|
4847
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4848
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4849
|
+
"options": [
|
|
4850
|
+
"ios",
|
|
4851
|
+
"md",
|
|
4852
|
+
"ionic"
|
|
4853
|
+
]
|
|
4854
|
+
},
|
|
3687
4855
|
"ion-tab-bar/translucent": {
|
|
3688
4856
|
"type": "boolean",
|
|
3689
|
-
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the
|
|
4857
|
+
"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).",
|
|
3690
4858
|
"options": []
|
|
3691
4859
|
},
|
|
3692
4860
|
"ion-tab-button/disabled": {
|
|
@@ -3718,7 +4886,7 @@
|
|
|
3718
4886
|
},
|
|
3719
4887
|
"ion-tab-button/mode": {
|
|
3720
4888
|
"type": "\"ios\" | \"md\"",
|
|
3721
|
-
"description": "The mode determines
|
|
4889
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3722
4890
|
"options": [
|
|
3723
4891
|
"ios",
|
|
3724
4892
|
"md"
|
|
@@ -3744,6 +4912,32 @@
|
|
|
3744
4912
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3745
4913
|
"options": []
|
|
3746
4914
|
},
|
|
4915
|
+
"ion-tab-button/theme": {
|
|
4916
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4917
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4918
|
+
"options": [
|
|
4919
|
+
"ios",
|
|
4920
|
+
"md",
|
|
4921
|
+
"ionic"
|
|
4922
|
+
]
|
|
4923
|
+
},
|
|
4924
|
+
"ion-tabs/mode": {
|
|
4925
|
+
"type": "\"ios\" | \"md\"",
|
|
4926
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4927
|
+
"options": [
|
|
4928
|
+
"ios",
|
|
4929
|
+
"md"
|
|
4930
|
+
]
|
|
4931
|
+
},
|
|
4932
|
+
"ion-tabs/theme": {
|
|
4933
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4934
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4935
|
+
"options": [
|
|
4936
|
+
"ios",
|
|
4937
|
+
"md",
|
|
4938
|
+
"ionic"
|
|
4939
|
+
]
|
|
4940
|
+
},
|
|
3747
4941
|
"ion-text/color": {
|
|
3748
4942
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3749
4943
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -3761,12 +4955,21 @@
|
|
|
3761
4955
|
},
|
|
3762
4956
|
"ion-text/mode": {
|
|
3763
4957
|
"type": "\"ios\" | \"md\"",
|
|
3764
|
-
"description": "The mode determines
|
|
4958
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3765
4959
|
"options": [
|
|
3766
4960
|
"ios",
|
|
3767
4961
|
"md"
|
|
3768
4962
|
]
|
|
3769
4963
|
},
|
|
4964
|
+
"ion-text/theme": {
|
|
4965
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4966
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4967
|
+
"options": [
|
|
4968
|
+
"ios",
|
|
4969
|
+
"md",
|
|
4970
|
+
"ionic"
|
|
4971
|
+
]
|
|
4972
|
+
},
|
|
3770
4973
|
"ion-textarea/auto-grow": {
|
|
3771
4974
|
"type": "boolean",
|
|
3772
4975
|
"description": "If `true`, the textarea container will grow and shrink based\non the contents of the textarea.",
|
|
@@ -3847,7 +5050,7 @@
|
|
|
3847
5050
|
},
|
|
3848
5051
|
"ion-textarea/fill": {
|
|
3849
5052
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
3850
|
-
"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
|
|
5053
|
+
"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\"`.",
|
|
3851
5054
|
"options": [
|
|
3852
5055
|
"outline",
|
|
3853
5056
|
"solid"
|
|
@@ -3900,7 +5103,7 @@
|
|
|
3900
5103
|
},
|
|
3901
5104
|
"ion-textarea/mode": {
|
|
3902
5105
|
"type": "\"ios\" | \"md\"",
|
|
3903
|
-
"description": "The mode determines
|
|
5106
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3904
5107
|
"options": [
|
|
3905
5108
|
"ios",
|
|
3906
5109
|
"md"
|
|
@@ -3932,10 +5135,21 @@
|
|
|
3932
5135
|
"options": []
|
|
3933
5136
|
},
|
|
3934
5137
|
"ion-textarea/shape": {
|
|
3935
|
-
"type": "\"round\" | undefined",
|
|
3936
|
-
"description": "
|
|
5138
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5139
|
+
"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.",
|
|
5140
|
+
"options": [
|
|
5141
|
+
"rectangular",
|
|
5142
|
+
"round",
|
|
5143
|
+
"soft"
|
|
5144
|
+
]
|
|
5145
|
+
},
|
|
5146
|
+
"ion-textarea/size": {
|
|
5147
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
5148
|
+
"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.",
|
|
3937
5149
|
"options": [
|
|
3938
|
-
"
|
|
5150
|
+
"large",
|
|
5151
|
+
"medium",
|
|
5152
|
+
"small"
|
|
3939
5153
|
]
|
|
3940
5154
|
},
|
|
3941
5155
|
"ion-textarea/spellcheck": {
|
|
@@ -3943,6 +5157,15 @@
|
|
|
3943
5157
|
"description": "If `true`, the element will have its spelling and grammar checked.",
|
|
3944
5158
|
"options": []
|
|
3945
5159
|
},
|
|
5160
|
+
"ion-textarea/theme": {
|
|
5161
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5162
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5163
|
+
"options": [
|
|
5164
|
+
"ios",
|
|
5165
|
+
"md",
|
|
5166
|
+
"ionic"
|
|
5167
|
+
]
|
|
5168
|
+
},
|
|
3946
5169
|
"ion-textarea/value": {
|
|
3947
5170
|
"type": "null | string | undefined",
|
|
3948
5171
|
"description": "The value of the textarea.",
|
|
@@ -3957,6 +5180,23 @@
|
|
|
3957
5180
|
"soft"
|
|
3958
5181
|
]
|
|
3959
5182
|
},
|
|
5183
|
+
"ion-thumbnail/mode": {
|
|
5184
|
+
"type": "\"ios\" | \"md\"",
|
|
5185
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5186
|
+
"options": [
|
|
5187
|
+
"ios",
|
|
5188
|
+
"md"
|
|
5189
|
+
]
|
|
5190
|
+
},
|
|
5191
|
+
"ion-thumbnail/theme": {
|
|
5192
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5193
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5194
|
+
"options": [
|
|
5195
|
+
"ios",
|
|
5196
|
+
"md",
|
|
5197
|
+
"ionic"
|
|
5198
|
+
]
|
|
5199
|
+
},
|
|
3960
5200
|
"ion-title/color": {
|
|
3961
5201
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3962
5202
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
@@ -3972,6 +5212,14 @@
|
|
|
3972
5212
|
"warning"
|
|
3973
5213
|
]
|
|
3974
5214
|
},
|
|
5215
|
+
"ion-title/mode": {
|
|
5216
|
+
"type": "\"ios\" | \"md\"",
|
|
5217
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5218
|
+
"options": [
|
|
5219
|
+
"ios",
|
|
5220
|
+
"md"
|
|
5221
|
+
]
|
|
5222
|
+
},
|
|
3975
5223
|
"ion-title/size": {
|
|
3976
5224
|
"type": "\"large\" | \"small\" | undefined",
|
|
3977
5225
|
"description": "The size of the toolbar title.",
|
|
@@ -3980,6 +5228,15 @@
|
|
|
3980
5228
|
"small"
|
|
3981
5229
|
]
|
|
3982
5230
|
},
|
|
5231
|
+
"ion-title/theme": {
|
|
5232
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5233
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5234
|
+
"options": [
|
|
5235
|
+
"ios",
|
|
5236
|
+
"md",
|
|
5237
|
+
"ionic"
|
|
5238
|
+
]
|
|
5239
|
+
},
|
|
3983
5240
|
"ion-toast/animated": {
|
|
3984
5241
|
"type": "boolean",
|
|
3985
5242
|
"description": "If `true`, the toast will animate.",
|
|
@@ -4065,7 +5322,7 @@
|
|
|
4065
5322
|
},
|
|
4066
5323
|
"ion-toast/mode": {
|
|
4067
5324
|
"type": "\"ios\" | \"md\"",
|
|
4068
|
-
"description": "The mode determines
|
|
5325
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4069
5326
|
"options": [
|
|
4070
5327
|
"ios",
|
|
4071
5328
|
"md"
|
|
@@ -4085,6 +5342,15 @@
|
|
|
4085
5342
|
"description": "The element to anchor the toast's position to. Can be set as a direct reference\nor the ID of the element. With `position=\"bottom\"`, the toast will sit above the\nchosen element. With `position=\"top\"`, the toast will sit below the chosen element.\nWith `position=\"middle\"`, the value of `positionAnchor` is ignored.",
|
|
4086
5343
|
"options": []
|
|
4087
5344
|
},
|
|
5345
|
+
"ion-toast/shape": {
|
|
5346
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5347
|
+
"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.",
|
|
5348
|
+
"options": [
|
|
5349
|
+
"rectangular",
|
|
5350
|
+
"round",
|
|
5351
|
+
"soft"
|
|
5352
|
+
]
|
|
5353
|
+
},
|
|
4088
5354
|
"ion-toast/swipe-gesture": {
|
|
4089
5355
|
"type": "\"vertical\" | undefined",
|
|
4090
5356
|
"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.",
|
|
@@ -4092,9 +5358,18 @@
|
|
|
4092
5358
|
"vertical"
|
|
4093
5359
|
]
|
|
4094
5360
|
},
|
|
5361
|
+
"ion-toast/theme": {
|
|
5362
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5363
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5364
|
+
"options": [
|
|
5365
|
+
"ios",
|
|
5366
|
+
"md",
|
|
5367
|
+
"ionic"
|
|
5368
|
+
]
|
|
5369
|
+
},
|
|
4095
5370
|
"ion-toast/translucent": {
|
|
4096
5371
|
"type": "boolean",
|
|
4097
|
-
"description": "If `true`, the toast will be translucent.\nOnly applies when the
|
|
5372
|
+
"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).",
|
|
4098
5373
|
"options": []
|
|
4099
5374
|
},
|
|
4100
5375
|
"ion-toast/trigger": {
|
|
@@ -4161,7 +5436,7 @@
|
|
|
4161
5436
|
},
|
|
4162
5437
|
"ion-toggle/mode": {
|
|
4163
5438
|
"type": "\"ios\" | \"md\"",
|
|
4164
|
-
"description": "The mode determines
|
|
5439
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4165
5440
|
"options": [
|
|
4166
5441
|
"ios",
|
|
4167
5442
|
"md"
|
|
@@ -4172,6 +5447,15 @@
|
|
|
4172
5447
|
"description": "The name of the control, which is submitted with the form data.",
|
|
4173
5448
|
"options": []
|
|
4174
5449
|
},
|
|
5450
|
+
"ion-toggle/theme": {
|
|
5451
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5452
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5453
|
+
"options": [
|
|
5454
|
+
"ios",
|
|
5455
|
+
"md",
|
|
5456
|
+
"ionic"
|
|
5457
|
+
]
|
|
5458
|
+
},
|
|
4175
5459
|
"ion-toggle/value": {
|
|
4176
5460
|
"type": "null | string | undefined",
|
|
4177
5461
|
"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>`.",
|
|
@@ -4194,10 +5478,19 @@
|
|
|
4194
5478
|
},
|
|
4195
5479
|
"ion-toolbar/mode": {
|
|
4196
5480
|
"type": "\"ios\" | \"md\"",
|
|
4197
|
-
"description": "The mode determines
|
|
5481
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4198
5482
|
"options": [
|
|
4199
5483
|
"ios",
|
|
4200
5484
|
"md"
|
|
4201
5485
|
]
|
|
5486
|
+
},
|
|
5487
|
+
"ion-toolbar/theme": {
|
|
5488
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5489
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5490
|
+
"options": [
|
|
5491
|
+
"ios",
|
|
5492
|
+
"md",
|
|
5493
|
+
"ionic"
|
|
5494
|
+
]
|
|
4202
5495
|
}
|
|
4203
5496
|
}
|