@ionic/vue 8.4.2-dev.11737633140.1934dd0f → 8.4.2-dev.11739377372.17be7c08
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/core.css +1 -1
- package/css/core.css.map +1 -1
- package/css/display.css +1 -1
- package/css/display.css.map +1 -1
- package/css/flex-utils.css +1 -1
- package/css/flex-utils.css.map +1 -1
- package/css/float-elements.css.map +1 -1
- package/css/global.bundle.css.map +1 -1
- package/css/ionic/bundle.ionic.css +1 -0
- package/css/ionic/bundle.ionic.css.map +1 -0
- package/css/ionic/core.ionic.css +1 -0
- package/css/ionic/core.ionic.css.map +1 -0
- package/css/ionic/global.bundle.ionic.css +1 -0
- package/css/ionic/global.bundle.ionic.css.map +1 -0
- package/css/ionic/ionic-swiper.ionic.css +1 -0
- package/css/ionic/ionic-swiper.ionic.css.map +1 -0
- package/css/ionic/link.ionic.css +1 -0
- package/css/ionic/link.ionic.css.map +1 -0
- package/css/ionic/structure.ionic.css +1 -0
- package/css/ionic/structure.ionic.css.map +1 -0
- package/css/ionic/typography.ionic.css +1 -0
- package/css/ionic/typography.ionic.css.map +1 -0
- package/css/ionic/utils.bundle.ionic.css +1 -0
- package/css/ionic/utils.bundle.ionic.css.map +1 -0
- package/css/ionic-swiper.css +1 -1
- package/css/ionic-swiper.css.map +1 -1
- package/css/ionic.bundle.css +1 -1
- package/css/ionic.bundle.css.map +1 -1
- package/css/normalize.css.map +1 -1
- package/css/padding.css.map +1 -1
- package/css/palettes/dark.always.css.map +1 -1
- package/css/palettes/dark.class.css.map +1 -1
- package/css/palettes/dark.system.css.map +1 -1
- package/css/palettes/high-contrast-dark.always.css.map +1 -1
- package/css/palettes/high-contrast-dark.class.css.map +1 -1
- package/css/palettes/high-contrast-dark.system.css.map +1 -1
- package/css/palettes/high-contrast.always.css.map +1 -1
- package/css/palettes/high-contrast.class.css.map +1 -1
- package/css/palettes/high-contrast.system.css.map +1 -1
- package/css/structure.css.map +1 -1
- package/css/text-alignment.css.map +1 -1
- package/css/text-transformation.css.map +1 -1
- package/css/typography.css.map +1 -1
- package/css/utils.bundle.css +1 -1
- package/css/utils.bundle.css.map +1 -1
- package/dist/index.js +221 -136
- package/dist/index.js.map +1 -1
- package/dist/types/components/Overlays.d.ts +1 -1
- package/dist/types/proxies.d.ts +94 -77
- package/dist/vetur/attributes.json +1479 -197
- package/dist/vetur/tags.json +200 -49
- package/dist/web-types.json +1328 -128
- 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,10 +1046,29 @@
|
|
|
790
1046
|
"description": "The name of the control, which is submitted with the form data.",
|
|
791
1047
|
"options": []
|
|
792
1048
|
},
|
|
793
|
-
"ion-checkbox/
|
|
794
|
-
"type": "
|
|
795
|
-
"description": "
|
|
796
|
-
"options": [
|
|
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
|
+
]
|
|
797
1072
|
},
|
|
798
1073
|
"ion-checkbox/value": {
|
|
799
1074
|
"type": "any",
|
|
@@ -822,7 +1097,7 @@
|
|
|
822
1097
|
},
|
|
823
1098
|
"ion-chip/mode": {
|
|
824
1099
|
"type": "\"ios\" | \"md\"",
|
|
825
|
-
"description": "The mode determines
|
|
1100
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
826
1101
|
"options": [
|
|
827
1102
|
"ios",
|
|
828
1103
|
"md"
|
|
@@ -833,6 +1108,40 @@
|
|
|
833
1108
|
"description": "Display an outline style button.",
|
|
834
1109
|
"options": []
|
|
835
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
|
+
},
|
|
836
1145
|
"ion-col/offset": {
|
|
837
1146
|
"type": "string | undefined",
|
|
838
1147
|
"description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available.",
|
|
@@ -953,6 +1262,15 @@
|
|
|
953
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.",
|
|
954
1263
|
"options": []
|
|
955
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
|
+
},
|
|
956
1274
|
"ion-content/color": {
|
|
957
1275
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
958
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).",
|
|
@@ -986,6 +1304,14 @@
|
|
|
986
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.",
|
|
987
1305
|
"options": []
|
|
988
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
|
+
},
|
|
989
1315
|
"ion-content/scroll-events": {
|
|
990
1316
|
"type": "boolean",
|
|
991
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`.",
|
|
@@ -1001,6 +1327,15 @@
|
|
|
1001
1327
|
"description": "If you want to disable the content scrolling in the Y axis, set this property to `false`.",
|
|
1002
1328
|
"options": []
|
|
1003
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
|
+
},
|
|
1004
1339
|
"ion-datetime/cancel-text": {
|
|
1005
1340
|
"type": "string",
|
|
1006
1341
|
"description": "The text to display on the picker's cancel button.",
|
|
@@ -1098,7 +1433,7 @@
|
|
|
1098
1433
|
},
|
|
1099
1434
|
"ion-datetime/mode": {
|
|
1100
1435
|
"type": "\"ios\" | \"md\"",
|
|
1101
|
-
"description": "The mode determines
|
|
1436
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1102
1437
|
"options": [
|
|
1103
1438
|
"ios",
|
|
1104
1439
|
"md"
|
|
@@ -1170,6 +1505,15 @@
|
|
|
1170
1505
|
"fixed"
|
|
1171
1506
|
]
|
|
1172
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
|
+
},
|
|
1173
1517
|
"ion-datetime/title-selected-dates-formatter": {
|
|
1174
1518
|
"type": "((selectedDates: string[]) => string) | undefined",
|
|
1175
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.",
|
|
@@ -1212,12 +1556,21 @@
|
|
|
1212
1556
|
},
|
|
1213
1557
|
"ion-datetime-button/mode": {
|
|
1214
1558
|
"type": "\"ios\" | \"md\"",
|
|
1215
|
-
"description": "The mode determines
|
|
1559
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1216
1560
|
"options": [
|
|
1217
1561
|
"ios",
|
|
1218
1562
|
"md"
|
|
1219
1563
|
]
|
|
1220
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
|
+
},
|
|
1221
1574
|
"ion-fab/activated": {
|
|
1222
1575
|
"type": "boolean",
|
|
1223
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.",
|
|
@@ -1237,6 +1590,23 @@
|
|
|
1237
1590
|
"start"
|
|
1238
1591
|
]
|
|
1239
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
|
+
},
|
|
1240
1610
|
"ion-fab/vertical": {
|
|
1241
1611
|
"type": "\"bottom\" | \"center\" | \"top\" | undefined",
|
|
1242
1612
|
"description": "Where to align the fab vertically in the viewport.",
|
|
@@ -1252,7 +1622,7 @@
|
|
|
1252
1622
|
"options": []
|
|
1253
1623
|
},
|
|
1254
1624
|
"ion-fab-button/close-icon": {
|
|
1255
|
-
"type": "string",
|
|
1625
|
+
"type": "string | undefined",
|
|
1256
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.",
|
|
1257
1627
|
"options": []
|
|
1258
1628
|
},
|
|
@@ -1288,7 +1658,7 @@
|
|
|
1288
1658
|
},
|
|
1289
1659
|
"ion-fab-button/mode": {
|
|
1290
1660
|
"type": "\"ios\" | \"md\"",
|
|
1291
|
-
"description": "The mode determines
|
|
1661
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1292
1662
|
"options": [
|
|
1293
1663
|
"ios",
|
|
1294
1664
|
"md"
|
|
@@ -1330,9 +1700,18 @@
|
|
|
1330
1700
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1331
1701
|
"options": []
|
|
1332
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
|
+
},
|
|
1333
1712
|
"ion-fab-button/translucent": {
|
|
1334
1713
|
"type": "boolean",
|
|
1335
|
-
"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).",
|
|
1336
1715
|
"options": []
|
|
1337
1716
|
},
|
|
1338
1717
|
"ion-fab-button/type": {
|
|
@@ -1349,6 +1728,14 @@
|
|
|
1349
1728
|
"description": "If `true`, the fab list will show all fab buttons in the list.",
|
|
1350
1729
|
"options": []
|
|
1351
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
|
+
},
|
|
1352
1739
|
"ion-fab-list/side": {
|
|
1353
1740
|
"type": "\"bottom\" | \"end\" | \"start\" | \"top\"",
|
|
1354
1741
|
"description": "The side the fab list will show on relative to the main fab button.",
|
|
@@ -1359,24 +1746,42 @@
|
|
|
1359
1746
|
"top"
|
|
1360
1747
|
]
|
|
1361
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
|
+
},
|
|
1362
1758
|
"ion-footer/collapse": {
|
|
1363
1759
|
"type": "\"fade\" | undefined",
|
|
1364
|
-
"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\"`.",
|
|
1365
1761
|
"options": [
|
|
1366
1762
|
"fade"
|
|
1367
1763
|
]
|
|
1368
1764
|
},
|
|
1369
1765
|
"ion-footer/mode": {
|
|
1370
1766
|
"type": "\"ios\" | \"md\"",
|
|
1371
|
-
"description": "The mode determines
|
|
1767
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1372
1768
|
"options": [
|
|
1373
1769
|
"ios",
|
|
1374
1770
|
"md"
|
|
1375
1771
|
]
|
|
1376
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
|
+
},
|
|
1377
1782
|
"ion-footer/translucent": {
|
|
1378
1783
|
"type": "boolean",
|
|
1379
|
-
"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.",
|
|
1380
1785
|
"options": []
|
|
1381
1786
|
},
|
|
1382
1787
|
"ion-grid/fixed": {
|
|
@@ -1384,25 +1789,56 @@
|
|
|
1384
1789
|
"description": "If `true`, the grid will have a fixed width based on the screen size.",
|
|
1385
1790
|
"options": []
|
|
1386
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
|
+
},
|
|
1387
1809
|
"ion-header/collapse": {
|
|
1388
1810
|
"type": "\"condense\" | \"fade\" | undefined",
|
|
1389
|
-
"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)",
|
|
1390
1812
|
"options": [
|
|
1391
1813
|
"condense",
|
|
1392
1814
|
"fade"
|
|
1393
1815
|
]
|
|
1394
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
|
+
},
|
|
1395
1822
|
"ion-header/mode": {
|
|
1396
1823
|
"type": "\"ios\" | \"md\"",
|
|
1397
|
-
"description": "The mode determines
|
|
1824
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1398
1825
|
"options": [
|
|
1399
1826
|
"ios",
|
|
1400
1827
|
"md"
|
|
1401
1828
|
]
|
|
1402
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
|
+
},
|
|
1403
1839
|
"ion-header/translucent": {
|
|
1404
1840
|
"type": "boolean",
|
|
1405
|
-
"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.",
|
|
1406
1842
|
"options": []
|
|
1407
1843
|
},
|
|
1408
1844
|
"ion-img/alt": {
|
|
@@ -1410,16 +1846,41 @@
|
|
|
1410
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.",
|
|
1411
1847
|
"options": []
|
|
1412
1848
|
},
|
|
1413
|
-
"ion-img/
|
|
1414
|
-
"type": "
|
|
1415
|
-
"description": "The
|
|
1416
|
-
"options": [
|
|
1417
|
-
|
|
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
|
+
},
|
|
1857
|
+
"ion-img/src": {
|
|
1858
|
+
"type": "string | undefined",
|
|
1859
|
+
"description": "The image URL. This attribute is mandatory for the `<img>` element.",
|
|
1860
|
+
"options": []
|
|
1861
|
+
},
|
|
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
|
+
},
|
|
1418
1871
|
"ion-infinite-scroll/disabled": {
|
|
1419
1872
|
"type": "boolean",
|
|
1420
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.",
|
|
1421
1874
|
"options": []
|
|
1422
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
|
+
},
|
|
1423
1884
|
"ion-infinite-scroll/position": {
|
|
1424
1885
|
"type": "\"bottom\" | \"top\"",
|
|
1425
1886
|
"description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
|
|
@@ -1428,6 +1889,15 @@
|
|
|
1428
1889
|
"top"
|
|
1429
1890
|
]
|
|
1430
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
|
+
},
|
|
1431
1901
|
"ion-infinite-scroll/threshold": {
|
|
1432
1902
|
"type": "string",
|
|
1433
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.",
|
|
@@ -1453,67 +1923,84 @@
|
|
|
1453
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.",
|
|
1454
1924
|
"options": []
|
|
1455
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
|
+
},
|
|
1456
1943
|
"ion-input/autocapitalize": {
|
|
1457
1944
|
"type": "string",
|
|
1458
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\"`.",
|
|
1459
1946
|
"options": []
|
|
1460
1947
|
},
|
|
1461
1948
|
"ion-input/autocomplete": {
|
|
1462
|
-
"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\"",
|
|
1463
1950
|
"description": "Indicates whether the value of the control can be automatically completed by the browser.",
|
|
1464
1951
|
"options": [
|
|
1465
1952
|
"name",
|
|
1466
|
-
"email",
|
|
1467
|
-
"tel",
|
|
1468
1953
|
"url",
|
|
1469
|
-
"on",
|
|
1470
1954
|
"off",
|
|
1471
|
-
"
|
|
1472
|
-
"given-name",
|
|
1955
|
+
"on",
|
|
1473
1956
|
"additional-name",
|
|
1474
|
-
"
|
|
1475
|
-
"
|
|
1476
|
-
"
|
|
1477
|
-
"
|
|
1478
|
-
"new-password",
|
|
1479
|
-
"current-password",
|
|
1480
|
-
"one-time-code",
|
|
1481
|
-
"organization-title",
|
|
1482
|
-
"organization",
|
|
1483
|
-
"street-address",
|
|
1957
|
+
"address-level1",
|
|
1958
|
+
"address-level2",
|
|
1959
|
+
"address-level3",
|
|
1960
|
+
"address-level4",
|
|
1484
1961
|
"address-line1",
|
|
1485
1962
|
"address-line2",
|
|
1486
1963
|
"address-line3",
|
|
1487
|
-
"
|
|
1488
|
-
"
|
|
1489
|
-
"
|
|
1490
|
-
"
|
|
1491
|
-
"country",
|
|
1492
|
-
"country-name",
|
|
1493
|
-
"postal-code",
|
|
1494
|
-
"cc-name",
|
|
1495
|
-
"cc-given-name",
|
|
1496
|
-
"cc-additional-name",
|
|
1497
|
-
"cc-family-name",
|
|
1498
|
-
"cc-number",
|
|
1964
|
+
"bday-day",
|
|
1965
|
+
"bday-month",
|
|
1966
|
+
"bday-year",
|
|
1967
|
+
"cc-csc",
|
|
1499
1968
|
"cc-exp",
|
|
1500
1969
|
"cc-exp-month",
|
|
1501
1970
|
"cc-exp-year",
|
|
1502
|
-
"cc-
|
|
1971
|
+
"cc-family-name",
|
|
1972
|
+
"cc-given-name",
|
|
1973
|
+
"cc-name",
|
|
1974
|
+
"cc-number",
|
|
1503
1975
|
"cc-type",
|
|
1504
|
-
"
|
|
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",
|
|
1505
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",
|
|
1506
2001
|
"language",
|
|
1507
2002
|
"bday",
|
|
1508
|
-
"bday-day",
|
|
1509
|
-
"bday-month",
|
|
1510
|
-
"bday-year",
|
|
1511
2003
|
"sex",
|
|
1512
|
-
"tel-country-code",
|
|
1513
|
-
"tel-national",
|
|
1514
|
-
"tel-area-code",
|
|
1515
|
-
"tel-local",
|
|
1516
|
-
"tel-extension",
|
|
1517
2004
|
"impp",
|
|
1518
2005
|
"photo"
|
|
1519
2006
|
]
|
|
@@ -1601,7 +2088,7 @@
|
|
|
1601
2088
|
},
|
|
1602
2089
|
"ion-input/fill": {
|
|
1603
2090
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
1604
|
-
"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\"`.",
|
|
1605
2092
|
"options": [
|
|
1606
2093
|
"outline",
|
|
1607
2094
|
"solid"
|
|
@@ -1632,8 +2119,8 @@
|
|
|
1632
2119
|
"options": []
|
|
1633
2120
|
},
|
|
1634
2121
|
"ion-input/label-placement": {
|
|
1635
|
-
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\"",
|
|
1636
|
-
"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.",
|
|
1637
2124
|
"options": [
|
|
1638
2125
|
"end",
|
|
1639
2126
|
"fixed",
|
|
@@ -1664,7 +2151,7 @@
|
|
|
1664
2151
|
},
|
|
1665
2152
|
"ion-input/mode": {
|
|
1666
2153
|
"type": "\"ios\" | \"md\"",
|
|
1667
|
-
"description": "The mode determines
|
|
2154
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1668
2155
|
"options": [
|
|
1669
2156
|
"ios",
|
|
1670
2157
|
"md"
|
|
@@ -1701,10 +2188,21 @@
|
|
|
1701
2188
|
"options": []
|
|
1702
2189
|
},
|
|
1703
2190
|
"ion-input/shape": {
|
|
1704
|
-
"type": "\"round\" | undefined",
|
|
1705
|
-
"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\"`.",
|
|
1706
2193
|
"options": [
|
|
1707
|
-
"
|
|
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"
|
|
1708
2206
|
]
|
|
1709
2207
|
},
|
|
1710
2208
|
"ion-input/spellcheck": {
|
|
@@ -1717,6 +2215,15 @@
|
|
|
1717
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.",
|
|
1718
2216
|
"options": []
|
|
1719
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
|
+
},
|
|
1720
2227
|
"ion-input/type": {
|
|
1721
2228
|
"type": "\"date\" | \"datetime-local\" | \"email\" | \"month\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"time\" | \"url\" | \"week\"",
|
|
1722
2229
|
"description": "The type of control to display. The default type is text.",
|
|
@@ -1795,11 +2302,11 @@
|
|
|
1795
2302
|
},
|
|
1796
2303
|
"ion-item/detail": {
|
|
1797
2304
|
"type": "boolean | undefined",
|
|
1798
|
-
"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.",
|
|
1799
2306
|
"options": []
|
|
1800
2307
|
},
|
|
1801
2308
|
"ion-item/detail-icon": {
|
|
1802
|
-
"type": "string",
|
|
2309
|
+
"type": "string | undefined",
|
|
1803
2310
|
"description": "The icon to use when `detail` is set to `true`.",
|
|
1804
2311
|
"options": []
|
|
1805
2312
|
},
|
|
@@ -1829,7 +2336,7 @@
|
|
|
1829
2336
|
},
|
|
1830
2337
|
"ion-item/mode": {
|
|
1831
2338
|
"type": "\"ios\" | \"md\"",
|
|
1832
|
-
"description": "The mode determines
|
|
2339
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1833
2340
|
"options": [
|
|
1834
2341
|
"ios",
|
|
1835
2342
|
"md"
|
|
@@ -1859,6 +2366,15 @@
|
|
|
1859
2366
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1860
2367
|
"options": []
|
|
1861
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
|
+
},
|
|
1862
2378
|
"ion-item/type": {
|
|
1863
2379
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
1864
2380
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -1885,7 +2401,7 @@
|
|
|
1885
2401
|
},
|
|
1886
2402
|
"ion-item-divider/mode": {
|
|
1887
2403
|
"type": "\"ios\" | \"md\"",
|
|
1888
|
-
"description": "The mode determines
|
|
2404
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1889
2405
|
"options": [
|
|
1890
2406
|
"ios",
|
|
1891
2407
|
"md"
|
|
@@ -1896,6 +2412,32 @@
|
|
|
1896
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",
|
|
1897
2413
|
"options": []
|
|
1898
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
|
+
},
|
|
1899
2441
|
"ion-item-option/color": {
|
|
1900
2442
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
1901
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).",
|
|
@@ -1933,7 +2475,7 @@
|
|
|
1933
2475
|
},
|
|
1934
2476
|
"ion-item-option/mode": {
|
|
1935
2477
|
"type": "\"ios\" | \"md\"",
|
|
1936
|
-
"description": "The mode determines
|
|
2478
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1937
2479
|
"options": [
|
|
1938
2480
|
"ios",
|
|
1939
2481
|
"md"
|
|
@@ -1944,11 +2486,29 @@
|
|
|
1944
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).",
|
|
1945
2487
|
"options": []
|
|
1946
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
|
+
},
|
|
1947
2498
|
"ion-item-option/target": {
|
|
1948
2499
|
"type": "string | undefined",
|
|
1949
2500
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1950
2501
|
"options": []
|
|
1951
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
|
+
},
|
|
1952
2512
|
"ion-item-option/type": {
|
|
1953
2513
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
1954
2514
|
"description": "The type of the button.",
|
|
@@ -1958,6 +2518,14 @@
|
|
|
1958
2518
|
"submit"
|
|
1959
2519
|
]
|
|
1960
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
|
+
},
|
|
1961
2529
|
"ion-item-options/side": {
|
|
1962
2530
|
"type": "\"end\" | \"start\"",
|
|
1963
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.",
|
|
@@ -1966,11 +2534,37 @@
|
|
|
1966
2534
|
"start"
|
|
1967
2535
|
]
|
|
1968
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
|
+
},
|
|
1969
2546
|
"ion-item-sliding/disabled": {
|
|
1970
2547
|
"type": "boolean",
|
|
1971
2548
|
"description": "If `true`, the user cannot interact with the sliding item.",
|
|
1972
2549
|
"options": []
|
|
1973
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
|
+
},
|
|
1974
2568
|
"ion-label/color": {
|
|
1975
2569
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
1976
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).",
|
|
@@ -1988,7 +2582,7 @@
|
|
|
1988
2582
|
},
|
|
1989
2583
|
"ion-label/mode": {
|
|
1990
2584
|
"type": "\"ios\" | \"md\"",
|
|
1991
|
-
"description": "The mode determines
|
|
2585
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1992
2586
|
"options": [
|
|
1993
2587
|
"ios",
|
|
1994
2588
|
"md"
|
|
@@ -2003,6 +2597,15 @@
|
|
|
2003
2597
|
"stacked"
|
|
2004
2598
|
]
|
|
2005
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
|
+
},
|
|
2006
2609
|
"ion-list/inset": {
|
|
2007
2610
|
"type": "boolean",
|
|
2008
2611
|
"description": "If `true`, the list will have margin around it and rounded corners.",
|
|
@@ -2019,12 +2622,30 @@
|
|
|
2019
2622
|
},
|
|
2020
2623
|
"ion-list/mode": {
|
|
2021
2624
|
"type": "\"ios\" | \"md\"",
|
|
2022
|
-
"description": "The mode determines
|
|
2625
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2023
2626
|
"options": [
|
|
2024
2627
|
"ios",
|
|
2025
2628
|
"md"
|
|
2026
2629
|
]
|
|
2027
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
|
+
},
|
|
2028
2649
|
"ion-list-header/color": {
|
|
2029
2650
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2030
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).",
|
|
@@ -2051,12 +2672,21 @@
|
|
|
2051
2672
|
},
|
|
2052
2673
|
"ion-list-header/mode": {
|
|
2053
2674
|
"type": "\"ios\" | \"md\"",
|
|
2054
|
-
"description": "The mode determines
|
|
2675
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2055
2676
|
"options": [
|
|
2056
2677
|
"ios",
|
|
2057
2678
|
"md"
|
|
2058
2679
|
]
|
|
2059
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
|
+
},
|
|
2060
2690
|
"ion-loading/animated": {
|
|
2061
2691
|
"type": "boolean",
|
|
2062
2692
|
"description": "If `true`, the loading indicator will animate.",
|
|
@@ -2109,7 +2739,7 @@
|
|
|
2109
2739
|
},
|
|
2110
2740
|
"ion-loading/mode": {
|
|
2111
2741
|
"type": "\"ios\" | \"md\"",
|
|
2112
|
-
"description": "The mode determines
|
|
2742
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2113
2743
|
"options": [
|
|
2114
2744
|
"ios",
|
|
2115
2745
|
"md"
|
|
@@ -2135,9 +2765,18 @@
|
|
|
2135
2765
|
"lines-small"
|
|
2136
2766
|
]
|
|
2137
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
|
+
},
|
|
2138
2777
|
"ion-loading/translucent": {
|
|
2139
2778
|
"type": "boolean",
|
|
2140
|
-
"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).",
|
|
2141
2780
|
"options": []
|
|
2142
2781
|
},
|
|
2143
2782
|
"ion-loading/trigger": {
|
|
@@ -2165,6 +2804,14 @@
|
|
|
2165
2804
|
"description": "An id for the menu.",
|
|
2166
2805
|
"options": []
|
|
2167
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
|
+
},
|
|
2168
2815
|
"ion-menu/side": {
|
|
2169
2816
|
"type": "\"end\" | \"start\"",
|
|
2170
2817
|
"description": "Which side of the view the menu should be placed.",
|
|
@@ -2178,6 +2825,15 @@
|
|
|
2178
2825
|
"description": "If `true`, swiping the menu is enabled.",
|
|
2179
2826
|
"options": []
|
|
2180
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
|
+
},
|
|
2181
2837
|
"ion-menu/type": {
|
|
2182
2838
|
"type": "\"overlay\" | \"push\" | \"reveal\" | undefined",
|
|
2183
2839
|
"description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
|
|
@@ -2219,12 +2875,21 @@
|
|
|
2219
2875
|
},
|
|
2220
2876
|
"ion-menu-button/mode": {
|
|
2221
2877
|
"type": "\"ios\" | \"md\"",
|
|
2222
|
-
"description": "The mode determines
|
|
2878
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2223
2879
|
"options": [
|
|
2224
2880
|
"ios",
|
|
2225
2881
|
"md"
|
|
2226
2882
|
]
|
|
2227
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
|
+
},
|
|
2228
2893
|
"ion-menu-button/type": {
|
|
2229
2894
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
2230
2895
|
"description": "The type of the button.",
|
|
@@ -2244,6 +2909,23 @@
|
|
|
2244
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.",
|
|
2245
2910
|
"options": []
|
|
2246
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
|
+
},
|
|
2247
2929
|
"ion-modal/animated": {
|
|
2248
2930
|
"type": "boolean",
|
|
2249
2931
|
"description": "If `true`, the modal will animate.",
|
|
@@ -2324,7 +3006,7 @@
|
|
|
2324
3006
|
},
|
|
2325
3007
|
"ion-modal/mode": {
|
|
2326
3008
|
"type": "\"ios\" | \"md\"",
|
|
2327
|
-
"description": "The mode determines
|
|
3009
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2328
3010
|
"options": [
|
|
2329
3011
|
"ios",
|
|
2330
3012
|
"md"
|
|
@@ -2335,11 +3017,29 @@
|
|
|
2335
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.",
|
|
2336
3018
|
"options": []
|
|
2337
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
|
+
},
|
|
2338
3029
|
"ion-modal/show-backdrop": {
|
|
2339
3030
|
"type": "boolean",
|
|
2340
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.",
|
|
2341
3032
|
"options": []
|
|
2342
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
|
+
},
|
|
2343
3043
|
"ion-modal/trigger": {
|
|
2344
3044
|
"type": "string | undefined",
|
|
2345
3045
|
"description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked.",
|
|
@@ -2352,9 +3052,17 @@
|
|
|
2352
3052
|
},
|
|
2353
3053
|
"ion-nav/animation": {
|
|
2354
3054
|
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2355
|
-
"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.",
|
|
2356
3056
|
"options": []
|
|
2357
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
|
+
},
|
|
2358
3066
|
"ion-nav/root": {
|
|
2359
3067
|
"type": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
2360
3068
|
"description": "Root NavComponent to load",
|
|
@@ -2370,6 +3078,15 @@
|
|
|
2370
3078
|
"description": "If the nav component should allow for swipe-to-go-back.",
|
|
2371
3079
|
"options": []
|
|
2372
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
|
+
},
|
|
2373
3090
|
"ion-nav-link/component": {
|
|
2374
3091
|
"type": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
2375
3092
|
"description": "Component to navigate to. Only used if the `routerDirection` is `\"forward\"` or `\"root\"`.",
|
|
@@ -2380,6 +3097,14 @@
|
|
|
2380
3097
|
"description": "Data you want to pass to the component as props. Only used if the `\"routerDirection\"` is `\"forward\"` or `\"root\"`.",
|
|
2381
3098
|
"options": []
|
|
2382
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
|
+
},
|
|
2383
3108
|
"ion-nav-link/router-animation": {
|
|
2384
3109
|
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2385
3110
|
"description": "The transition animation when navigating to another page.",
|
|
@@ -2394,6 +3119,15 @@
|
|
|
2394
3119
|
"root"
|
|
2395
3120
|
]
|
|
2396
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
|
+
},
|
|
2397
3131
|
"ion-note/color": {
|
|
2398
3132
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2399
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).",
|
|
@@ -2411,20 +3145,38 @@
|
|
|
2411
3145
|
},
|
|
2412
3146
|
"ion-note/mode": {
|
|
2413
3147
|
"type": "\"ios\" | \"md\"",
|
|
2414
|
-
"description": "The mode determines
|
|
3148
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2415
3149
|
"options": [
|
|
2416
3150
|
"ios",
|
|
2417
3151
|
"md"
|
|
2418
3152
|
]
|
|
2419
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
|
+
},
|
|
2420
3163
|
"ion-picker/mode": {
|
|
2421
3164
|
"type": "\"ios\" | \"md\"",
|
|
2422
|
-
"description": "The mode determines
|
|
3165
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2423
3166
|
"options": [
|
|
2424
3167
|
"ios",
|
|
2425
3168
|
"md"
|
|
2426
3169
|
]
|
|
2427
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
|
+
},
|
|
2428
3180
|
"ion-picker-column/color": {
|
|
2429
3181
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2430
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).",
|
|
@@ -2447,12 +3199,21 @@
|
|
|
2447
3199
|
},
|
|
2448
3200
|
"ion-picker-column/mode": {
|
|
2449
3201
|
"type": "\"ios\" | \"md\"",
|
|
2450
|
-
"description": "The mode determines
|
|
3202
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2451
3203
|
"options": [
|
|
2452
3204
|
"ios",
|
|
2453
3205
|
"md"
|
|
2454
3206
|
]
|
|
2455
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
|
+
},
|
|
2456
3217
|
"ion-picker-column/value": {
|
|
2457
3218
|
"type": "number | string | undefined",
|
|
2458
3219
|
"description": "The selected option in the picker.",
|
|
@@ -2478,6 +3239,23 @@
|
|
|
2478
3239
|
"description": "If `true`, the user cannot interact with the picker column option.",
|
|
2479
3240
|
"options": []
|
|
2480
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
|
+
},
|
|
2481
3259
|
"ion-picker-column-option/value": {
|
|
2482
3260
|
"type": "any",
|
|
2483
3261
|
"description": "The text value of the option.",
|
|
@@ -2540,7 +3318,7 @@
|
|
|
2540
3318
|
},
|
|
2541
3319
|
"ion-picker-legacy/mode": {
|
|
2542
3320
|
"type": "\"ios\" | \"md\"",
|
|
2543
|
-
"description": "The mode determines
|
|
3321
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2544
3322
|
"options": [
|
|
2545
3323
|
"ios",
|
|
2546
3324
|
"md"
|
|
@@ -2551,6 +3329,15 @@
|
|
|
2551
3329
|
"description": "If `true`, a backdrop will be displayed behind the picker.",
|
|
2552
3330
|
"options": []
|
|
2553
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
|
+
},
|
|
2554
3341
|
"ion-picker-legacy/trigger": {
|
|
2555
3342
|
"type": "string | undefined",
|
|
2556
3343
|
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
@@ -2558,7 +3345,7 @@
|
|
|
2558
3345
|
},
|
|
2559
3346
|
"ion-popover/alignment": {
|
|
2560
3347
|
"type": "\"center\" | \"end\" | \"start\" | undefined",
|
|
2561
|
-
"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.",
|
|
2562
3349
|
"options": [
|
|
2563
3350
|
"center",
|
|
2564
3351
|
"end",
|
|
@@ -2572,7 +3359,7 @@
|
|
|
2572
3359
|
},
|
|
2573
3360
|
"ion-popover/arrow": {
|
|
2574
3361
|
"type": "boolean",
|
|
2575
|
-
"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.",
|
|
2576
3363
|
"options": []
|
|
2577
3364
|
},
|
|
2578
3365
|
"ion-popover/backdrop-dismiss": {
|
|
@@ -2637,7 +3424,7 @@
|
|
|
2637
3424
|
},
|
|
2638
3425
|
"ion-popover/mode": {
|
|
2639
3426
|
"type": "\"ios\" | \"md\"",
|
|
2640
|
-
"description": "The mode determines
|
|
3427
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2641
3428
|
"options": [
|
|
2642
3429
|
"ios",
|
|
2643
3430
|
"md"
|
|
@@ -2676,9 +3463,18 @@
|
|
|
2676
3463
|
"cover"
|
|
2677
3464
|
]
|
|
2678
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
|
+
},
|
|
2679
3475
|
"ion-popover/translucent": {
|
|
2680
3476
|
"type": "boolean",
|
|
2681
|
-
"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).",
|
|
2682
3478
|
"options": []
|
|
2683
3479
|
},
|
|
2684
3480
|
"ion-popover/trigger": {
|
|
@@ -2717,7 +3513,7 @@
|
|
|
2717
3513
|
},
|
|
2718
3514
|
"ion-progress-bar/mode": {
|
|
2719
3515
|
"type": "\"ios\" | \"md\"",
|
|
2720
|
-
"description": "The mode determines
|
|
3516
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2721
3517
|
"options": [
|
|
2722
3518
|
"ios",
|
|
2723
3519
|
"md"
|
|
@@ -2728,6 +3524,15 @@
|
|
|
2728
3524
|
"description": "If true, reverse the progress bar direction.",
|
|
2729
3525
|
"options": []
|
|
2730
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
|
+
},
|
|
2731
3536
|
"ion-progress-bar/type": {
|
|
2732
3537
|
"type": "\"determinate\" | \"indeterminate\"",
|
|
2733
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).",
|
|
@@ -2790,7 +3595,7 @@
|
|
|
2790
3595
|
},
|
|
2791
3596
|
"ion-radio/mode": {
|
|
2792
3597
|
"type": "\"ios\" | \"md\"",
|
|
2793
|
-
"description": "The mode determines
|
|
3598
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2794
3599
|
"options": [
|
|
2795
3600
|
"ios",
|
|
2796
3601
|
"md"
|
|
@@ -2801,6 +3606,15 @@
|
|
|
2801
3606
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2802
3607
|
"options": []
|
|
2803
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
|
+
},
|
|
2804
3618
|
"ion-radio/value": {
|
|
2805
3619
|
"type": "any",
|
|
2806
3620
|
"description": "the value of the radio.",
|
|
@@ -2816,15 +3630,27 @@
|
|
|
2816
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.",
|
|
2817
3631
|
"options": []
|
|
2818
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
|
+
},
|
|
2819
3641
|
"ion-radio-group/name": {
|
|
2820
3642
|
"type": "string",
|
|
2821
3643
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2822
3644
|
"options": []
|
|
2823
3645
|
},
|
|
2824
|
-
"ion-radio-group/
|
|
2825
|
-
"type": "
|
|
2826
|
-
"description": "
|
|
2827
|
-
"options": [
|
|
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
|
+
]
|
|
2828
3654
|
},
|
|
2829
3655
|
"ion-radio-group/value": {
|
|
2830
3656
|
"type": "any",
|
|
@@ -2893,7 +3719,7 @@
|
|
|
2893
3719
|
},
|
|
2894
3720
|
"ion-range/mode": {
|
|
2895
3721
|
"type": "\"ios\" | \"md\"",
|
|
2896
|
-
"description": "The mode determines
|
|
3722
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2897
3723
|
"options": [
|
|
2898
3724
|
"ios",
|
|
2899
3725
|
"md"
|
|
@@ -2924,6 +3750,15 @@
|
|
|
2924
3750
|
"description": "Specifies the value granularity.",
|
|
2925
3751
|
"options": []
|
|
2926
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
|
+
},
|
|
2927
3762
|
"ion-range/ticks": {
|
|
2928
3763
|
"type": "boolean",
|
|
2929
3764
|
"description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
|
|
@@ -2946,7 +3781,7 @@
|
|
|
2946
3781
|
},
|
|
2947
3782
|
"ion-refresher/mode": {
|
|
2948
3783
|
"type": "\"ios\" | \"md\"",
|
|
2949
|
-
"description": "The mode determines
|
|
3784
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2950
3785
|
"options": [
|
|
2951
3786
|
"ios",
|
|
2952
3787
|
"md"
|
|
@@ -2972,6 +3807,23 @@
|
|
|
2972
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.",
|
|
2973
3808
|
"options": []
|
|
2974
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
|
+
},
|
|
2975
3827
|
"ion-refresher-content/pulling-icon": {
|
|
2976
3828
|
"type": "null | string | undefined",
|
|
2977
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.",
|
|
@@ -3002,11 +3854,71 @@
|
|
|
3002
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.",
|
|
3003
3855
|
"options": []
|
|
3004
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
|
+
},
|
|
3005
3883
|
"ion-reorder-group/disabled": {
|
|
3006
3884
|
"type": "boolean",
|
|
3007
3885
|
"description": "If `true`, the reorder will be hidden.",
|
|
3008
3886
|
"options": []
|
|
3009
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
|
+
},
|
|
3010
3922
|
"ion-ripple-effect/type": {
|
|
3011
3923
|
"type": "\"bounded\" | \"unbounded\"",
|
|
3012
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.",
|
|
@@ -3035,6 +3947,23 @@
|
|
|
3035
3947
|
"description": "A key value `{ 'red': true, 'blue': 'white'}` containing props that should be passed\nto the defined component when rendered.",
|
|
3036
3948
|
"options": []
|
|
3037
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
|
+
},
|
|
3038
3967
|
"ion-route/url": {
|
|
3039
3968
|
"type": "string",
|
|
3040
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.",
|
|
@@ -3050,11 +3979,28 @@
|
|
|
3050
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.",
|
|
3051
3980
|
"options": []
|
|
3052
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
|
+
},
|
|
3053
3990
|
"ion-router/root": {
|
|
3054
3991
|
"type": "string",
|
|
3055
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.",
|
|
3056
3993
|
"options": []
|
|
3057
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
|
+
},
|
|
3058
4004
|
"ion-router/use-hash": {
|
|
3059
4005
|
"type": "boolean",
|
|
3060
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.",
|
|
@@ -3080,6 +4026,14 @@
|
|
|
3080
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.",
|
|
3081
4027
|
"options": []
|
|
3082
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
|
+
},
|
|
3083
4037
|
"ion-router-link/rel": {
|
|
3084
4038
|
"type": "string | undefined",
|
|
3085
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).",
|
|
@@ -3104,6 +4058,15 @@
|
|
|
3104
4058
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3105
4059
|
"options": []
|
|
3106
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
|
+
},
|
|
3107
4070
|
"ion-router-outlet/animated": {
|
|
3108
4071
|
"type": "boolean",
|
|
3109
4072
|
"description": "If `true`, the router-outlet should animate the transition of components.",
|
|
@@ -3116,10 +4079,36 @@
|
|
|
3116
4079
|
},
|
|
3117
4080
|
"ion-router-outlet/mode": {
|
|
3118
4081
|
"type": "\"ios\" | \"md\"",
|
|
3119
|
-
"description": "The mode determines
|
|
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
|
+
]
|
|
4096
|
+
},
|
|
4097
|
+
"ion-row/mode": {
|
|
4098
|
+
"type": "\"ios\" | \"md\"",
|
|
4099
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4100
|
+
"options": [
|
|
4101
|
+
"ios",
|
|
4102
|
+
"md"
|
|
4103
|
+
]
|
|
4104
|
+
},
|
|
4105
|
+
"ion-row/theme": {
|
|
4106
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4107
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3120
4108
|
"options": [
|
|
3121
4109
|
"ios",
|
|
3122
|
-
"md"
|
|
4110
|
+
"md",
|
|
4111
|
+
"ionic"
|
|
3123
4112
|
]
|
|
3124
4113
|
},
|
|
3125
4114
|
"ion-searchbar/animated": {
|
|
@@ -3133,61 +4122,61 @@
|
|
|
3133
4122
|
"options": []
|
|
3134
4123
|
},
|
|
3135
4124
|
"ion-searchbar/autocomplete": {
|
|
3136
|
-
"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\"",
|
|
3137
4126
|
"description": "Set the input's autocomplete property.",
|
|
3138
4127
|
"options": [
|
|
3139
4128
|
"name",
|
|
3140
|
-
"email",
|
|
3141
|
-
"tel",
|
|
3142
4129
|
"url",
|
|
3143
|
-
"on",
|
|
3144
4130
|
"off",
|
|
3145
|
-
"
|
|
3146
|
-
"given-name",
|
|
4131
|
+
"on",
|
|
3147
4132
|
"additional-name",
|
|
3148
|
-
"
|
|
3149
|
-
"
|
|
3150
|
-
"
|
|
3151
|
-
"
|
|
3152
|
-
"new-password",
|
|
3153
|
-
"current-password",
|
|
3154
|
-
"one-time-code",
|
|
3155
|
-
"organization-title",
|
|
3156
|
-
"organization",
|
|
3157
|
-
"street-address",
|
|
4133
|
+
"address-level1",
|
|
4134
|
+
"address-level2",
|
|
4135
|
+
"address-level3",
|
|
4136
|
+
"address-level4",
|
|
3158
4137
|
"address-line1",
|
|
3159
4138
|
"address-line2",
|
|
3160
4139
|
"address-line3",
|
|
3161
|
-
"
|
|
3162
|
-
"
|
|
3163
|
-
"
|
|
3164
|
-
"
|
|
3165
|
-
"country",
|
|
3166
|
-
"country-name",
|
|
3167
|
-
"postal-code",
|
|
3168
|
-
"cc-name",
|
|
3169
|
-
"cc-given-name",
|
|
3170
|
-
"cc-additional-name",
|
|
3171
|
-
"cc-family-name",
|
|
3172
|
-
"cc-number",
|
|
4140
|
+
"bday-day",
|
|
4141
|
+
"bday-month",
|
|
4142
|
+
"bday-year",
|
|
4143
|
+
"cc-csc",
|
|
3173
4144
|
"cc-exp",
|
|
3174
4145
|
"cc-exp-month",
|
|
3175
4146
|
"cc-exp-year",
|
|
3176
|
-
"cc-
|
|
4147
|
+
"cc-family-name",
|
|
4148
|
+
"cc-given-name",
|
|
4149
|
+
"cc-name",
|
|
4150
|
+
"cc-number",
|
|
3177
4151
|
"cc-type",
|
|
3178
|
-
"
|
|
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",
|
|
3179
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",
|
|
3180
4177
|
"language",
|
|
3181
4178
|
"bday",
|
|
3182
|
-
"bday-day",
|
|
3183
|
-
"bday-month",
|
|
3184
|
-
"bday-year",
|
|
3185
4179
|
"sex",
|
|
3186
|
-
"tel-country-code",
|
|
3187
|
-
"tel-national",
|
|
3188
|
-
"tel-area-code",
|
|
3189
|
-
"tel-local",
|
|
3190
|
-
"tel-extension",
|
|
3191
4180
|
"impp",
|
|
3192
4181
|
"photo"
|
|
3193
4182
|
]
|
|
@@ -3201,18 +4190,18 @@
|
|
|
3201
4190
|
]
|
|
3202
4191
|
},
|
|
3203
4192
|
"ion-searchbar/cancel-button-icon": {
|
|
3204
|
-
"type": "string",
|
|
3205
|
-
"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\"`.",
|
|
3206
4195
|
"options": []
|
|
3207
4196
|
},
|
|
3208
4197
|
"ion-searchbar/cancel-button-text": {
|
|
3209
4198
|
"type": "string",
|
|
3210
|
-
"description": "Set the the cancel button text. Only
|
|
4199
|
+
"description": "Set the the cancel button text. Only available when the theme is `\"ios\"`.",
|
|
3211
4200
|
"options": []
|
|
3212
4201
|
},
|
|
3213
4202
|
"ion-searchbar/clear-icon": {
|
|
3214
4203
|
"type": "string | undefined",
|
|
3215
|
-
"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.",
|
|
3216
4205
|
"options": []
|
|
3217
4206
|
},
|
|
3218
4207
|
"ion-searchbar/color": {
|
|
@@ -3279,7 +4268,7 @@
|
|
|
3279
4268
|
},
|
|
3280
4269
|
"ion-searchbar/mode": {
|
|
3281
4270
|
"type": "\"ios\" | \"md\"",
|
|
3282
|
-
"description": "The mode determines
|
|
4271
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3283
4272
|
"options": [
|
|
3284
4273
|
"ios",
|
|
3285
4274
|
"md"
|
|
@@ -3297,7 +4286,7 @@
|
|
|
3297
4286
|
},
|
|
3298
4287
|
"ion-searchbar/search-icon": {
|
|
3299
4288
|
"type": "string | undefined",
|
|
3300
|
-
"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.",
|
|
3301
4290
|
"options": []
|
|
3302
4291
|
},
|
|
3303
4292
|
"ion-searchbar/show-cancel-button": {
|
|
@@ -3323,6 +4312,15 @@
|
|
|
3323
4312
|
"description": "If `true`, enable spellcheck on the input.",
|
|
3324
4313
|
"options": []
|
|
3325
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
|
+
},
|
|
3326
4324
|
"ion-searchbar/type": {
|
|
3327
4325
|
"type": "\"email\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"",
|
|
3328
4326
|
"description": "Set the type of the input.",
|
|
@@ -3363,7 +4361,7 @@
|
|
|
3363
4361
|
},
|
|
3364
4362
|
"ion-segment/mode": {
|
|
3365
4363
|
"type": "\"ios\" | \"md\"",
|
|
3366
|
-
"description": "The mode determines
|
|
4364
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3367
4365
|
"options": [
|
|
3368
4366
|
"ios",
|
|
3369
4367
|
"md"
|
|
@@ -3384,6 +4382,15 @@
|
|
|
3384
4382
|
"description": "If `true`, users will be able to swipe between segment buttons to activate them.",
|
|
3385
4383
|
"options": []
|
|
3386
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
|
+
},
|
|
3387
4394
|
"ion-segment/value": {
|
|
3388
4395
|
"type": "number | string | undefined",
|
|
3389
4396
|
"description": "the value of the segment.",
|
|
@@ -3413,12 +4420,21 @@
|
|
|
3413
4420
|
},
|
|
3414
4421
|
"ion-segment-button/mode": {
|
|
3415
4422
|
"type": "\"ios\" | \"md\"",
|
|
3416
|
-
"description": "The mode determines
|
|
4423
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3417
4424
|
"options": [
|
|
3418
4425
|
"ios",
|
|
3419
4426
|
"md"
|
|
3420
4427
|
]
|
|
3421
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
|
+
},
|
|
3422
4438
|
"ion-segment-button/type": {
|
|
3423
4439
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
3424
4440
|
"description": "The type of the button.",
|
|
@@ -3470,12 +4486,12 @@
|
|
|
3470
4486
|
},
|
|
3471
4487
|
"ion-select/expanded-icon": {
|
|
3472
4488
|
"type": "string | undefined",
|
|
3473
|
-
"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.",
|
|
3474
4490
|
"options": []
|
|
3475
4491
|
},
|
|
3476
4492
|
"ion-select/fill": {
|
|
3477
4493
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
3478
|
-
"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.",
|
|
3479
4495
|
"options": [
|
|
3480
4496
|
"outline",
|
|
3481
4497
|
"solid"
|
|
@@ -3523,7 +4539,7 @@
|
|
|
3523
4539
|
},
|
|
3524
4540
|
"ion-select/mode": {
|
|
3525
4541
|
"type": "\"ios\" | \"md\"",
|
|
3526
|
-
"description": "The mode determines
|
|
4542
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3527
4543
|
"options": [
|
|
3528
4544
|
"ios",
|
|
3529
4545
|
"md"
|
|
@@ -3549,26 +4565,41 @@
|
|
|
3549
4565
|
"description": "The text to display when the select is empty.",
|
|
3550
4566
|
"options": []
|
|
3551
4567
|
},
|
|
3552
|
-
"ion-select/required": {
|
|
3553
|
-
"type": "boolean",
|
|
3554
|
-
"description": "If `true`, the user must fill in a value before submitting a form.",
|
|
3555
|
-
"options": []
|
|
3556
|
-
},
|
|
3557
4568
|
"ion-select/selected-text": {
|
|
3558
4569
|
"type": "null | string | undefined",
|
|
3559
4570
|
"description": "The text to display instead of the selected option's value.",
|
|
3560
4571
|
"options": []
|
|
3561
4572
|
},
|
|
3562
4573
|
"ion-select/shape": {
|
|
3563
|
-
"type": "\"round\" | undefined",
|
|
3564
|
-
"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.",
|
|
3565
4594
|
"options": [
|
|
3566
|
-
"
|
|
4595
|
+
"ios",
|
|
4596
|
+
"md",
|
|
4597
|
+
"ionic"
|
|
3567
4598
|
]
|
|
3568
4599
|
},
|
|
3569
4600
|
"ion-select/toggle-icon": {
|
|
3570
4601
|
"type": "string | undefined",
|
|
3571
|
-
"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.",
|
|
3572
4603
|
"options": []
|
|
3573
4604
|
},
|
|
3574
4605
|
"ion-select/value": {
|
|
@@ -3596,6 +4627,23 @@
|
|
|
3596
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.",
|
|
3597
4628
|
"options": []
|
|
3598
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
|
+
},
|
|
3599
4647
|
"ion-select-option/value": {
|
|
3600
4648
|
"type": "any",
|
|
3601
4649
|
"description": "The text value of the option.",
|
|
@@ -3606,6 +4654,23 @@
|
|
|
3606
4654
|
"description": "If `true`, the skeleton text will animate.",
|
|
3607
4655
|
"options": []
|
|
3608
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
|
+
},
|
|
3609
4674
|
"ion-spinner/color": {
|
|
3610
4675
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3611
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).",
|
|
@@ -3626,6 +4691,14 @@
|
|
|
3626
4691
|
"description": "Duration of the spinner animation in milliseconds. The default varies based on the spinner.",
|
|
3627
4692
|
"options": []
|
|
3628
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
|
+
},
|
|
3629
4702
|
"ion-spinner/name": {
|
|
3630
4703
|
"type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | undefined",
|
|
3631
4704
|
"description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
|
|
@@ -3646,6 +4719,26 @@
|
|
|
3646
4719
|
"description": "If `true`, the spinner's animation will be paused.",
|
|
3647
4720
|
"options": []
|
|
3648
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
|
+
},
|
|
3649
4742
|
"ion-split-pane/content-id": {
|
|
3650
4743
|
"type": "string | undefined",
|
|
3651
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`.",
|
|
@@ -3656,6 +4749,23 @@
|
|
|
3656
4749
|
"description": "If `true`, the split pane will be hidden.",
|
|
3657
4750
|
"options": []
|
|
3658
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
|
+
},
|
|
3659
4769
|
"ion-split-pane/when": {
|
|
3660
4770
|
"type": "boolean | string",
|
|
3661
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.",
|
|
@@ -3666,11 +4776,28 @@
|
|
|
3666
4776
|
"description": "The component to display inside of the tab.",
|
|
3667
4777
|
"options": []
|
|
3668
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
|
+
},
|
|
3669
4787
|
"ion-tab/tab": {
|
|
3670
4788
|
"type": "string",
|
|
3671
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.",
|
|
3672
4790
|
"options": []
|
|
3673
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
|
+
},
|
|
3674
4801
|
"ion-tab-bar/color": {
|
|
3675
4802
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3676
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).",
|
|
@@ -3686,9 +4813,17 @@
|
|
|
3686
4813
|
"warning"
|
|
3687
4814
|
]
|
|
3688
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
|
+
},
|
|
3689
4824
|
"ion-tab-bar/mode": {
|
|
3690
4825
|
"type": "\"ios\" | \"md\"",
|
|
3691
|
-
"description": "The mode determines
|
|
4826
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3692
4827
|
"options": [
|
|
3693
4828
|
"ios",
|
|
3694
4829
|
"md"
|
|
@@ -3699,9 +4834,27 @@
|
|
|
3699
4834
|
"description": "The selected tab component",
|
|
3700
4835
|
"options": []
|
|
3701
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
|
+
},
|
|
3702
4855
|
"ion-tab-bar/translucent": {
|
|
3703
4856
|
"type": "boolean",
|
|
3704
|
-
"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).",
|
|
3705
4858
|
"options": []
|
|
3706
4859
|
},
|
|
3707
4860
|
"ion-tab-button/disabled": {
|
|
@@ -3733,7 +4886,7 @@
|
|
|
3733
4886
|
},
|
|
3734
4887
|
"ion-tab-button/mode": {
|
|
3735
4888
|
"type": "\"ios\" | \"md\"",
|
|
3736
|
-
"description": "The mode determines
|
|
4889
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3737
4890
|
"options": [
|
|
3738
4891
|
"ios",
|
|
3739
4892
|
"md"
|
|
@@ -3749,6 +4902,15 @@
|
|
|
3749
4902
|
"description": "The selected tab component",
|
|
3750
4903
|
"options": []
|
|
3751
4904
|
},
|
|
4905
|
+
"ion-tab-button/shape": {
|
|
4906
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4907
|
+
"description": "Set to `\"soft\"` for a tab-button with slightly rounded corners,\n`\"round\"` for a tab-button with fully rounded corners, or `\"rectangular\"`\nfor a tab-button without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
4908
|
+
"options": [
|
|
4909
|
+
"rectangular",
|
|
4910
|
+
"round",
|
|
4911
|
+
"soft"
|
|
4912
|
+
]
|
|
4913
|
+
},
|
|
3752
4914
|
"ion-tab-button/tab": {
|
|
3753
4915
|
"type": "string | undefined",
|
|
3754
4916
|
"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.",
|
|
@@ -3759,6 +4921,32 @@
|
|
|
3759
4921
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3760
4922
|
"options": []
|
|
3761
4923
|
},
|
|
4924
|
+
"ion-tab-button/theme": {
|
|
4925
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4926
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4927
|
+
"options": [
|
|
4928
|
+
"ios",
|
|
4929
|
+
"md",
|
|
4930
|
+
"ionic"
|
|
4931
|
+
]
|
|
4932
|
+
},
|
|
4933
|
+
"ion-tabs/mode": {
|
|
4934
|
+
"type": "\"ios\" | \"md\"",
|
|
4935
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4936
|
+
"options": [
|
|
4937
|
+
"ios",
|
|
4938
|
+
"md"
|
|
4939
|
+
]
|
|
4940
|
+
},
|
|
4941
|
+
"ion-tabs/theme": {
|
|
4942
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4943
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4944
|
+
"options": [
|
|
4945
|
+
"ios",
|
|
4946
|
+
"md",
|
|
4947
|
+
"ionic"
|
|
4948
|
+
]
|
|
4949
|
+
},
|
|
3762
4950
|
"ion-text/color": {
|
|
3763
4951
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3764
4952
|
"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).",
|
|
@@ -3776,12 +4964,21 @@
|
|
|
3776
4964
|
},
|
|
3777
4965
|
"ion-text/mode": {
|
|
3778
4966
|
"type": "\"ios\" | \"md\"",
|
|
3779
|
-
"description": "The mode determines
|
|
4967
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3780
4968
|
"options": [
|
|
3781
4969
|
"ios",
|
|
3782
4970
|
"md"
|
|
3783
4971
|
]
|
|
3784
4972
|
},
|
|
4973
|
+
"ion-text/theme": {
|
|
4974
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4975
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4976
|
+
"options": [
|
|
4977
|
+
"ios",
|
|
4978
|
+
"md",
|
|
4979
|
+
"ionic"
|
|
4980
|
+
]
|
|
4981
|
+
},
|
|
3785
4982
|
"ion-textarea/auto-grow": {
|
|
3786
4983
|
"type": "boolean",
|
|
3787
4984
|
"description": "If `true`, the textarea container will grow and shrink based\non the contents of the textarea.",
|
|
@@ -3862,7 +5059,7 @@
|
|
|
3862
5059
|
},
|
|
3863
5060
|
"ion-textarea/fill": {
|
|
3864
5061
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
3865
|
-
"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
|
|
5062
|
+
"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\"`.",
|
|
3866
5063
|
"options": [
|
|
3867
5064
|
"outline",
|
|
3868
5065
|
"solid"
|
|
@@ -3915,7 +5112,7 @@
|
|
|
3915
5112
|
},
|
|
3916
5113
|
"ion-textarea/mode": {
|
|
3917
5114
|
"type": "\"ios\" | \"md\"",
|
|
3918
|
-
"description": "The mode determines
|
|
5115
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3919
5116
|
"options": [
|
|
3920
5117
|
"ios",
|
|
3921
5118
|
"md"
|
|
@@ -3947,10 +5144,21 @@
|
|
|
3947
5144
|
"options": []
|
|
3948
5145
|
},
|
|
3949
5146
|
"ion-textarea/shape": {
|
|
3950
|
-
"type": "\"round\" | undefined",
|
|
3951
|
-
"description": "
|
|
5147
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5148
|
+
"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.",
|
|
5149
|
+
"options": [
|
|
5150
|
+
"rectangular",
|
|
5151
|
+
"round",
|
|
5152
|
+
"soft"
|
|
5153
|
+
]
|
|
5154
|
+
},
|
|
5155
|
+
"ion-textarea/size": {
|
|
5156
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
5157
|
+
"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.",
|
|
3952
5158
|
"options": [
|
|
3953
|
-
"
|
|
5159
|
+
"large",
|
|
5160
|
+
"medium",
|
|
5161
|
+
"small"
|
|
3954
5162
|
]
|
|
3955
5163
|
},
|
|
3956
5164
|
"ion-textarea/spellcheck": {
|
|
@@ -3958,6 +5166,15 @@
|
|
|
3958
5166
|
"description": "If `true`, the element will have its spelling and grammar checked.",
|
|
3959
5167
|
"options": []
|
|
3960
5168
|
},
|
|
5169
|
+
"ion-textarea/theme": {
|
|
5170
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5171
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5172
|
+
"options": [
|
|
5173
|
+
"ios",
|
|
5174
|
+
"md",
|
|
5175
|
+
"ionic"
|
|
5176
|
+
]
|
|
5177
|
+
},
|
|
3961
5178
|
"ion-textarea/value": {
|
|
3962
5179
|
"type": "null | string | undefined",
|
|
3963
5180
|
"description": "The value of the textarea.",
|
|
@@ -3972,6 +5189,23 @@
|
|
|
3972
5189
|
"soft"
|
|
3973
5190
|
]
|
|
3974
5191
|
},
|
|
5192
|
+
"ion-thumbnail/mode": {
|
|
5193
|
+
"type": "\"ios\" | \"md\"",
|
|
5194
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5195
|
+
"options": [
|
|
5196
|
+
"ios",
|
|
5197
|
+
"md"
|
|
5198
|
+
]
|
|
5199
|
+
},
|
|
5200
|
+
"ion-thumbnail/theme": {
|
|
5201
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5202
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5203
|
+
"options": [
|
|
5204
|
+
"ios",
|
|
5205
|
+
"md",
|
|
5206
|
+
"ionic"
|
|
5207
|
+
]
|
|
5208
|
+
},
|
|
3975
5209
|
"ion-title/color": {
|
|
3976
5210
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3977
5211
|
"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).",
|
|
@@ -3987,6 +5221,14 @@
|
|
|
3987
5221
|
"warning"
|
|
3988
5222
|
]
|
|
3989
5223
|
},
|
|
5224
|
+
"ion-title/mode": {
|
|
5225
|
+
"type": "\"ios\" | \"md\"",
|
|
5226
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5227
|
+
"options": [
|
|
5228
|
+
"ios",
|
|
5229
|
+
"md"
|
|
5230
|
+
]
|
|
5231
|
+
},
|
|
3990
5232
|
"ion-title/size": {
|
|
3991
5233
|
"type": "\"large\" | \"small\" | undefined",
|
|
3992
5234
|
"description": "The size of the toolbar title.",
|
|
@@ -3995,6 +5237,15 @@
|
|
|
3995
5237
|
"small"
|
|
3996
5238
|
]
|
|
3997
5239
|
},
|
|
5240
|
+
"ion-title/theme": {
|
|
5241
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5242
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5243
|
+
"options": [
|
|
5244
|
+
"ios",
|
|
5245
|
+
"md",
|
|
5246
|
+
"ionic"
|
|
5247
|
+
]
|
|
5248
|
+
},
|
|
3998
5249
|
"ion-toast/animated": {
|
|
3999
5250
|
"type": "boolean",
|
|
4000
5251
|
"description": "If `true`, the toast will animate.",
|
|
@@ -4080,7 +5331,7 @@
|
|
|
4080
5331
|
},
|
|
4081
5332
|
"ion-toast/mode": {
|
|
4082
5333
|
"type": "\"ios\" | \"md\"",
|
|
4083
|
-
"description": "The mode determines
|
|
5334
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4084
5335
|
"options": [
|
|
4085
5336
|
"ios",
|
|
4086
5337
|
"md"
|
|
@@ -4100,6 +5351,15 @@
|
|
|
4100
5351
|
"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.",
|
|
4101
5352
|
"options": []
|
|
4102
5353
|
},
|
|
5354
|
+
"ion-toast/shape": {
|
|
5355
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5356
|
+
"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.",
|
|
5357
|
+
"options": [
|
|
5358
|
+
"rectangular",
|
|
5359
|
+
"round",
|
|
5360
|
+
"soft"
|
|
5361
|
+
]
|
|
5362
|
+
},
|
|
4103
5363
|
"ion-toast/swipe-gesture": {
|
|
4104
5364
|
"type": "\"vertical\" | undefined",
|
|
4105
5365
|
"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.",
|
|
@@ -4107,9 +5367,18 @@
|
|
|
4107
5367
|
"vertical"
|
|
4108
5368
|
]
|
|
4109
5369
|
},
|
|
5370
|
+
"ion-toast/theme": {
|
|
5371
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5372
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5373
|
+
"options": [
|
|
5374
|
+
"ios",
|
|
5375
|
+
"md",
|
|
5376
|
+
"ionic"
|
|
5377
|
+
]
|
|
5378
|
+
},
|
|
4110
5379
|
"ion-toast/translucent": {
|
|
4111
5380
|
"type": "boolean",
|
|
4112
|
-
"description": "If `true`, the toast will be translucent.\nOnly applies when the
|
|
5381
|
+
"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).",
|
|
4113
5382
|
"options": []
|
|
4114
5383
|
},
|
|
4115
5384
|
"ion-toast/trigger": {
|
|
@@ -4176,7 +5445,7 @@
|
|
|
4176
5445
|
},
|
|
4177
5446
|
"ion-toggle/mode": {
|
|
4178
5447
|
"type": "\"ios\" | \"md\"",
|
|
4179
|
-
"description": "The mode determines
|
|
5448
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4180
5449
|
"options": [
|
|
4181
5450
|
"ios",
|
|
4182
5451
|
"md"
|
|
@@ -4187,10 +5456,14 @@
|
|
|
4187
5456
|
"description": "The name of the control, which is submitted with the form data.",
|
|
4188
5457
|
"options": []
|
|
4189
5458
|
},
|
|
4190
|
-
"ion-toggle/
|
|
4191
|
-
"type": "
|
|
4192
|
-
"description": "
|
|
4193
|
-
"options": [
|
|
5459
|
+
"ion-toggle/theme": {
|
|
5460
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5461
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5462
|
+
"options": [
|
|
5463
|
+
"ios",
|
|
5464
|
+
"md",
|
|
5465
|
+
"ionic"
|
|
5466
|
+
]
|
|
4194
5467
|
},
|
|
4195
5468
|
"ion-toggle/value": {
|
|
4196
5469
|
"type": "null | string | undefined",
|
|
@@ -4214,10 +5487,19 @@
|
|
|
4214
5487
|
},
|
|
4215
5488
|
"ion-toolbar/mode": {
|
|
4216
5489
|
"type": "\"ios\" | \"md\"",
|
|
4217
|
-
"description": "The mode determines
|
|
5490
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4218
5491
|
"options": [
|
|
4219
5492
|
"ios",
|
|
4220
5493
|
"md"
|
|
4221
5494
|
]
|
|
5495
|
+
},
|
|
5496
|
+
"ion-toolbar/theme": {
|
|
5497
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5498
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5499
|
+
"options": [
|
|
5500
|
+
"ios",
|
|
5501
|
+
"md",
|
|
5502
|
+
"ionic"
|
|
5503
|
+
]
|
|
4222
5504
|
}
|
|
4223
5505
|
}
|