@ionic/vue 8.4.2-dev.11737633140.1934dd0f → 8.4.2-dev.11739468652.1ae78967
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 +223 -137
- 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 +1486 -196
- package/dist/vetur/tags.json +201 -49
- package/dist/web-types.json +1346 -137
- 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": [
|
|
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
|
+
]
|
|
1417
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,23 @@
|
|
|
2728
3524
|
"description": "If true, reverse the progress bar direction.",
|
|
2729
3525
|
"options": []
|
|
2730
3526
|
},
|
|
3527
|
+
"ion-progress-bar/shape": {
|
|
3528
|
+
"type": "\"rectangular\" | \"round\" | undefined",
|
|
3529
|
+
"description": "Set to `\"round\"` for a progress bar with rounded corners, or `\"rectangular\"`\nfor a progress bar without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
3530
|
+
"options": [
|
|
3531
|
+
"rectangular",
|
|
3532
|
+
"round"
|
|
3533
|
+
]
|
|
3534
|
+
},
|
|
3535
|
+
"ion-progress-bar/theme": {
|
|
3536
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3537
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3538
|
+
"options": [
|
|
3539
|
+
"ios",
|
|
3540
|
+
"md",
|
|
3541
|
+
"ionic"
|
|
3542
|
+
]
|
|
3543
|
+
},
|
|
2731
3544
|
"ion-progress-bar/type": {
|
|
2732
3545
|
"type": "\"determinate\" | \"indeterminate\"",
|
|
2733
3546
|
"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 +3603,7 @@
|
|
|
2790
3603
|
},
|
|
2791
3604
|
"ion-radio/mode": {
|
|
2792
3605
|
"type": "\"ios\" | \"md\"",
|
|
2793
|
-
"description": "The mode determines
|
|
3606
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2794
3607
|
"options": [
|
|
2795
3608
|
"ios",
|
|
2796
3609
|
"md"
|
|
@@ -2801,6 +3614,15 @@
|
|
|
2801
3614
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2802
3615
|
"options": []
|
|
2803
3616
|
},
|
|
3617
|
+
"ion-radio/theme": {
|
|
3618
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3619
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3620
|
+
"options": [
|
|
3621
|
+
"ios",
|
|
3622
|
+
"md",
|
|
3623
|
+
"ionic"
|
|
3624
|
+
]
|
|
3625
|
+
},
|
|
2804
3626
|
"ion-radio/value": {
|
|
2805
3627
|
"type": "any",
|
|
2806
3628
|
"description": "the value of the radio.",
|
|
@@ -2816,15 +3638,27 @@
|
|
|
2816
3638
|
"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
3639
|
"options": []
|
|
2818
3640
|
},
|
|
3641
|
+
"ion-radio-group/mode": {
|
|
3642
|
+
"type": "\"ios\" | \"md\"",
|
|
3643
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3644
|
+
"options": [
|
|
3645
|
+
"ios",
|
|
3646
|
+
"md"
|
|
3647
|
+
]
|
|
3648
|
+
},
|
|
2819
3649
|
"ion-radio-group/name": {
|
|
2820
3650
|
"type": "string",
|
|
2821
3651
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2822
3652
|
"options": []
|
|
2823
3653
|
},
|
|
2824
|
-
"ion-radio-group/
|
|
2825
|
-
"type": "
|
|
2826
|
-
"description": "
|
|
2827
|
-
"options": [
|
|
3654
|
+
"ion-radio-group/theme": {
|
|
3655
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3656
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3657
|
+
"options": [
|
|
3658
|
+
"ios",
|
|
3659
|
+
"md",
|
|
3660
|
+
"ionic"
|
|
3661
|
+
]
|
|
2828
3662
|
},
|
|
2829
3663
|
"ion-radio-group/value": {
|
|
2830
3664
|
"type": "any",
|
|
@@ -2893,7 +3727,7 @@
|
|
|
2893
3727
|
},
|
|
2894
3728
|
"ion-range/mode": {
|
|
2895
3729
|
"type": "\"ios\" | \"md\"",
|
|
2896
|
-
"description": "The mode determines
|
|
3730
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2897
3731
|
"options": [
|
|
2898
3732
|
"ios",
|
|
2899
3733
|
"md"
|
|
@@ -2924,6 +3758,15 @@
|
|
|
2924
3758
|
"description": "Specifies the value granularity.",
|
|
2925
3759
|
"options": []
|
|
2926
3760
|
},
|
|
3761
|
+
"ion-range/theme": {
|
|
3762
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3763
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3764
|
+
"options": [
|
|
3765
|
+
"ios",
|
|
3766
|
+
"md",
|
|
3767
|
+
"ionic"
|
|
3768
|
+
]
|
|
3769
|
+
},
|
|
2927
3770
|
"ion-range/ticks": {
|
|
2928
3771
|
"type": "boolean",
|
|
2929
3772
|
"description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
|
|
@@ -2946,7 +3789,7 @@
|
|
|
2946
3789
|
},
|
|
2947
3790
|
"ion-refresher/mode": {
|
|
2948
3791
|
"type": "\"ios\" | \"md\"",
|
|
2949
|
-
"description": "The mode determines
|
|
3792
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2950
3793
|
"options": [
|
|
2951
3794
|
"ios",
|
|
2952
3795
|
"md"
|
|
@@ -2972,6 +3815,23 @@
|
|
|
2972
3815
|
"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
3816
|
"options": []
|
|
2974
3817
|
},
|
|
3818
|
+
"ion-refresher/theme": {
|
|
3819
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3820
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3821
|
+
"options": [
|
|
3822
|
+
"ios",
|
|
3823
|
+
"md",
|
|
3824
|
+
"ionic"
|
|
3825
|
+
]
|
|
3826
|
+
},
|
|
3827
|
+
"ion-refresher-content/mode": {
|
|
3828
|
+
"type": "\"ios\" | \"md\"",
|
|
3829
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3830
|
+
"options": [
|
|
3831
|
+
"ios",
|
|
3832
|
+
"md"
|
|
3833
|
+
]
|
|
3834
|
+
},
|
|
2975
3835
|
"ion-refresher-content/pulling-icon": {
|
|
2976
3836
|
"type": "null | string | undefined",
|
|
2977
3837
|
"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 +3862,71 @@
|
|
|
3002
3862
|
"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
3863
|
"options": []
|
|
3004
3864
|
},
|
|
3865
|
+
"ion-refresher-content/theme": {
|
|
3866
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3867
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3868
|
+
"options": [
|
|
3869
|
+
"ios",
|
|
3870
|
+
"md",
|
|
3871
|
+
"ionic"
|
|
3872
|
+
]
|
|
3873
|
+
},
|
|
3874
|
+
"ion-reorder/mode": {
|
|
3875
|
+
"type": "\"ios\" | \"md\"",
|
|
3876
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3877
|
+
"options": [
|
|
3878
|
+
"ios",
|
|
3879
|
+
"md"
|
|
3880
|
+
]
|
|
3881
|
+
},
|
|
3882
|
+
"ion-reorder/theme": {
|
|
3883
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3884
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3885
|
+
"options": [
|
|
3886
|
+
"ios",
|
|
3887
|
+
"md",
|
|
3888
|
+
"ionic"
|
|
3889
|
+
]
|
|
3890
|
+
},
|
|
3005
3891
|
"ion-reorder-group/disabled": {
|
|
3006
3892
|
"type": "boolean",
|
|
3007
3893
|
"description": "If `true`, the reorder will be hidden.",
|
|
3008
3894
|
"options": []
|
|
3009
3895
|
},
|
|
3896
|
+
"ion-reorder-group/mode": {
|
|
3897
|
+
"type": "\"ios\" | \"md\"",
|
|
3898
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3899
|
+
"options": [
|
|
3900
|
+
"ios",
|
|
3901
|
+
"md"
|
|
3902
|
+
]
|
|
3903
|
+
},
|
|
3904
|
+
"ion-reorder-group/theme": {
|
|
3905
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3906
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3907
|
+
"options": [
|
|
3908
|
+
"ios",
|
|
3909
|
+
"md",
|
|
3910
|
+
"ionic"
|
|
3911
|
+
]
|
|
3912
|
+
},
|
|
3913
|
+
"ion-ripple-effect/mode": {
|
|
3914
|
+
"type": "\"ios\" | \"md\"",
|
|
3915
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3916
|
+
"options": [
|
|
3917
|
+
"ios",
|
|
3918
|
+
"md"
|
|
3919
|
+
]
|
|
3920
|
+
},
|
|
3921
|
+
"ion-ripple-effect/theme": {
|
|
3922
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3923
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3924
|
+
"options": [
|
|
3925
|
+
"ios",
|
|
3926
|
+
"md",
|
|
3927
|
+
"ionic"
|
|
3928
|
+
]
|
|
3929
|
+
},
|
|
3010
3930
|
"ion-ripple-effect/type": {
|
|
3011
3931
|
"type": "\"bounded\" | \"unbounded\"",
|
|
3012
3932
|
"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 +3955,23 @@
|
|
|
3035
3955
|
"description": "A key value `{ 'red': true, 'blue': 'white'}` containing props that should be passed\nto the defined component when rendered.",
|
|
3036
3956
|
"options": []
|
|
3037
3957
|
},
|
|
3958
|
+
"ion-route/mode": {
|
|
3959
|
+
"type": "\"ios\" | \"md\"",
|
|
3960
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3961
|
+
"options": [
|
|
3962
|
+
"ios",
|
|
3963
|
+
"md"
|
|
3964
|
+
]
|
|
3965
|
+
},
|
|
3966
|
+
"ion-route/theme": {
|
|
3967
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3968
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3969
|
+
"options": [
|
|
3970
|
+
"ios",
|
|
3971
|
+
"md",
|
|
3972
|
+
"ionic"
|
|
3973
|
+
]
|
|
3974
|
+
},
|
|
3038
3975
|
"ion-route/url": {
|
|
3039
3976
|
"type": "string",
|
|
3040
3977
|
"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 +3987,28 @@
|
|
|
3050
3987
|
"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
3988
|
"options": []
|
|
3052
3989
|
},
|
|
3990
|
+
"ion-router/mode": {
|
|
3991
|
+
"type": "\"ios\" | \"md\"",
|
|
3992
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3993
|
+
"options": [
|
|
3994
|
+
"ios",
|
|
3995
|
+
"md"
|
|
3996
|
+
]
|
|
3997
|
+
},
|
|
3053
3998
|
"ion-router/root": {
|
|
3054
3999
|
"type": "string",
|
|
3055
4000
|
"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
4001
|
"options": []
|
|
3057
4002
|
},
|
|
4003
|
+
"ion-router/theme": {
|
|
4004
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4005
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4006
|
+
"options": [
|
|
4007
|
+
"ios",
|
|
4008
|
+
"md",
|
|
4009
|
+
"ionic"
|
|
4010
|
+
]
|
|
4011
|
+
},
|
|
3058
4012
|
"ion-router/use-hash": {
|
|
3059
4013
|
"type": "boolean",
|
|
3060
4014
|
"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 +4034,14 @@
|
|
|
3080
4034
|
"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
4035
|
"options": []
|
|
3082
4036
|
},
|
|
4037
|
+
"ion-router-link/mode": {
|
|
4038
|
+
"type": "\"ios\" | \"md\"",
|
|
4039
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4040
|
+
"options": [
|
|
4041
|
+
"ios",
|
|
4042
|
+
"md"
|
|
4043
|
+
]
|
|
4044
|
+
},
|
|
3083
4045
|
"ion-router-link/rel": {
|
|
3084
4046
|
"type": "string | undefined",
|
|
3085
4047
|
"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 +4066,15 @@
|
|
|
3104
4066
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3105
4067
|
"options": []
|
|
3106
4068
|
},
|
|
4069
|
+
"ion-router-link/theme": {
|
|
4070
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4071
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4072
|
+
"options": [
|
|
4073
|
+
"ios",
|
|
4074
|
+
"md",
|
|
4075
|
+
"ionic"
|
|
4076
|
+
]
|
|
4077
|
+
},
|
|
3107
4078
|
"ion-router-outlet/animated": {
|
|
3108
4079
|
"type": "boolean",
|
|
3109
4080
|
"description": "If `true`, the router-outlet should animate the transition of components.",
|
|
@@ -3116,10 +4087,36 @@
|
|
|
3116
4087
|
},
|
|
3117
4088
|
"ion-router-outlet/mode": {
|
|
3118
4089
|
"type": "\"ios\" | \"md\"",
|
|
3119
|
-
"description": "The mode determines
|
|
4090
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4091
|
+
"options": [
|
|
4092
|
+
"ios",
|
|
4093
|
+
"md"
|
|
4094
|
+
]
|
|
4095
|
+
},
|
|
4096
|
+
"ion-router-outlet/theme": {
|
|
4097
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4098
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4099
|
+
"options": [
|
|
4100
|
+
"ios",
|
|
4101
|
+
"md",
|
|
4102
|
+
"ionic"
|
|
4103
|
+
]
|
|
4104
|
+
},
|
|
4105
|
+
"ion-row/mode": {
|
|
4106
|
+
"type": "\"ios\" | \"md\"",
|
|
4107
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4108
|
+
"options": [
|
|
4109
|
+
"ios",
|
|
4110
|
+
"md"
|
|
4111
|
+
]
|
|
4112
|
+
},
|
|
4113
|
+
"ion-row/theme": {
|
|
4114
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4115
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3120
4116
|
"options": [
|
|
3121
4117
|
"ios",
|
|
3122
|
-
"md"
|
|
4118
|
+
"md",
|
|
4119
|
+
"ionic"
|
|
3123
4120
|
]
|
|
3124
4121
|
},
|
|
3125
4122
|
"ion-searchbar/animated": {
|
|
@@ -3133,61 +4130,61 @@
|
|
|
3133
4130
|
"options": []
|
|
3134
4131
|
},
|
|
3135
4132
|
"ion-searchbar/autocomplete": {
|
|
3136
|
-
"type": "\"name\" | \"
|
|
4133
|
+
"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
4134
|
"description": "Set the input's autocomplete property.",
|
|
3138
4135
|
"options": [
|
|
3139
4136
|
"name",
|
|
3140
|
-
"email",
|
|
3141
|
-
"tel",
|
|
3142
4137
|
"url",
|
|
3143
|
-
"on",
|
|
3144
4138
|
"off",
|
|
3145
|
-
"
|
|
3146
|
-
"given-name",
|
|
4139
|
+
"on",
|
|
3147
4140
|
"additional-name",
|
|
3148
|
-
"
|
|
3149
|
-
"
|
|
3150
|
-
"
|
|
3151
|
-
"
|
|
3152
|
-
"new-password",
|
|
3153
|
-
"current-password",
|
|
3154
|
-
"one-time-code",
|
|
3155
|
-
"organization-title",
|
|
3156
|
-
"organization",
|
|
3157
|
-
"street-address",
|
|
4141
|
+
"address-level1",
|
|
4142
|
+
"address-level2",
|
|
4143
|
+
"address-level3",
|
|
4144
|
+
"address-level4",
|
|
3158
4145
|
"address-line1",
|
|
3159
4146
|
"address-line2",
|
|
3160
4147
|
"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",
|
|
4148
|
+
"bday-day",
|
|
4149
|
+
"bday-month",
|
|
4150
|
+
"bday-year",
|
|
4151
|
+
"cc-csc",
|
|
3173
4152
|
"cc-exp",
|
|
3174
4153
|
"cc-exp-month",
|
|
3175
4154
|
"cc-exp-year",
|
|
3176
|
-
"cc-
|
|
4155
|
+
"cc-family-name",
|
|
4156
|
+
"cc-given-name",
|
|
4157
|
+
"cc-name",
|
|
4158
|
+
"cc-number",
|
|
3177
4159
|
"cc-type",
|
|
3178
|
-
"
|
|
4160
|
+
"country",
|
|
4161
|
+
"country-name",
|
|
4162
|
+
"current-password",
|
|
4163
|
+
"family-name",
|
|
4164
|
+
"given-name",
|
|
4165
|
+
"honorific-prefix",
|
|
4166
|
+
"honorific-suffix",
|
|
4167
|
+
"new-password",
|
|
4168
|
+
"one-time-code",
|
|
4169
|
+
"organization",
|
|
4170
|
+
"postal-code",
|
|
4171
|
+
"street-address",
|
|
3179
4172
|
"transaction-amount",
|
|
4173
|
+
"transaction-currency",
|
|
4174
|
+
"username",
|
|
4175
|
+
"email",
|
|
4176
|
+
"tel",
|
|
4177
|
+
"tel-area-code",
|
|
4178
|
+
"tel-country-code",
|
|
4179
|
+
"tel-extension",
|
|
4180
|
+
"tel-local",
|
|
4181
|
+
"tel-national",
|
|
4182
|
+
"nickname",
|
|
4183
|
+
"organization-title",
|
|
4184
|
+
"cc-additional-name",
|
|
3180
4185
|
"language",
|
|
3181
4186
|
"bday",
|
|
3182
|
-
"bday-day",
|
|
3183
|
-
"bday-month",
|
|
3184
|
-
"bday-year",
|
|
3185
4187
|
"sex",
|
|
3186
|
-
"tel-country-code",
|
|
3187
|
-
"tel-national",
|
|
3188
|
-
"tel-area-code",
|
|
3189
|
-
"tel-local",
|
|
3190
|
-
"tel-extension",
|
|
3191
4188
|
"impp",
|
|
3192
4189
|
"photo"
|
|
3193
4190
|
]
|
|
@@ -3201,18 +4198,18 @@
|
|
|
3201
4198
|
]
|
|
3202
4199
|
},
|
|
3203
4200
|
"ion-searchbar/cancel-button-icon": {
|
|
3204
|
-
"type": "string",
|
|
3205
|
-
"description": "Set the cancel button icon. Only
|
|
4201
|
+
"type": "string | undefined",
|
|
4202
|
+
"description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`.",
|
|
3206
4203
|
"options": []
|
|
3207
4204
|
},
|
|
3208
4205
|
"ion-searchbar/cancel-button-text": {
|
|
3209
4206
|
"type": "string",
|
|
3210
|
-
"description": "Set the the cancel button text. Only
|
|
4207
|
+
"description": "Set the the cancel button text. Only available when the theme is `\"ios\"`.",
|
|
3211
4208
|
"options": []
|
|
3212
4209
|
},
|
|
3213
4210
|
"ion-searchbar/clear-icon": {
|
|
3214
4211
|
"type": "string | undefined",
|
|
3215
|
-
"description": "Set the clear icon. Defaults to
|
|
4212
|
+
"description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme.",
|
|
3216
4213
|
"options": []
|
|
3217
4214
|
},
|
|
3218
4215
|
"ion-searchbar/color": {
|
|
@@ -3279,7 +4276,7 @@
|
|
|
3279
4276
|
},
|
|
3280
4277
|
"ion-searchbar/mode": {
|
|
3281
4278
|
"type": "\"ios\" | \"md\"",
|
|
3282
|
-
"description": "The mode determines
|
|
4279
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3283
4280
|
"options": [
|
|
3284
4281
|
"ios",
|
|
3285
4282
|
"md"
|
|
@@ -3297,7 +4294,7 @@
|
|
|
3297
4294
|
},
|
|
3298
4295
|
"ion-searchbar/search-icon": {
|
|
3299
4296
|
"type": "string | undefined",
|
|
3300
|
-
"description": "The icon to use as the search icon. Defaults to
|
|
4297
|
+
"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
4298
|
"options": []
|
|
3302
4299
|
},
|
|
3303
4300
|
"ion-searchbar/show-cancel-button": {
|
|
@@ -3323,6 +4320,15 @@
|
|
|
3323
4320
|
"description": "If `true`, enable spellcheck on the input.",
|
|
3324
4321
|
"options": []
|
|
3325
4322
|
},
|
|
4323
|
+
"ion-searchbar/theme": {
|
|
4324
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4325
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4326
|
+
"options": [
|
|
4327
|
+
"ios",
|
|
4328
|
+
"md",
|
|
4329
|
+
"ionic"
|
|
4330
|
+
]
|
|
4331
|
+
},
|
|
3326
4332
|
"ion-searchbar/type": {
|
|
3327
4333
|
"type": "\"email\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"",
|
|
3328
4334
|
"description": "Set the type of the input.",
|
|
@@ -3363,7 +4369,7 @@
|
|
|
3363
4369
|
},
|
|
3364
4370
|
"ion-segment/mode": {
|
|
3365
4371
|
"type": "\"ios\" | \"md\"",
|
|
3366
|
-
"description": "The mode determines
|
|
4372
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3367
4373
|
"options": [
|
|
3368
4374
|
"ios",
|
|
3369
4375
|
"md"
|
|
@@ -3384,6 +4390,15 @@
|
|
|
3384
4390
|
"description": "If `true`, users will be able to swipe between segment buttons to activate them.",
|
|
3385
4391
|
"options": []
|
|
3386
4392
|
},
|
|
4393
|
+
"ion-segment/theme": {
|
|
4394
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4395
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4396
|
+
"options": [
|
|
4397
|
+
"ios",
|
|
4398
|
+
"md",
|
|
4399
|
+
"ionic"
|
|
4400
|
+
]
|
|
4401
|
+
},
|
|
3387
4402
|
"ion-segment/value": {
|
|
3388
4403
|
"type": "number | string | undefined",
|
|
3389
4404
|
"description": "the value of the segment.",
|
|
@@ -3413,12 +4428,21 @@
|
|
|
3413
4428
|
},
|
|
3414
4429
|
"ion-segment-button/mode": {
|
|
3415
4430
|
"type": "\"ios\" | \"md\"",
|
|
3416
|
-
"description": "The mode determines
|
|
4431
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3417
4432
|
"options": [
|
|
3418
4433
|
"ios",
|
|
3419
4434
|
"md"
|
|
3420
4435
|
]
|
|
3421
4436
|
},
|
|
4437
|
+
"ion-segment-button/theme": {
|
|
4438
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4439
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4440
|
+
"options": [
|
|
4441
|
+
"ios",
|
|
4442
|
+
"md",
|
|
4443
|
+
"ionic"
|
|
4444
|
+
]
|
|
4445
|
+
},
|
|
3422
4446
|
"ion-segment-button/type": {
|
|
3423
4447
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
3424
4448
|
"description": "The type of the button.",
|
|
@@ -3470,12 +4494,12 @@
|
|
|
3470
4494
|
},
|
|
3471
4495
|
"ion-select/expanded-icon": {
|
|
3472
4496
|
"type": "string | undefined",
|
|
3473
|
-
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in
|
|
4497
|
+
"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
4498
|
"options": []
|
|
3475
4499
|
},
|
|
3476
4500
|
"ion-select/fill": {
|
|
3477
4501
|
"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
|
|
4502
|
+
"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
4503
|
"options": [
|
|
3480
4504
|
"outline",
|
|
3481
4505
|
"solid"
|
|
@@ -3523,7 +4547,7 @@
|
|
|
3523
4547
|
},
|
|
3524
4548
|
"ion-select/mode": {
|
|
3525
4549
|
"type": "\"ios\" | \"md\"",
|
|
3526
|
-
"description": "The mode determines
|
|
4550
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3527
4551
|
"options": [
|
|
3528
4552
|
"ios",
|
|
3529
4553
|
"md"
|
|
@@ -3549,26 +4573,41 @@
|
|
|
3549
4573
|
"description": "The text to display when the select is empty.",
|
|
3550
4574
|
"options": []
|
|
3551
4575
|
},
|
|
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
4576
|
"ion-select/selected-text": {
|
|
3558
4577
|
"type": "null | string | undefined",
|
|
3559
4578
|
"description": "The text to display instead of the selected option's value.",
|
|
3560
4579
|
"options": []
|
|
3561
4580
|
},
|
|
3562
4581
|
"ion-select/shape": {
|
|
3563
|
-
"type": "\"round\" | undefined",
|
|
3564
|
-
"description": "
|
|
4582
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4583
|
+
"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.",
|
|
3565
4584
|
"options": [
|
|
3566
|
-
"
|
|
4585
|
+
"rectangular",
|
|
4586
|
+
"round",
|
|
4587
|
+
"soft"
|
|
4588
|
+
]
|
|
4589
|
+
},
|
|
4590
|
+
"ion-select/size": {
|
|
4591
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
4592
|
+
"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.",
|
|
4593
|
+
"options": [
|
|
4594
|
+
"large",
|
|
4595
|
+
"medium",
|
|
4596
|
+
"small"
|
|
4597
|
+
]
|
|
4598
|
+
},
|
|
4599
|
+
"ion-select/theme": {
|
|
4600
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4601
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4602
|
+
"options": [
|
|
4603
|
+
"ios",
|
|
4604
|
+
"md",
|
|
4605
|
+
"ionic"
|
|
3567
4606
|
]
|
|
3568
4607
|
},
|
|
3569
4608
|
"ion-select/toggle-icon": {
|
|
3570
4609
|
"type": "string | undefined",
|
|
3571
|
-
"description": "The toggle icon to use. Defaults to
|
|
4610
|
+
"description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes.",
|
|
3572
4611
|
"options": []
|
|
3573
4612
|
},
|
|
3574
4613
|
"ion-select/value": {
|
|
@@ -3596,6 +4635,23 @@
|
|
|
3596
4635
|
"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
4636
|
"options": []
|
|
3598
4637
|
},
|
|
4638
|
+
"ion-select-option/mode": {
|
|
4639
|
+
"type": "\"ios\" | \"md\"",
|
|
4640
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4641
|
+
"options": [
|
|
4642
|
+
"ios",
|
|
4643
|
+
"md"
|
|
4644
|
+
]
|
|
4645
|
+
},
|
|
4646
|
+
"ion-select-option/theme": {
|
|
4647
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4648
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4649
|
+
"options": [
|
|
4650
|
+
"ios",
|
|
4651
|
+
"md",
|
|
4652
|
+
"ionic"
|
|
4653
|
+
]
|
|
4654
|
+
},
|
|
3599
4655
|
"ion-select-option/value": {
|
|
3600
4656
|
"type": "any",
|
|
3601
4657
|
"description": "The text value of the option.",
|
|
@@ -3606,6 +4662,23 @@
|
|
|
3606
4662
|
"description": "If `true`, the skeleton text will animate.",
|
|
3607
4663
|
"options": []
|
|
3608
4664
|
},
|
|
4665
|
+
"ion-skeleton-text/mode": {
|
|
4666
|
+
"type": "\"ios\" | \"md\"",
|
|
4667
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4668
|
+
"options": [
|
|
4669
|
+
"ios",
|
|
4670
|
+
"md"
|
|
4671
|
+
]
|
|
4672
|
+
},
|
|
4673
|
+
"ion-skeleton-text/theme": {
|
|
4674
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4675
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4676
|
+
"options": [
|
|
4677
|
+
"ios",
|
|
4678
|
+
"md",
|
|
4679
|
+
"ionic"
|
|
4680
|
+
]
|
|
4681
|
+
},
|
|
3609
4682
|
"ion-spinner/color": {
|
|
3610
4683
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3611
4684
|
"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 +4699,14 @@
|
|
|
3626
4699
|
"description": "Duration of the spinner animation in milliseconds. The default varies based on the spinner.",
|
|
3627
4700
|
"options": []
|
|
3628
4701
|
},
|
|
4702
|
+
"ion-spinner/mode": {
|
|
4703
|
+
"type": "\"ios\" | \"md\"",
|
|
4704
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4705
|
+
"options": [
|
|
4706
|
+
"ios",
|
|
4707
|
+
"md"
|
|
4708
|
+
]
|
|
4709
|
+
},
|
|
3629
4710
|
"ion-spinner/name": {
|
|
3630
4711
|
"type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | undefined",
|
|
3631
4712
|
"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 +4727,26 @@
|
|
|
3646
4727
|
"description": "If `true`, the spinner's animation will be paused.",
|
|
3647
4728
|
"options": []
|
|
3648
4729
|
},
|
|
4730
|
+
"ion-spinner/size": {
|
|
4731
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined",
|
|
4732
|
+
"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.",
|
|
4733
|
+
"options": [
|
|
4734
|
+
"large",
|
|
4735
|
+
"medium",
|
|
4736
|
+
"small",
|
|
4737
|
+
"xlarge",
|
|
4738
|
+
"xsmall"
|
|
4739
|
+
]
|
|
4740
|
+
},
|
|
4741
|
+
"ion-spinner/theme": {
|
|
4742
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4743
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4744
|
+
"options": [
|
|
4745
|
+
"ios",
|
|
4746
|
+
"md",
|
|
4747
|
+
"ionic"
|
|
4748
|
+
]
|
|
4749
|
+
},
|
|
3649
4750
|
"ion-split-pane/content-id": {
|
|
3650
4751
|
"type": "string | undefined",
|
|
3651
4752
|
"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 +4757,23 @@
|
|
|
3656
4757
|
"description": "If `true`, the split pane will be hidden.",
|
|
3657
4758
|
"options": []
|
|
3658
4759
|
},
|
|
4760
|
+
"ion-split-pane/mode": {
|
|
4761
|
+
"type": "\"ios\" | \"md\"",
|
|
4762
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4763
|
+
"options": [
|
|
4764
|
+
"ios",
|
|
4765
|
+
"md"
|
|
4766
|
+
]
|
|
4767
|
+
},
|
|
4768
|
+
"ion-split-pane/theme": {
|
|
4769
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4770
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4771
|
+
"options": [
|
|
4772
|
+
"ios",
|
|
4773
|
+
"md",
|
|
4774
|
+
"ionic"
|
|
4775
|
+
]
|
|
4776
|
+
},
|
|
3659
4777
|
"ion-split-pane/when": {
|
|
3660
4778
|
"type": "boolean | string",
|
|
3661
4779
|
"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 +4784,28 @@
|
|
|
3666
4784
|
"description": "The component to display inside of the tab.",
|
|
3667
4785
|
"options": []
|
|
3668
4786
|
},
|
|
4787
|
+
"ion-tab/mode": {
|
|
4788
|
+
"type": "\"ios\" | \"md\"",
|
|
4789
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4790
|
+
"options": [
|
|
4791
|
+
"ios",
|
|
4792
|
+
"md"
|
|
4793
|
+
]
|
|
4794
|
+
},
|
|
3669
4795
|
"ion-tab/tab": {
|
|
3670
4796
|
"type": "string",
|
|
3671
4797
|
"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
4798
|
"options": []
|
|
3673
4799
|
},
|
|
4800
|
+
"ion-tab/theme": {
|
|
4801
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4802
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4803
|
+
"options": [
|
|
4804
|
+
"ios",
|
|
4805
|
+
"md",
|
|
4806
|
+
"ionic"
|
|
4807
|
+
]
|
|
4808
|
+
},
|
|
3674
4809
|
"ion-tab-bar/color": {
|
|
3675
4810
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3676
4811
|
"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 +4821,17 @@
|
|
|
3686
4821
|
"warning"
|
|
3687
4822
|
]
|
|
3688
4823
|
},
|
|
4824
|
+
"ion-tab-bar/expand": {
|
|
4825
|
+
"type": "\"compact\" | \"full\"",
|
|
4826
|
+
"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\"`.",
|
|
4827
|
+
"options": [
|
|
4828
|
+
"compact",
|
|
4829
|
+
"full"
|
|
4830
|
+
]
|
|
4831
|
+
},
|
|
3689
4832
|
"ion-tab-bar/mode": {
|
|
3690
4833
|
"type": "\"ios\" | \"md\"",
|
|
3691
|
-
"description": "The mode determines
|
|
4834
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3692
4835
|
"options": [
|
|
3693
4836
|
"ios",
|
|
3694
4837
|
"md"
|
|
@@ -3699,9 +4842,27 @@
|
|
|
3699
4842
|
"description": "The selected tab component",
|
|
3700
4843
|
"options": []
|
|
3701
4844
|
},
|
|
4845
|
+
"ion-tab-bar/shape": {
|
|
4846
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4847
|
+
"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.",
|
|
4848
|
+
"options": [
|
|
4849
|
+
"rectangular",
|
|
4850
|
+
"round",
|
|
4851
|
+
"soft"
|
|
4852
|
+
]
|
|
4853
|
+
},
|
|
4854
|
+
"ion-tab-bar/theme": {
|
|
4855
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4856
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4857
|
+
"options": [
|
|
4858
|
+
"ios",
|
|
4859
|
+
"md",
|
|
4860
|
+
"ionic"
|
|
4861
|
+
]
|
|
4862
|
+
},
|
|
3702
4863
|
"ion-tab-bar/translucent": {
|
|
3703
4864
|
"type": "boolean",
|
|
3704
|
-
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the
|
|
4865
|
+
"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
4866
|
"options": []
|
|
3706
4867
|
},
|
|
3707
4868
|
"ion-tab-button/disabled": {
|
|
@@ -3733,7 +4894,7 @@
|
|
|
3733
4894
|
},
|
|
3734
4895
|
"ion-tab-button/mode": {
|
|
3735
4896
|
"type": "\"ios\" | \"md\"",
|
|
3736
|
-
"description": "The mode determines
|
|
4897
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3737
4898
|
"options": [
|
|
3738
4899
|
"ios",
|
|
3739
4900
|
"md"
|
|
@@ -3749,6 +4910,15 @@
|
|
|
3749
4910
|
"description": "The selected tab component",
|
|
3750
4911
|
"options": []
|
|
3751
4912
|
},
|
|
4913
|
+
"ion-tab-button/shape": {
|
|
4914
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4915
|
+
"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.",
|
|
4916
|
+
"options": [
|
|
4917
|
+
"rectangular",
|
|
4918
|
+
"round",
|
|
4919
|
+
"soft"
|
|
4920
|
+
]
|
|
4921
|
+
},
|
|
3752
4922
|
"ion-tab-button/tab": {
|
|
3753
4923
|
"type": "string | undefined",
|
|
3754
4924
|
"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 +4929,32 @@
|
|
|
3759
4929
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3760
4930
|
"options": []
|
|
3761
4931
|
},
|
|
4932
|
+
"ion-tab-button/theme": {
|
|
4933
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4934
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4935
|
+
"options": [
|
|
4936
|
+
"ios",
|
|
4937
|
+
"md",
|
|
4938
|
+
"ionic"
|
|
4939
|
+
]
|
|
4940
|
+
},
|
|
4941
|
+
"ion-tabs/mode": {
|
|
4942
|
+
"type": "\"ios\" | \"md\"",
|
|
4943
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4944
|
+
"options": [
|
|
4945
|
+
"ios",
|
|
4946
|
+
"md"
|
|
4947
|
+
]
|
|
4948
|
+
},
|
|
4949
|
+
"ion-tabs/theme": {
|
|
4950
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4951
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4952
|
+
"options": [
|
|
4953
|
+
"ios",
|
|
4954
|
+
"md",
|
|
4955
|
+
"ionic"
|
|
4956
|
+
]
|
|
4957
|
+
},
|
|
3762
4958
|
"ion-text/color": {
|
|
3763
4959
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3764
4960
|
"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 +4972,21 @@
|
|
|
3776
4972
|
},
|
|
3777
4973
|
"ion-text/mode": {
|
|
3778
4974
|
"type": "\"ios\" | \"md\"",
|
|
3779
|
-
"description": "The mode determines
|
|
4975
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3780
4976
|
"options": [
|
|
3781
4977
|
"ios",
|
|
3782
4978
|
"md"
|
|
3783
4979
|
]
|
|
3784
4980
|
},
|
|
4981
|
+
"ion-text/theme": {
|
|
4982
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4983
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4984
|
+
"options": [
|
|
4985
|
+
"ios",
|
|
4986
|
+
"md",
|
|
4987
|
+
"ionic"
|
|
4988
|
+
]
|
|
4989
|
+
},
|
|
3785
4990
|
"ion-textarea/auto-grow": {
|
|
3786
4991
|
"type": "boolean",
|
|
3787
4992
|
"description": "If `true`, the textarea container will grow and shrink based\non the contents of the textarea.",
|
|
@@ -3862,7 +5067,7 @@
|
|
|
3862
5067
|
},
|
|
3863
5068
|
"ion-textarea/fill": {
|
|
3864
5069
|
"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
|
|
5070
|
+
"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
5071
|
"options": [
|
|
3867
5072
|
"outline",
|
|
3868
5073
|
"solid"
|
|
@@ -3915,7 +5120,7 @@
|
|
|
3915
5120
|
},
|
|
3916
5121
|
"ion-textarea/mode": {
|
|
3917
5122
|
"type": "\"ios\" | \"md\"",
|
|
3918
|
-
"description": "The mode determines
|
|
5123
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3919
5124
|
"options": [
|
|
3920
5125
|
"ios",
|
|
3921
5126
|
"md"
|
|
@@ -3947,10 +5152,21 @@
|
|
|
3947
5152
|
"options": []
|
|
3948
5153
|
},
|
|
3949
5154
|
"ion-textarea/shape": {
|
|
3950
|
-
"type": "\"round\" | undefined",
|
|
3951
|
-
"description": "
|
|
5155
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5156
|
+
"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.",
|
|
3952
5157
|
"options": [
|
|
3953
|
-
"
|
|
5158
|
+
"rectangular",
|
|
5159
|
+
"round",
|
|
5160
|
+
"soft"
|
|
5161
|
+
]
|
|
5162
|
+
},
|
|
5163
|
+
"ion-textarea/size": {
|
|
5164
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
5165
|
+
"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.",
|
|
5166
|
+
"options": [
|
|
5167
|
+
"large",
|
|
5168
|
+
"medium",
|
|
5169
|
+
"small"
|
|
3954
5170
|
]
|
|
3955
5171
|
},
|
|
3956
5172
|
"ion-textarea/spellcheck": {
|
|
@@ -3958,6 +5174,15 @@
|
|
|
3958
5174
|
"description": "If `true`, the element will have its spelling and grammar checked.",
|
|
3959
5175
|
"options": []
|
|
3960
5176
|
},
|
|
5177
|
+
"ion-textarea/theme": {
|
|
5178
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5179
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5180
|
+
"options": [
|
|
5181
|
+
"ios",
|
|
5182
|
+
"md",
|
|
5183
|
+
"ionic"
|
|
5184
|
+
]
|
|
5185
|
+
},
|
|
3961
5186
|
"ion-textarea/value": {
|
|
3962
5187
|
"type": "null | string | undefined",
|
|
3963
5188
|
"description": "The value of the textarea.",
|
|
@@ -3972,6 +5197,23 @@
|
|
|
3972
5197
|
"soft"
|
|
3973
5198
|
]
|
|
3974
5199
|
},
|
|
5200
|
+
"ion-thumbnail/mode": {
|
|
5201
|
+
"type": "\"ios\" | \"md\"",
|
|
5202
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5203
|
+
"options": [
|
|
5204
|
+
"ios",
|
|
5205
|
+
"md"
|
|
5206
|
+
]
|
|
5207
|
+
},
|
|
5208
|
+
"ion-thumbnail/theme": {
|
|
5209
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5210
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5211
|
+
"options": [
|
|
5212
|
+
"ios",
|
|
5213
|
+
"md",
|
|
5214
|
+
"ionic"
|
|
5215
|
+
]
|
|
5216
|
+
},
|
|
3975
5217
|
"ion-title/color": {
|
|
3976
5218
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3977
5219
|
"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 +5229,14 @@
|
|
|
3987
5229
|
"warning"
|
|
3988
5230
|
]
|
|
3989
5231
|
},
|
|
5232
|
+
"ion-title/mode": {
|
|
5233
|
+
"type": "\"ios\" | \"md\"",
|
|
5234
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5235
|
+
"options": [
|
|
5236
|
+
"ios",
|
|
5237
|
+
"md"
|
|
5238
|
+
]
|
|
5239
|
+
},
|
|
3990
5240
|
"ion-title/size": {
|
|
3991
5241
|
"type": "\"large\" | \"small\" | undefined",
|
|
3992
5242
|
"description": "The size of the toolbar title.",
|
|
@@ -3995,6 +5245,15 @@
|
|
|
3995
5245
|
"small"
|
|
3996
5246
|
]
|
|
3997
5247
|
},
|
|
5248
|
+
"ion-title/theme": {
|
|
5249
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5250
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5251
|
+
"options": [
|
|
5252
|
+
"ios",
|
|
5253
|
+
"md",
|
|
5254
|
+
"ionic"
|
|
5255
|
+
]
|
|
5256
|
+
},
|
|
3998
5257
|
"ion-toast/animated": {
|
|
3999
5258
|
"type": "boolean",
|
|
4000
5259
|
"description": "If `true`, the toast will animate.",
|
|
@@ -4080,7 +5339,7 @@
|
|
|
4080
5339
|
},
|
|
4081
5340
|
"ion-toast/mode": {
|
|
4082
5341
|
"type": "\"ios\" | \"md\"",
|
|
4083
|
-
"description": "The mode determines
|
|
5342
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4084
5343
|
"options": [
|
|
4085
5344
|
"ios",
|
|
4086
5345
|
"md"
|
|
@@ -4100,6 +5359,15 @@
|
|
|
4100
5359
|
"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
5360
|
"options": []
|
|
4102
5361
|
},
|
|
5362
|
+
"ion-toast/shape": {
|
|
5363
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5364
|
+
"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.",
|
|
5365
|
+
"options": [
|
|
5366
|
+
"rectangular",
|
|
5367
|
+
"round",
|
|
5368
|
+
"soft"
|
|
5369
|
+
]
|
|
5370
|
+
},
|
|
4103
5371
|
"ion-toast/swipe-gesture": {
|
|
4104
5372
|
"type": "\"vertical\" | undefined",
|
|
4105
5373
|
"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 +5375,18 @@
|
|
|
4107
5375
|
"vertical"
|
|
4108
5376
|
]
|
|
4109
5377
|
},
|
|
5378
|
+
"ion-toast/theme": {
|
|
5379
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5380
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5381
|
+
"options": [
|
|
5382
|
+
"ios",
|
|
5383
|
+
"md",
|
|
5384
|
+
"ionic"
|
|
5385
|
+
]
|
|
5386
|
+
},
|
|
4110
5387
|
"ion-toast/translucent": {
|
|
4111
5388
|
"type": "boolean",
|
|
4112
|
-
"description": "If `true`, the toast will be translucent.\nOnly applies when the
|
|
5389
|
+
"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
5390
|
"options": []
|
|
4114
5391
|
},
|
|
4115
5392
|
"ion-toast/trigger": {
|
|
@@ -4176,7 +5453,7 @@
|
|
|
4176
5453
|
},
|
|
4177
5454
|
"ion-toggle/mode": {
|
|
4178
5455
|
"type": "\"ios\" | \"md\"",
|
|
4179
|
-
"description": "The mode determines
|
|
5456
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4180
5457
|
"options": [
|
|
4181
5458
|
"ios",
|
|
4182
5459
|
"md"
|
|
@@ -4187,10 +5464,14 @@
|
|
|
4187
5464
|
"description": "The name of the control, which is submitted with the form data.",
|
|
4188
5465
|
"options": []
|
|
4189
5466
|
},
|
|
4190
|
-
"ion-toggle/
|
|
4191
|
-
"type": "
|
|
4192
|
-
"description": "
|
|
4193
|
-
"options": [
|
|
5467
|
+
"ion-toggle/theme": {
|
|
5468
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5469
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5470
|
+
"options": [
|
|
5471
|
+
"ios",
|
|
5472
|
+
"md",
|
|
5473
|
+
"ionic"
|
|
5474
|
+
]
|
|
4194
5475
|
},
|
|
4195
5476
|
"ion-toggle/value": {
|
|
4196
5477
|
"type": "null | string | undefined",
|
|
@@ -4214,10 +5495,19 @@
|
|
|
4214
5495
|
},
|
|
4215
5496
|
"ion-toolbar/mode": {
|
|
4216
5497
|
"type": "\"ios\" | \"md\"",
|
|
4217
|
-
"description": "The mode determines
|
|
5498
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4218
5499
|
"options": [
|
|
4219
5500
|
"ios",
|
|
4220
5501
|
"md"
|
|
4221
5502
|
]
|
|
5503
|
+
},
|
|
5504
|
+
"ion-toolbar/theme": {
|
|
5505
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5506
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5507
|
+
"options": [
|
|
5508
|
+
"ios",
|
|
5509
|
+
"md",
|
|
5510
|
+
"ionic"
|
|
5511
|
+
]
|
|
4222
5512
|
}
|
|
4223
5513
|
}
|