@ionic/vue 8.8.9-dev.11780414486.1df2bd72 → 8.8.9-dev.11780493937.17fe092d
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 +252 -239
- package/dist/index.js.map +1 -1
- package/dist/types/components/IonPage.d.ts +5 -5
- package/dist/types/components/IonRouterOutlet.d.ts +4 -16
- package/dist/types/components/IonTabBar.d.ts +1 -1
- package/dist/types/components/IonTabButton.d.ts +6 -6
- package/dist/types/components/IonTabs.d.ts +4 -4
- package/dist/types/components/Overlays.d.ts +1 -0
- package/dist/types/controllers.d.ts +9 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/proxies.d.ts +2 -0
- package/dist/vetur/attributes.json +1703 -116
- package/dist/vetur/tags.json +259 -45
- package/dist/web-types.json +2017 -213
- package/package.json +5 -5
|
@@ -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,66 @@
|
|
|
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/disabled": {
|
|
298
|
+
"type": "boolean",
|
|
299
|
+
"description": "If `true`, the user cannot interact with the avatar.",
|
|
300
|
+
"options": []
|
|
301
|
+
},
|
|
302
|
+
"ion-avatar/mode": {
|
|
303
|
+
"type": "\"ios\" | \"md\"",
|
|
304
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
305
|
+
"options": [
|
|
306
|
+
"ios",
|
|
307
|
+
"md"
|
|
308
|
+
]
|
|
309
|
+
},
|
|
310
|
+
"ion-avatar/shape": {
|
|
311
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
312
|
+
"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.",
|
|
313
|
+
"options": [
|
|
314
|
+
"rectangular",
|
|
315
|
+
"round",
|
|
316
|
+
"soft"
|
|
317
|
+
]
|
|
318
|
+
},
|
|
319
|
+
"ion-avatar/size": {
|
|
320
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxsmall\" | undefined",
|
|
321
|
+
"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.",
|
|
322
|
+
"options": [
|
|
323
|
+
"large",
|
|
324
|
+
"medium",
|
|
325
|
+
"small",
|
|
326
|
+
"xlarge",
|
|
327
|
+
"xsmall",
|
|
328
|
+
"xxsmall"
|
|
329
|
+
]
|
|
330
|
+
},
|
|
331
|
+
"ion-avatar/theme": {
|
|
332
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
333
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
334
|
+
"options": [
|
|
335
|
+
"ios",
|
|
336
|
+
"md",
|
|
337
|
+
"ionic"
|
|
338
|
+
]
|
|
339
|
+
},
|
|
235
340
|
"ion-back-button/color": {
|
|
236
341
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
237
342
|
"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 +369,7 @@
|
|
|
264
369
|
},
|
|
265
370
|
"ion-back-button/mode": {
|
|
266
371
|
"type": "\"ios\" | \"md\"",
|
|
267
|
-
"description": "The mode determines
|
|
372
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
268
373
|
"options": [
|
|
269
374
|
"ios",
|
|
270
375
|
"md"
|
|
@@ -280,6 +385,15 @@
|
|
|
280
385
|
"description": "The text to display in the back button.",
|
|
281
386
|
"options": []
|
|
282
387
|
},
|
|
388
|
+
"ion-back-button/theme": {
|
|
389
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
390
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
391
|
+
"options": [
|
|
392
|
+
"ios",
|
|
393
|
+
"md",
|
|
394
|
+
"ionic"
|
|
395
|
+
]
|
|
396
|
+
},
|
|
283
397
|
"ion-back-button/type": {
|
|
284
398
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
285
399
|
"description": "The type of the button.",
|
|
@@ -289,6 +403,14 @@
|
|
|
289
403
|
"submit"
|
|
290
404
|
]
|
|
291
405
|
},
|
|
406
|
+
"ion-backdrop/mode": {
|
|
407
|
+
"type": "\"ios\" | \"md\"",
|
|
408
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
409
|
+
"options": [
|
|
410
|
+
"ios",
|
|
411
|
+
"md"
|
|
412
|
+
]
|
|
413
|
+
},
|
|
292
414
|
"ion-backdrop/stop-propagation": {
|
|
293
415
|
"type": "boolean",
|
|
294
416
|
"description": "If `true`, the backdrop will stop propagation on tap.",
|
|
@@ -299,6 +421,15 @@
|
|
|
299
421
|
"description": "If `true`, the backdrop will can be clicked and will emit the `ionBackdropTap` event.",
|
|
300
422
|
"options": []
|
|
301
423
|
},
|
|
424
|
+
"ion-backdrop/theme": {
|
|
425
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
426
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
427
|
+
"options": [
|
|
428
|
+
"ios",
|
|
429
|
+
"md",
|
|
430
|
+
"ionic"
|
|
431
|
+
]
|
|
432
|
+
},
|
|
302
433
|
"ion-backdrop/visible": {
|
|
303
434
|
"type": "boolean",
|
|
304
435
|
"description": "If `true`, the backdrop will be visible.",
|
|
@@ -319,14 +450,55 @@
|
|
|
319
450
|
"warning"
|
|
320
451
|
]
|
|
321
452
|
},
|
|
453
|
+
"ion-badge/hue": {
|
|
454
|
+
"type": "\"bold\" | \"subtle\" | undefined",
|
|
455
|
+
"description": "Set to `\"bold\"` for a badge with vibrant, bold colors or to `\"subtle\"` for\na badge with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
|
|
456
|
+
"options": [
|
|
457
|
+
"bold",
|
|
458
|
+
"subtle"
|
|
459
|
+
]
|
|
460
|
+
},
|
|
322
461
|
"ion-badge/mode": {
|
|
323
462
|
"type": "\"ios\" | \"md\"",
|
|
324
|
-
"description": "The mode determines
|
|
463
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
325
464
|
"options": [
|
|
326
465
|
"ios",
|
|
327
466
|
"md"
|
|
328
467
|
]
|
|
329
468
|
},
|
|
469
|
+
"ion-badge/shape": {
|
|
470
|
+
"type": "\"round | rectangular\" | \"soft\" | undefined",
|
|
471
|
+
"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.",
|
|
472
|
+
"options": [
|
|
473
|
+
"soft"
|
|
474
|
+
]
|
|
475
|
+
},
|
|
476
|
+
"ion-badge/size": {
|
|
477
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
478
|
+
"description": "Set to `\"small\"` for a small badge.\nSet to `\"medium\"` for a medium badge.\nSet to `\"large\"` for a large badge, when it is empty (no text or icon).\n\nDefaults to `\"small\"` for the `ionic` theme, undefined for all other themes.",
|
|
479
|
+
"options": [
|
|
480
|
+
"large",
|
|
481
|
+
"medium",
|
|
482
|
+
"small"
|
|
483
|
+
]
|
|
484
|
+
},
|
|
485
|
+
"ion-badge/theme": {
|
|
486
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
487
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
488
|
+
"options": [
|
|
489
|
+
"ios",
|
|
490
|
+
"md",
|
|
491
|
+
"ionic"
|
|
492
|
+
]
|
|
493
|
+
},
|
|
494
|
+
"ion-badge/vertical": {
|
|
495
|
+
"type": "\"bottom\" | \"top\" | undefined",
|
|
496
|
+
"description": "Set to `\"top\"` to position the badge on top right absolute position of the parent element.\nSet to `\"bottom\"` to position the badge on bottom right absolute position of the parent element.",
|
|
497
|
+
"options": [
|
|
498
|
+
"bottom",
|
|
499
|
+
"top"
|
|
500
|
+
]
|
|
501
|
+
},
|
|
330
502
|
"ion-breadcrumb/active": {
|
|
331
503
|
"type": "boolean",
|
|
332
504
|
"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 +536,7 @@
|
|
|
364
536
|
},
|
|
365
537
|
"ion-breadcrumb/mode": {
|
|
366
538
|
"type": "\"ios\" | \"md\"",
|
|
367
|
-
"description": "The mode determines
|
|
539
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
368
540
|
"options": [
|
|
369
541
|
"ios",
|
|
370
542
|
"md"
|
|
@@ -399,6 +571,15 @@
|
|
|
399
571
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
400
572
|
"options": []
|
|
401
573
|
},
|
|
574
|
+
"ion-breadcrumb/theme": {
|
|
575
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
576
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
577
|
+
"options": [
|
|
578
|
+
"ios",
|
|
579
|
+
"md",
|
|
580
|
+
"ionic"
|
|
581
|
+
]
|
|
582
|
+
},
|
|
402
583
|
"ion-breadcrumbs/color": {
|
|
403
584
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
404
585
|
"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 +612,21 @@
|
|
|
431
612
|
},
|
|
432
613
|
"ion-breadcrumbs/mode": {
|
|
433
614
|
"type": "\"ios\" | \"md\"",
|
|
434
|
-
"description": "The mode determines
|
|
615
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
435
616
|
"options": [
|
|
436
617
|
"ios",
|
|
437
618
|
"md"
|
|
438
619
|
]
|
|
439
620
|
},
|
|
621
|
+
"ion-breadcrumbs/theme": {
|
|
622
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
623
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
624
|
+
"options": [
|
|
625
|
+
"ios",
|
|
626
|
+
"md",
|
|
627
|
+
"ionic"
|
|
628
|
+
]
|
|
629
|
+
},
|
|
440
630
|
"ion-button/button-type": {
|
|
441
631
|
"type": "string",
|
|
442
632
|
"description": "The type of button.",
|
|
@@ -477,7 +667,7 @@
|
|
|
477
667
|
},
|
|
478
668
|
"ion-button/fill": {
|
|
479
669
|
"type": "\"clear\" | \"default\" | \"outline\" | \"solid\" | undefined",
|
|
480
|
-
"description": "Set to `\"clear\"` for a transparent button that resembles a flat button, to `\"outline\"`\nfor a transparent button with a border, or to `\"solid\"` for a button with a filled background.\nThe default fill is `\"solid\"` except inside of a
|
|
670
|
+
"description": "Set to `\"clear\"` for a transparent button that resembles a flat button, to `\"outline\"`\nfor a transparent button with a border, or to `\"solid\"` for a button with a filled background.\nThe default fill is `\"solid\"` except when inside of a buttons or datetime component, where\nthe default fill is `\"clear\"`.",
|
|
481
671
|
"options": [
|
|
482
672
|
"clear",
|
|
483
673
|
"default",
|
|
@@ -497,7 +687,7 @@
|
|
|
497
687
|
},
|
|
498
688
|
"ion-button/mode": {
|
|
499
689
|
"type": "\"ios\" | \"md\"",
|
|
500
|
-
"description": "The mode determines
|
|
690
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
501
691
|
"options": [
|
|
502
692
|
"ios",
|
|
503
693
|
"md"
|
|
@@ -523,18 +713,21 @@
|
|
|
523
713
|
]
|
|
524
714
|
},
|
|
525
715
|
"ion-button/shape": {
|
|
526
|
-
"type": "\"round\" | undefined",
|
|
527
|
-
"description": "Set to `\"round\"` for a button with
|
|
716
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
717
|
+
"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
718
|
"options": [
|
|
529
|
-
"
|
|
719
|
+
"rectangular",
|
|
720
|
+
"round",
|
|
721
|
+
"soft"
|
|
530
722
|
]
|
|
531
723
|
},
|
|
532
724
|
"ion-button/size": {
|
|
533
|
-
"type": "\"default\" | \"large\" | \"small\" | undefined",
|
|
534
|
-
"description": "Set to `\"small\"` for a button with less height and padding, to `\"
|
|
725
|
+
"type": "\"default\" | \"large\" | \"medium\" | \"small\" | undefined",
|
|
726
|
+
"description": "Set to `\"small\"` for a button with less height and padding, to `\"medium\"`\nfor a button with the medium height and padding, or to `\"large\"` for a button\nwith more height and padding. By default the size is unset, unless the button\nis inside of an item, where the size is `\"small\"` by default. Set the size to\n`\"default\"` inside of an item to make it a standard size button.",
|
|
535
727
|
"options": [
|
|
536
728
|
"default",
|
|
537
729
|
"large",
|
|
730
|
+
"medium",
|
|
538
731
|
"small"
|
|
539
732
|
]
|
|
540
733
|
},
|
|
@@ -548,6 +741,15 @@
|
|
|
548
741
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
549
742
|
"options": []
|
|
550
743
|
},
|
|
744
|
+
"ion-button/theme": {
|
|
745
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
746
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
747
|
+
"options": [
|
|
748
|
+
"ios",
|
|
749
|
+
"md",
|
|
750
|
+
"ionic"
|
|
751
|
+
]
|
|
752
|
+
},
|
|
551
753
|
"ion-button/type": {
|
|
552
754
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
553
755
|
"description": "The type of the button.",
|
|
@@ -559,9 +761,26 @@
|
|
|
559
761
|
},
|
|
560
762
|
"ion-buttons/collapse": {
|
|
561
763
|
"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`
|
|
764
|
+
"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
765
|
"options": []
|
|
564
766
|
},
|
|
767
|
+
"ion-buttons/mode": {
|
|
768
|
+
"type": "\"ios\" | \"md\"",
|
|
769
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
770
|
+
"options": [
|
|
771
|
+
"ios",
|
|
772
|
+
"md"
|
|
773
|
+
]
|
|
774
|
+
},
|
|
775
|
+
"ion-buttons/theme": {
|
|
776
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
777
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
778
|
+
"options": [
|
|
779
|
+
"ios",
|
|
780
|
+
"md",
|
|
781
|
+
"ionic"
|
|
782
|
+
]
|
|
783
|
+
},
|
|
565
784
|
"ion-card/button": {
|
|
566
785
|
"type": "boolean",
|
|
567
786
|
"description": "If `true`, a button tag will be rendered and the card will be tappable.",
|
|
@@ -599,7 +818,7 @@
|
|
|
599
818
|
},
|
|
600
819
|
"ion-card/mode": {
|
|
601
820
|
"type": "\"ios\" | \"md\"",
|
|
602
|
-
"description": "The mode determines
|
|
821
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
603
822
|
"options": [
|
|
604
823
|
"ios",
|
|
605
824
|
"md"
|
|
@@ -624,11 +843,29 @@
|
|
|
624
843
|
"root"
|
|
625
844
|
]
|
|
626
845
|
},
|
|
846
|
+
"ion-card/shape": {
|
|
847
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
848
|
+
"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\"`.",
|
|
849
|
+
"options": [
|
|
850
|
+
"rectangular",
|
|
851
|
+
"round",
|
|
852
|
+
"soft"
|
|
853
|
+
]
|
|
854
|
+
},
|
|
627
855
|
"ion-card/target": {
|
|
628
856
|
"type": "string | undefined",
|
|
629
857
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
630
858
|
"options": []
|
|
631
859
|
},
|
|
860
|
+
"ion-card/theme": {
|
|
861
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
862
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
863
|
+
"options": [
|
|
864
|
+
"ios",
|
|
865
|
+
"md",
|
|
866
|
+
"ionic"
|
|
867
|
+
]
|
|
868
|
+
},
|
|
632
869
|
"ion-card/type": {
|
|
633
870
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
634
871
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -640,12 +877,21 @@
|
|
|
640
877
|
},
|
|
641
878
|
"ion-card-content/mode": {
|
|
642
879
|
"type": "\"ios\" | \"md\"",
|
|
643
|
-
"description": "The mode determines
|
|
880
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
644
881
|
"options": [
|
|
645
882
|
"ios",
|
|
646
883
|
"md"
|
|
647
884
|
]
|
|
648
885
|
},
|
|
886
|
+
"ion-card-content/theme": {
|
|
887
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
888
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
889
|
+
"options": [
|
|
890
|
+
"ios",
|
|
891
|
+
"md",
|
|
892
|
+
"ionic"
|
|
893
|
+
]
|
|
894
|
+
},
|
|
649
895
|
"ion-card-header/color": {
|
|
650
896
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
651
897
|
"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 +909,24 @@
|
|
|
663
909
|
},
|
|
664
910
|
"ion-card-header/mode": {
|
|
665
911
|
"type": "\"ios\" | \"md\"",
|
|
666
|
-
"description": "The mode determines
|
|
912
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
667
913
|
"options": [
|
|
668
914
|
"ios",
|
|
669
915
|
"md"
|
|
670
916
|
]
|
|
671
917
|
},
|
|
918
|
+
"ion-card-header/theme": {
|
|
919
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
920
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
921
|
+
"options": [
|
|
922
|
+
"ios",
|
|
923
|
+
"md",
|
|
924
|
+
"ionic"
|
|
925
|
+
]
|
|
926
|
+
},
|
|
672
927
|
"ion-card-header/translucent": {
|
|
673
928
|
"type": "boolean",
|
|
674
|
-
"description": "If `true`, the card header will be translucent.\nOnly applies when the
|
|
929
|
+
"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
930
|
"options": []
|
|
676
931
|
},
|
|
677
932
|
"ion-card-subtitle/color": {
|
|
@@ -691,12 +946,21 @@
|
|
|
691
946
|
},
|
|
692
947
|
"ion-card-subtitle/mode": {
|
|
693
948
|
"type": "\"ios\" | \"md\"",
|
|
694
|
-
"description": "The mode determines
|
|
949
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
695
950
|
"options": [
|
|
696
951
|
"ios",
|
|
697
952
|
"md"
|
|
698
953
|
]
|
|
699
954
|
},
|
|
955
|
+
"ion-card-subtitle/theme": {
|
|
956
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
957
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
958
|
+
"options": [
|
|
959
|
+
"ios",
|
|
960
|
+
"md",
|
|
961
|
+
"ionic"
|
|
962
|
+
]
|
|
963
|
+
},
|
|
700
964
|
"ion-card-title/color": {
|
|
701
965
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
702
966
|
"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 +978,21 @@
|
|
|
714
978
|
},
|
|
715
979
|
"ion-card-title/mode": {
|
|
716
980
|
"type": "\"ios\" | \"md\"",
|
|
717
|
-
"description": "The mode determines
|
|
981
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
718
982
|
"options": [
|
|
719
983
|
"ios",
|
|
720
984
|
"md"
|
|
721
985
|
]
|
|
722
986
|
},
|
|
987
|
+
"ion-card-title/theme": {
|
|
988
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
989
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
990
|
+
"options": [
|
|
991
|
+
"ios",
|
|
992
|
+
"md",
|
|
993
|
+
"ionic"
|
|
994
|
+
]
|
|
995
|
+
},
|
|
723
996
|
"ion-checkbox/alignment": {
|
|
724
997
|
"type": "\"center\" | \"start\" | undefined",
|
|
725
998
|
"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`.",
|
|
@@ -789,7 +1062,7 @@
|
|
|
789
1062
|
},
|
|
790
1063
|
"ion-checkbox/mode": {
|
|
791
1064
|
"type": "\"ios\" | \"md\"",
|
|
792
|
-
"description": "The mode determines
|
|
1065
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
793
1066
|
"options": [
|
|
794
1067
|
"ios",
|
|
795
1068
|
"md"
|
|
@@ -805,6 +1078,30 @@
|
|
|
805
1078
|
"description": "If true, screen readers will announce it as a required field. This property\nworks only for accessibility purposes, it will not prevent the form from\nsubmitting if the value is invalid.",
|
|
806
1079
|
"options": []
|
|
807
1080
|
},
|
|
1081
|
+
"ion-checkbox/shape": {
|
|
1082
|
+
"type": "\"rectangular\" | \"soft\" | undefined",
|
|
1083
|
+
"description": "Set to `\"soft\"` for a checkbox with more rounded corners. Only available when the theme is `\"ionic\"`.",
|
|
1084
|
+
"options": [
|
|
1085
|
+
"rectangular",
|
|
1086
|
+
"soft"
|
|
1087
|
+
]
|
|
1088
|
+
},
|
|
1089
|
+
"ion-checkbox/size": {
|
|
1090
|
+
"type": "\"small\" | undefined",
|
|
1091
|
+
"description": "Set to `\"small\"` for a checkbox with less height and padding.",
|
|
1092
|
+
"options": [
|
|
1093
|
+
"small"
|
|
1094
|
+
]
|
|
1095
|
+
},
|
|
1096
|
+
"ion-checkbox/theme": {
|
|
1097
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1098
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1099
|
+
"options": [
|
|
1100
|
+
"ios",
|
|
1101
|
+
"md",
|
|
1102
|
+
"ionic"
|
|
1103
|
+
]
|
|
1104
|
+
},
|
|
808
1105
|
"ion-checkbox/value": {
|
|
809
1106
|
"type": "any",
|
|
810
1107
|
"description": "The value of the checkbox does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a checkbox is analogous to the value of an `<input type=\"checkbox\">`,\nit's only used when the checkbox participates in a native `<form>`.",
|
|
@@ -830,9 +1127,17 @@
|
|
|
830
1127
|
"description": "If `true`, the user cannot interact with the chip.",
|
|
831
1128
|
"options": []
|
|
832
1129
|
},
|
|
1130
|
+
"ion-chip/hue": {
|
|
1131
|
+
"type": "\"bold\" | \"subtle\" | undefined",
|
|
1132
|
+
"description": "Set to `\"bold\"` for a chip with vibrant, bold colors or to `\"subtle\"` for\na chip with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
|
|
1133
|
+
"options": [
|
|
1134
|
+
"bold",
|
|
1135
|
+
"subtle"
|
|
1136
|
+
]
|
|
1137
|
+
},
|
|
833
1138
|
"ion-chip/mode": {
|
|
834
1139
|
"type": "\"ios\" | \"md\"",
|
|
835
|
-
"description": "The mode determines
|
|
1140
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
836
1141
|
"options": [
|
|
837
1142
|
"ios",
|
|
838
1143
|
"md"
|
|
@@ -843,6 +1148,40 @@
|
|
|
843
1148
|
"description": "Display an outline style button.",
|
|
844
1149
|
"options": []
|
|
845
1150
|
},
|
|
1151
|
+
"ion-chip/shape": {
|
|
1152
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
1153
|
+
"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.",
|
|
1154
|
+
"options": [
|
|
1155
|
+
"rectangular",
|
|
1156
|
+
"round",
|
|
1157
|
+
"soft"
|
|
1158
|
+
]
|
|
1159
|
+
},
|
|
1160
|
+
"ion-chip/size": {
|
|
1161
|
+
"type": "\"large\" | \"small\" | undefined",
|
|
1162
|
+
"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.",
|
|
1163
|
+
"options": [
|
|
1164
|
+
"large",
|
|
1165
|
+
"small"
|
|
1166
|
+
]
|
|
1167
|
+
},
|
|
1168
|
+
"ion-chip/theme": {
|
|
1169
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1170
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1171
|
+
"options": [
|
|
1172
|
+
"ios",
|
|
1173
|
+
"md",
|
|
1174
|
+
"ionic"
|
|
1175
|
+
]
|
|
1176
|
+
},
|
|
1177
|
+
"ion-col/mode": {
|
|
1178
|
+
"type": "\"ios\" | \"md\"",
|
|
1179
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1180
|
+
"options": [
|
|
1181
|
+
"ios",
|
|
1182
|
+
"md"
|
|
1183
|
+
]
|
|
1184
|
+
},
|
|
846
1185
|
"ion-col/offset": {
|
|
847
1186
|
"type": "string | undefined",
|
|
848
1187
|
"description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available.",
|
|
@@ -873,6 +1212,36 @@
|
|
|
873
1212
|
"description": "The amount to offset the column for xs screens, in terms of how many columns it should shift\nto the end of the total available.",
|
|
874
1213
|
"options": []
|
|
875
1214
|
},
|
|
1215
|
+
"ion-col/order": {
|
|
1216
|
+
"type": "string | undefined",
|
|
1217
|
+
"description": "The order of the column, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
1218
|
+
"options": []
|
|
1219
|
+
},
|
|
1220
|
+
"ion-col/order-lg": {
|
|
1221
|
+
"type": "string | undefined",
|
|
1222
|
+
"description": "The order of the column for lg screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
1223
|
+
"options": []
|
|
1224
|
+
},
|
|
1225
|
+
"ion-col/order-md": {
|
|
1226
|
+
"type": "string | undefined",
|
|
1227
|
+
"description": "The order of the column for md screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
1228
|
+
"options": []
|
|
1229
|
+
},
|
|
1230
|
+
"ion-col/order-sm": {
|
|
1231
|
+
"type": "string | undefined",
|
|
1232
|
+
"description": "The order of the column for sm screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
1233
|
+
"options": []
|
|
1234
|
+
},
|
|
1235
|
+
"ion-col/order-xl": {
|
|
1236
|
+
"type": "string | undefined",
|
|
1237
|
+
"description": "The order of the column for xl screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
1238
|
+
"options": []
|
|
1239
|
+
},
|
|
1240
|
+
"ion-col/order-xs": {
|
|
1241
|
+
"type": "string | undefined",
|
|
1242
|
+
"description": "The order of the column for xs screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
|
|
1243
|
+
"options": []
|
|
1244
|
+
},
|
|
876
1245
|
"ion-col/pull": {
|
|
877
1246
|
"type": "string | undefined",
|
|
878
1247
|
"description": "The amount to pull the column, in terms of how many columns it should shift to the start of\nthe total available.",
|
|
@@ -963,6 +1332,15 @@
|
|
|
963
1332
|
"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.",
|
|
964
1333
|
"options": []
|
|
965
1334
|
},
|
|
1335
|
+
"ion-col/theme": {
|
|
1336
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1337
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1338
|
+
"options": [
|
|
1339
|
+
"ios",
|
|
1340
|
+
"md",
|
|
1341
|
+
"ionic"
|
|
1342
|
+
]
|
|
1343
|
+
},
|
|
966
1344
|
"ion-content/color": {
|
|
967
1345
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
968
1346
|
"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).",
|
|
@@ -996,6 +1374,14 @@
|
|
|
996
1374
|
"description": "If `true`, the content will scroll behind the headers\nand footers. This effect can easily be seen by setting the toolbar\nto transparent.",
|
|
997
1375
|
"options": []
|
|
998
1376
|
},
|
|
1377
|
+
"ion-content/mode": {
|
|
1378
|
+
"type": "\"ios\" | \"md\"",
|
|
1379
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1380
|
+
"options": [
|
|
1381
|
+
"ios",
|
|
1382
|
+
"md"
|
|
1383
|
+
]
|
|
1384
|
+
},
|
|
999
1385
|
"ion-content/scroll-events": {
|
|
1000
1386
|
"type": "boolean",
|
|
1001
1387
|
"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`.",
|
|
@@ -1011,6 +1397,15 @@
|
|
|
1011
1397
|
"description": "If you want to disable the content scrolling in the Y axis, set this property to `false`.",
|
|
1012
1398
|
"options": []
|
|
1013
1399
|
},
|
|
1400
|
+
"ion-content/theme": {
|
|
1401
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1402
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1403
|
+
"options": [
|
|
1404
|
+
"ios",
|
|
1405
|
+
"md",
|
|
1406
|
+
"ionic"
|
|
1407
|
+
]
|
|
1408
|
+
},
|
|
1014
1409
|
"ion-datetime/cancel-text": {
|
|
1015
1410
|
"type": "string",
|
|
1016
1411
|
"description": "The text to display on the picker's cancel button.",
|
|
@@ -1108,7 +1503,7 @@
|
|
|
1108
1503
|
},
|
|
1109
1504
|
"ion-datetime/mode": {
|
|
1110
1505
|
"type": "\"ios\" | \"md\"",
|
|
1111
|
-
"description": "The mode determines
|
|
1506
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1112
1507
|
"options": [
|
|
1113
1508
|
"ios",
|
|
1114
1509
|
"md"
|
|
@@ -1185,6 +1580,15 @@
|
|
|
1185
1580
|
"fixed"
|
|
1186
1581
|
]
|
|
1187
1582
|
},
|
|
1583
|
+
"ion-datetime/theme": {
|
|
1584
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1585
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1586
|
+
"options": [
|
|
1587
|
+
"ios",
|
|
1588
|
+
"md",
|
|
1589
|
+
"ionic"
|
|
1590
|
+
]
|
|
1591
|
+
},
|
|
1188
1592
|
"ion-datetime/title-selected-dates-formatter": {
|
|
1189
1593
|
"type": "((selectedDates: string[]) => string) | undefined",
|
|
1190
1594
|
"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.",
|
|
@@ -1227,12 +1631,39 @@
|
|
|
1227
1631
|
},
|
|
1228
1632
|
"ion-datetime-button/mode": {
|
|
1229
1633
|
"type": "\"ios\" | \"md\"",
|
|
1230
|
-
"description": "The mode determines
|
|
1634
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1231
1635
|
"options": [
|
|
1232
1636
|
"ios",
|
|
1233
1637
|
"md"
|
|
1234
1638
|
]
|
|
1235
1639
|
},
|
|
1640
|
+
"ion-datetime-button/theme": {
|
|
1641
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1642
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1643
|
+
"options": [
|
|
1644
|
+
"ios",
|
|
1645
|
+
"md",
|
|
1646
|
+
"ionic"
|
|
1647
|
+
]
|
|
1648
|
+
},
|
|
1649
|
+
"ion-divider/inset": {
|
|
1650
|
+
"type": "boolean",
|
|
1651
|
+
"description": "If `true`, the divider will have horizontal margins\nBy default, it's `false`",
|
|
1652
|
+
"options": []
|
|
1653
|
+
},
|
|
1654
|
+
"ion-divider/spacing": {
|
|
1655
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxlarge\" | \"xxsmall\" | undefined",
|
|
1656
|
+
"description": "Set to `\"xxsmall\"` for the smallest spacing.\nSet to \"xsmall\" for very small spacing.\nSet to `\"small\"` for small spacing.\nSet to \"medium\" for medium spacing.\nSet to \"large\" for large spacing.\nSet to `\"xlarge\"` for the largest spacing.\n\nDefaults to `\"medium\"`.",
|
|
1657
|
+
"options": [
|
|
1658
|
+
"large",
|
|
1659
|
+
"medium",
|
|
1660
|
+
"small",
|
|
1661
|
+
"xlarge",
|
|
1662
|
+
"xsmall",
|
|
1663
|
+
"xxlarge",
|
|
1664
|
+
"xxsmall"
|
|
1665
|
+
]
|
|
1666
|
+
},
|
|
1236
1667
|
"ion-fab/activated": {
|
|
1237
1668
|
"type": "boolean",
|
|
1238
1669
|
"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.",
|
|
@@ -1252,9 +1683,26 @@
|
|
|
1252
1683
|
"start"
|
|
1253
1684
|
]
|
|
1254
1685
|
},
|
|
1255
|
-
"ion-fab/
|
|
1256
|
-
"type": "\"
|
|
1257
|
-
"description": "
|
|
1686
|
+
"ion-fab/mode": {
|
|
1687
|
+
"type": "\"ios\" | \"md\"",
|
|
1688
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1689
|
+
"options": [
|
|
1690
|
+
"ios",
|
|
1691
|
+
"md"
|
|
1692
|
+
]
|
|
1693
|
+
},
|
|
1694
|
+
"ion-fab/theme": {
|
|
1695
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1696
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1697
|
+
"options": [
|
|
1698
|
+
"ios",
|
|
1699
|
+
"md",
|
|
1700
|
+
"ionic"
|
|
1701
|
+
]
|
|
1702
|
+
},
|
|
1703
|
+
"ion-fab/vertical": {
|
|
1704
|
+
"type": "\"bottom\" | \"center\" | \"top\" | undefined",
|
|
1705
|
+
"description": "Where to align the fab vertically in the viewport.",
|
|
1258
1706
|
"options": [
|
|
1259
1707
|
"bottom",
|
|
1260
1708
|
"center",
|
|
@@ -1267,7 +1715,7 @@
|
|
|
1267
1715
|
"options": []
|
|
1268
1716
|
},
|
|
1269
1717
|
"ion-fab-button/close-icon": {
|
|
1270
|
-
"type": "string",
|
|
1718
|
+
"type": "string | undefined",
|
|
1271
1719
|
"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.",
|
|
1272
1720
|
"options": []
|
|
1273
1721
|
},
|
|
@@ -1303,7 +1751,7 @@
|
|
|
1303
1751
|
},
|
|
1304
1752
|
"ion-fab-button/mode": {
|
|
1305
1753
|
"type": "\"ios\" | \"md\"",
|
|
1306
|
-
"description": "The mode determines
|
|
1754
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1307
1755
|
"options": [
|
|
1308
1756
|
"ios",
|
|
1309
1757
|
"md"
|
|
@@ -1345,9 +1793,18 @@
|
|
|
1345
1793
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1346
1794
|
"options": []
|
|
1347
1795
|
},
|
|
1796
|
+
"ion-fab-button/theme": {
|
|
1797
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1798
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1799
|
+
"options": [
|
|
1800
|
+
"ios",
|
|
1801
|
+
"md",
|
|
1802
|
+
"ionic"
|
|
1803
|
+
]
|
|
1804
|
+
},
|
|
1348
1805
|
"ion-fab-button/translucent": {
|
|
1349
1806
|
"type": "boolean",
|
|
1350
|
-
"description": "If `true`, the fab button will be translucent.\nOnly applies when the
|
|
1807
|
+
"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).",
|
|
1351
1808
|
"options": []
|
|
1352
1809
|
},
|
|
1353
1810
|
"ion-fab-button/type": {
|
|
@@ -1364,6 +1821,14 @@
|
|
|
1364
1821
|
"description": "If `true`, the fab list will show all fab buttons in the list.",
|
|
1365
1822
|
"options": []
|
|
1366
1823
|
},
|
|
1824
|
+
"ion-fab-list/mode": {
|
|
1825
|
+
"type": "\"ios\" | \"md\"",
|
|
1826
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1827
|
+
"options": [
|
|
1828
|
+
"ios",
|
|
1829
|
+
"md"
|
|
1830
|
+
]
|
|
1831
|
+
},
|
|
1367
1832
|
"ion-fab-list/side": {
|
|
1368
1833
|
"type": "\"bottom\" | \"end\" | \"start\" | \"top\"",
|
|
1369
1834
|
"description": "The side the fab list will show on relative to the main fab button.",
|
|
@@ -1374,50 +1839,144 @@
|
|
|
1374
1839
|
"top"
|
|
1375
1840
|
]
|
|
1376
1841
|
},
|
|
1842
|
+
"ion-fab-list/theme": {
|
|
1843
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1844
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1845
|
+
"options": [
|
|
1846
|
+
"ios",
|
|
1847
|
+
"md",
|
|
1848
|
+
"ionic"
|
|
1849
|
+
]
|
|
1850
|
+
},
|
|
1377
1851
|
"ion-footer/collapse": {
|
|
1378
|
-
"type": "\"fade\" | undefined",
|
|
1379
|
-
"description": "Describes the scroll effect that will be applied to the footer.\
|
|
1852
|
+
"type": "\"fade\" | \"hide\" | undefined",
|
|
1853
|
+
"description": "Describes the scroll effect that will be applied to the footer.\n\n- `\"fade\"` only applies when the theme is `\"ios\"`.\n- `\"hide\"` applies to all themes (`\"ios\"`, `\"md\"`, and `\"ionic\"`): the footer\n slides down and fades out after cumulative downward scrolling on the page content,\n and returns on any upward scroll (same behavior as `ion-header[collapse=\"hide\"]`).",
|
|
1380
1854
|
"options": [
|
|
1381
|
-
"fade"
|
|
1855
|
+
"fade",
|
|
1856
|
+
"hide"
|
|
1382
1857
|
]
|
|
1383
1858
|
},
|
|
1384
1859
|
"ion-footer/mode": {
|
|
1385
1860
|
"type": "\"ios\" | \"md\"",
|
|
1386
|
-
"description": "The mode determines
|
|
1861
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1387
1862
|
"options": [
|
|
1388
1863
|
"ios",
|
|
1389
1864
|
"md"
|
|
1390
1865
|
]
|
|
1391
1866
|
},
|
|
1867
|
+
"ion-footer/theme": {
|
|
1868
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1869
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1870
|
+
"options": [
|
|
1871
|
+
"ios",
|
|
1872
|
+
"md",
|
|
1873
|
+
"ionic"
|
|
1874
|
+
]
|
|
1875
|
+
},
|
|
1392
1876
|
"ion-footer/translucent": {
|
|
1393
1877
|
"type": "boolean",
|
|
1394
|
-
"description": "If `true`, the footer will be translucent.\nOnly applies when the
|
|
1878
|
+
"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.",
|
|
1879
|
+
"options": []
|
|
1880
|
+
},
|
|
1881
|
+
"ion-gallery/columns": {
|
|
1882
|
+
"type": "GalleryBreakpoints<string | number> | number | string",
|
|
1883
|
+
"description": "The number of columns to display. Can be set as a number or an object of\nbreakpoint values (e.g. `{ xs: 2, sm: 3, md: 4 }`).",
|
|
1395
1884
|
"options": []
|
|
1396
1885
|
},
|
|
1886
|
+
"ion-gallery/gap": {
|
|
1887
|
+
"type": "GalleryBreakpoints<string | number> | number | string",
|
|
1888
|
+
"description": "The space between gallery items. Accepts valid CSS [length-percentage](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Values/length-percentage)\nvalues like `16px`, `1rem`, `20%`, math functions like `calc(10px + 20%)`,\nor numbers (treated as pixel values). Can also be set as a breakpoint map\n(e.g. `{ xs: '8px', sm: '1rem', md: '24px' }`). Does not accept\nspace-separated values or CSS keyword values like `inherit`, `auto`, etc.",
|
|
1889
|
+
"options": []
|
|
1890
|
+
},
|
|
1891
|
+
"ion-gallery/layout": {
|
|
1892
|
+
"type": "\"masonry\" | \"uniform\"",
|
|
1893
|
+
"description": "The visual layout of the gallery. When `uniform`, rows take up the height\nof the tallest item and are spaced evenly across the gallery. Additionally,\nitems will have an aspect ratio of 1/1, forcing them to be square unless a\nheight is explicitly set. When `masonry`, items will be positioned under each\nother with only the specified gap between them.",
|
|
1894
|
+
"options": [
|
|
1895
|
+
"masonry",
|
|
1896
|
+
"uniform"
|
|
1897
|
+
]
|
|
1898
|
+
},
|
|
1899
|
+
"ion-gallery/mode": {
|
|
1900
|
+
"type": "\"ios\" | \"md\"",
|
|
1901
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1902
|
+
"options": [
|
|
1903
|
+
"ios",
|
|
1904
|
+
"md"
|
|
1905
|
+
]
|
|
1906
|
+
},
|
|
1907
|
+
"ion-gallery/order": {
|
|
1908
|
+
"type": "\"best-fit\" | \"sequential\" | undefined",
|
|
1909
|
+
"description": "The order in which items are positioned. Only applies when layout is\n`masonry`. When `sequential`, items are positioned in the order they are\nplaced in the DOM. When `best-fit`, items are positioned under the column\nwith the most available space. Defaults to `sequential` when layout is\n`masonry` and `order` is not explicitly set.",
|
|
1910
|
+
"options": [
|
|
1911
|
+
"best-fit",
|
|
1912
|
+
"sequential"
|
|
1913
|
+
]
|
|
1914
|
+
},
|
|
1915
|
+
"ion-gallery/theme": {
|
|
1916
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1917
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1918
|
+
"options": [
|
|
1919
|
+
"ios",
|
|
1920
|
+
"md",
|
|
1921
|
+
"ionic"
|
|
1922
|
+
]
|
|
1923
|
+
},
|
|
1397
1924
|
"ion-grid/fixed": {
|
|
1398
1925
|
"type": "boolean",
|
|
1399
1926
|
"description": "If `true`, the grid will have a fixed width based on the screen size.",
|
|
1400
1927
|
"options": []
|
|
1401
1928
|
},
|
|
1929
|
+
"ion-grid/mode": {
|
|
1930
|
+
"type": "\"ios\" | \"md\"",
|
|
1931
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1932
|
+
"options": [
|
|
1933
|
+
"ios",
|
|
1934
|
+
"md"
|
|
1935
|
+
]
|
|
1936
|
+
},
|
|
1937
|
+
"ion-grid/theme": {
|
|
1938
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1939
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1940
|
+
"options": [
|
|
1941
|
+
"ios",
|
|
1942
|
+
"md",
|
|
1943
|
+
"ionic"
|
|
1944
|
+
]
|
|
1945
|
+
},
|
|
1402
1946
|
"ion-header/collapse": {
|
|
1403
|
-
"type": "\"condense\" | \"fade\" | undefined",
|
|
1404
|
-
"description": "Describes the scroll effect that will be applied to the header.\
|
|
1947
|
+
"type": "\"condense\" | \"fade\" | \"hide\" | undefined",
|
|
1948
|
+
"description": "Describes the scroll effect that will be applied to the header.\n\n- `\"condense\"` and `\"fade\"` only apply when the theme is `\"ios\"`.\n Typically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles).\n- `\"hide\"` applies to all themes (`\"ios\"`, `\"md\"`, and `\"ionic\"`): the header\n slides up and fades out after cumulative downward scrolling on the page content,\n and returns on any upward scroll.",
|
|
1405
1949
|
"options": [
|
|
1406
1950
|
"condense",
|
|
1407
|
-
"fade"
|
|
1951
|
+
"fade",
|
|
1952
|
+
"hide"
|
|
1408
1953
|
]
|
|
1409
1954
|
},
|
|
1955
|
+
"ion-header/divider": {
|
|
1956
|
+
"type": "boolean",
|
|
1957
|
+
"description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes",
|
|
1958
|
+
"options": []
|
|
1959
|
+
},
|
|
1410
1960
|
"ion-header/mode": {
|
|
1411
1961
|
"type": "\"ios\" | \"md\"",
|
|
1412
|
-
"description": "The mode determines
|
|
1962
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1413
1963
|
"options": [
|
|
1414
1964
|
"ios",
|
|
1415
1965
|
"md"
|
|
1416
1966
|
]
|
|
1417
1967
|
},
|
|
1968
|
+
"ion-header/theme": {
|
|
1969
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1970
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1971
|
+
"options": [
|
|
1972
|
+
"ios",
|
|
1973
|
+
"md",
|
|
1974
|
+
"ionic"
|
|
1975
|
+
]
|
|
1976
|
+
},
|
|
1418
1977
|
"ion-header/translucent": {
|
|
1419
1978
|
"type": "boolean",
|
|
1420
|
-
"description": "If `true`, the header will be translucent.\nOnly applies when the
|
|
1979
|
+
"description": "If `true`, the header will be translucent.\nOnly applies when the theme is `\"ios\"` or `\"ionic\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).\n\nNote: In order to scroll content behind the header, the `fullscreen`\nattribute needs to be set on the content.",
|
|
1421
1980
|
"options": []
|
|
1422
1981
|
},
|
|
1423
1982
|
"ion-img/alt": {
|
|
@@ -1425,16 +1984,41 @@
|
|
|
1425
1984
|
"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.",
|
|
1426
1985
|
"options": []
|
|
1427
1986
|
},
|
|
1987
|
+
"ion-img/mode": {
|
|
1988
|
+
"type": "\"ios\" | \"md\"",
|
|
1989
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1990
|
+
"options": [
|
|
1991
|
+
"ios",
|
|
1992
|
+
"md"
|
|
1993
|
+
]
|
|
1994
|
+
},
|
|
1428
1995
|
"ion-img/src": {
|
|
1429
1996
|
"type": "string | undefined",
|
|
1430
1997
|
"description": "The image URL. This attribute is mandatory for the `<img>` element.",
|
|
1431
1998
|
"options": []
|
|
1432
1999
|
},
|
|
2000
|
+
"ion-img/theme": {
|
|
2001
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2002
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2003
|
+
"options": [
|
|
2004
|
+
"ios",
|
|
2005
|
+
"md",
|
|
2006
|
+
"ionic"
|
|
2007
|
+
]
|
|
2008
|
+
},
|
|
1433
2009
|
"ion-infinite-scroll/disabled": {
|
|
1434
2010
|
"type": "boolean",
|
|
1435
2011
|
"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.",
|
|
1436
2012
|
"options": []
|
|
1437
2013
|
},
|
|
2014
|
+
"ion-infinite-scroll/mode": {
|
|
2015
|
+
"type": "\"ios\" | \"md\"",
|
|
2016
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2017
|
+
"options": [
|
|
2018
|
+
"ios",
|
|
2019
|
+
"md"
|
|
2020
|
+
]
|
|
2021
|
+
},
|
|
1438
2022
|
"ion-infinite-scroll/position": {
|
|
1439
2023
|
"type": "\"bottom\" | \"top\"",
|
|
1440
2024
|
"description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
|
|
@@ -1443,6 +2027,20 @@
|
|
|
1443
2027
|
"top"
|
|
1444
2028
|
]
|
|
1445
2029
|
},
|
|
2030
|
+
"ion-infinite-scroll/preserve-rerender-scroll-position": {
|
|
2031
|
+
"type": "boolean",
|
|
2032
|
+
"description": "If `true`, the infinite scroll will preserve the scroll position\nwhen the content is re-rendered. This is useful when the content is\nre-rendered with new keys, and the scroll position should be preserved.",
|
|
2033
|
+
"options": []
|
|
2034
|
+
},
|
|
2035
|
+
"ion-infinite-scroll/theme": {
|
|
2036
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2037
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2038
|
+
"options": [
|
|
2039
|
+
"ios",
|
|
2040
|
+
"md",
|
|
2041
|
+
"ionic"
|
|
2042
|
+
]
|
|
2043
|
+
},
|
|
1446
2044
|
"ion-infinite-scroll/threshold": {
|
|
1447
2045
|
"type": "string",
|
|
1448
2046
|
"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.",
|
|
@@ -1468,6 +2066,23 @@
|
|
|
1468
2066
|
"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.",
|
|
1469
2067
|
"options": []
|
|
1470
2068
|
},
|
|
2069
|
+
"ion-infinite-scroll-content/mode": {
|
|
2070
|
+
"type": "\"ios\" | \"md\"",
|
|
2071
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2072
|
+
"options": [
|
|
2073
|
+
"ios",
|
|
2074
|
+
"md"
|
|
2075
|
+
]
|
|
2076
|
+
},
|
|
2077
|
+
"ion-infinite-scroll-content/theme": {
|
|
2078
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2079
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2080
|
+
"options": [
|
|
2081
|
+
"ios",
|
|
2082
|
+
"md",
|
|
2083
|
+
"ionic"
|
|
2084
|
+
]
|
|
2085
|
+
},
|
|
1471
2086
|
"ion-input/autocapitalize": {
|
|
1472
2087
|
"type": "string",
|
|
1473
2088
|
"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\"`.",
|
|
@@ -1534,9 +2149,12 @@
|
|
|
1534
2149
|
]
|
|
1535
2150
|
},
|
|
1536
2151
|
"ion-input/autocorrect": {
|
|
1537
|
-
"type": "
|
|
2152
|
+
"type": "\"off\" | \"on\"",
|
|
1538
2153
|
"description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
|
|
1539
|
-
"options": [
|
|
2154
|
+
"options": [
|
|
2155
|
+
"off",
|
|
2156
|
+
"on"
|
|
2157
|
+
]
|
|
1540
2158
|
},
|
|
1541
2159
|
"ion-input/autofocus": {
|
|
1542
2160
|
"type": "boolean",
|
|
@@ -1613,7 +2231,7 @@
|
|
|
1613
2231
|
},
|
|
1614
2232
|
"ion-input/fill": {
|
|
1615
2233
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
1616
|
-
"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
|
|
2234
|
+
"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\"`.",
|
|
1617
2235
|
"options": [
|
|
1618
2236
|
"outline",
|
|
1619
2237
|
"solid"
|
|
@@ -1644,8 +2262,8 @@
|
|
|
1644
2262
|
"options": []
|
|
1645
2263
|
},
|
|
1646
2264
|
"ion-input/label-placement": {
|
|
1647
|
-
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\"",
|
|
1648
|
-
"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 (\"...\").",
|
|
2265
|
+
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\" | undefined",
|
|
2266
|
+
"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.",
|
|
1649
2267
|
"options": [
|
|
1650
2268
|
"end",
|
|
1651
2269
|
"fixed",
|
|
@@ -1676,7 +2294,7 @@
|
|
|
1676
2294
|
},
|
|
1677
2295
|
"ion-input/mode": {
|
|
1678
2296
|
"type": "\"ios\" | \"md\"",
|
|
1679
|
-
"description": "The mode determines
|
|
2297
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1680
2298
|
"options": [
|
|
1681
2299
|
"ios",
|
|
1682
2300
|
"md"
|
|
@@ -1713,10 +2331,21 @@
|
|
|
1713
2331
|
"options": []
|
|
1714
2332
|
},
|
|
1715
2333
|
"ion-input/shape": {
|
|
1716
|
-
"type": "\"round\" | undefined",
|
|
1717
|
-
"description": "
|
|
2334
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2335
|
+
"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\"`.",
|
|
1718
2336
|
"options": [
|
|
1719
|
-
"
|
|
2337
|
+
"rectangular",
|
|
2338
|
+
"round",
|
|
2339
|
+
"soft"
|
|
2340
|
+
]
|
|
2341
|
+
},
|
|
2342
|
+
"ion-input/size": {
|
|
2343
|
+
"type": "\"large\" | \"medium\" | \"xlarge\" | undefined",
|
|
2344
|
+
"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.",
|
|
2345
|
+
"options": [
|
|
2346
|
+
"large",
|
|
2347
|
+
"medium",
|
|
2348
|
+
"xlarge"
|
|
1720
2349
|
]
|
|
1721
2350
|
},
|
|
1722
2351
|
"ion-input/spellcheck": {
|
|
@@ -1729,6 +2358,15 @@
|
|
|
1729
2358
|
"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.",
|
|
1730
2359
|
"options": []
|
|
1731
2360
|
},
|
|
2361
|
+
"ion-input/theme": {
|
|
2362
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2363
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2364
|
+
"options": [
|
|
2365
|
+
"ios",
|
|
2366
|
+
"md",
|
|
2367
|
+
"ionic"
|
|
2368
|
+
]
|
|
2369
|
+
},
|
|
1732
2370
|
"ion-input/type": {
|
|
1733
2371
|
"type": "\"date\" | \"datetime-local\" | \"email\" | \"month\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"time\" | \"url\" | \"week\"",
|
|
1734
2372
|
"description": "The type of control to display. The default type is text.",
|
|
@@ -1804,6 +2442,14 @@
|
|
|
1804
2442
|
"description": "The number of input boxes to display.",
|
|
1805
2443
|
"options": []
|
|
1806
2444
|
},
|
|
2445
|
+
"ion-input-otp/mode": {
|
|
2446
|
+
"type": "\"ios\" | \"md\"",
|
|
2447
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2448
|
+
"options": [
|
|
2449
|
+
"ios",
|
|
2450
|
+
"md"
|
|
2451
|
+
]
|
|
2452
|
+
},
|
|
1807
2453
|
"ion-input-otp/pattern": {
|
|
1808
2454
|
"type": "string | undefined",
|
|
1809
2455
|
"description": "A regex pattern string for allowed characters. Defaults based on type.\n\nFor numbers (`type=\"number\"`): `\"[\\p{N}]\"`\nFor text (`type=\"text\"`): `\"[\\p{L}\\p{N}]\"`",
|
|
@@ -1837,6 +2483,15 @@
|
|
|
1837
2483
|
"small"
|
|
1838
2484
|
]
|
|
1839
2485
|
},
|
|
2486
|
+
"ion-input-otp/theme": {
|
|
2487
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2488
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2489
|
+
"options": [
|
|
2490
|
+
"ios",
|
|
2491
|
+
"md",
|
|
2492
|
+
"ionic"
|
|
2493
|
+
]
|
|
2494
|
+
},
|
|
1840
2495
|
"ion-input-otp/type": {
|
|
1841
2496
|
"type": "\"number\" | \"text\"",
|
|
1842
2497
|
"description": "The type of input allowed in the input boxes.",
|
|
@@ -1905,11 +2560,11 @@
|
|
|
1905
2560
|
},
|
|
1906
2561
|
"ion-item/detail": {
|
|
1907
2562
|
"type": "boolean | undefined",
|
|
1908
|
-
"description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `
|
|
2563
|
+
"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.",
|
|
1909
2564
|
"options": []
|
|
1910
2565
|
},
|
|
1911
2566
|
"ion-item/detail-icon": {
|
|
1912
|
-
"type": "string",
|
|
2567
|
+
"type": "string | undefined",
|
|
1913
2568
|
"description": "The icon to use when `detail` is set to `true`.",
|
|
1914
2569
|
"options": []
|
|
1915
2570
|
},
|
|
@@ -1939,7 +2594,7 @@
|
|
|
1939
2594
|
},
|
|
1940
2595
|
"ion-item/mode": {
|
|
1941
2596
|
"type": "\"ios\" | \"md\"",
|
|
1942
|
-
"description": "The mode determines
|
|
2597
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1943
2598
|
"options": [
|
|
1944
2599
|
"ios",
|
|
1945
2600
|
"md"
|
|
@@ -1969,6 +2624,15 @@
|
|
|
1969
2624
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1970
2625
|
"options": []
|
|
1971
2626
|
},
|
|
2627
|
+
"ion-item/theme": {
|
|
2628
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2629
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2630
|
+
"options": [
|
|
2631
|
+
"ios",
|
|
2632
|
+
"md",
|
|
2633
|
+
"ionic"
|
|
2634
|
+
]
|
|
2635
|
+
},
|
|
1972
2636
|
"ion-item/type": {
|
|
1973
2637
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
1974
2638
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -1995,7 +2659,7 @@
|
|
|
1995
2659
|
},
|
|
1996
2660
|
"ion-item-divider/mode": {
|
|
1997
2661
|
"type": "\"ios\" | \"md\"",
|
|
1998
|
-
"description": "The mode determines
|
|
2662
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1999
2663
|
"options": [
|
|
2000
2664
|
"ios",
|
|
2001
2665
|
"md"
|
|
@@ -2006,6 +2670,32 @@
|
|
|
2006
2670
|
"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",
|
|
2007
2671
|
"options": []
|
|
2008
2672
|
},
|
|
2673
|
+
"ion-item-divider/theme": {
|
|
2674
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2675
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2676
|
+
"options": [
|
|
2677
|
+
"ios",
|
|
2678
|
+
"md",
|
|
2679
|
+
"ionic"
|
|
2680
|
+
]
|
|
2681
|
+
},
|
|
2682
|
+
"ion-item-group/mode": {
|
|
2683
|
+
"type": "\"ios\" | \"md\"",
|
|
2684
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2685
|
+
"options": [
|
|
2686
|
+
"ios",
|
|
2687
|
+
"md"
|
|
2688
|
+
]
|
|
2689
|
+
},
|
|
2690
|
+
"ion-item-group/theme": {
|
|
2691
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2692
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2693
|
+
"options": [
|
|
2694
|
+
"ios",
|
|
2695
|
+
"md",
|
|
2696
|
+
"ionic"
|
|
2697
|
+
]
|
|
2698
|
+
},
|
|
2009
2699
|
"ion-item-option/color": {
|
|
2010
2700
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2011
2701
|
"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).",
|
|
@@ -2041,9 +2731,17 @@
|
|
|
2041
2731
|
"description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered.",
|
|
2042
2732
|
"options": []
|
|
2043
2733
|
},
|
|
2734
|
+
"ion-item-option/hue": {
|
|
2735
|
+
"type": "\"bold\" | \"subtle\" | undefined",
|
|
2736
|
+
"description": "Set to `\"bold\"` for an option with vibrant, bold colors or to `\"subtle\"` for\nan option with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
|
|
2737
|
+
"options": [
|
|
2738
|
+
"bold",
|
|
2739
|
+
"subtle"
|
|
2740
|
+
]
|
|
2741
|
+
},
|
|
2044
2742
|
"ion-item-option/mode": {
|
|
2045
2743
|
"type": "\"ios\" | \"md\"",
|
|
2046
|
-
"description": "The mode determines
|
|
2744
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2047
2745
|
"options": [
|
|
2048
2746
|
"ios",
|
|
2049
2747
|
"md"
|
|
@@ -2054,11 +2752,29 @@
|
|
|
2054
2752
|
"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).",
|
|
2055
2753
|
"options": []
|
|
2056
2754
|
},
|
|
2755
|
+
"ion-item-option/shape": {
|
|
2756
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2757
|
+
"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.",
|
|
2758
|
+
"options": [
|
|
2759
|
+
"rectangular",
|
|
2760
|
+
"round",
|
|
2761
|
+
"soft"
|
|
2762
|
+
]
|
|
2763
|
+
},
|
|
2057
2764
|
"ion-item-option/target": {
|
|
2058
2765
|
"type": "string | undefined",
|
|
2059
2766
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
2060
2767
|
"options": []
|
|
2061
2768
|
},
|
|
2769
|
+
"ion-item-option/theme": {
|
|
2770
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2771
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2772
|
+
"options": [
|
|
2773
|
+
"ios",
|
|
2774
|
+
"md",
|
|
2775
|
+
"ionic"
|
|
2776
|
+
]
|
|
2777
|
+
},
|
|
2062
2778
|
"ion-item-option/type": {
|
|
2063
2779
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
2064
2780
|
"description": "The type of the button.",
|
|
@@ -2068,6 +2784,14 @@
|
|
|
2068
2784
|
"submit"
|
|
2069
2785
|
]
|
|
2070
2786
|
},
|
|
2787
|
+
"ion-item-options/mode": {
|
|
2788
|
+
"type": "\"ios\" | \"md\"",
|
|
2789
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2790
|
+
"options": [
|
|
2791
|
+
"ios",
|
|
2792
|
+
"md"
|
|
2793
|
+
]
|
|
2794
|
+
},
|
|
2071
2795
|
"ion-item-options/side": {
|
|
2072
2796
|
"type": "\"end\" | \"start\"",
|
|
2073
2797
|
"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.",
|
|
@@ -2076,11 +2800,37 @@
|
|
|
2076
2800
|
"start"
|
|
2077
2801
|
]
|
|
2078
2802
|
},
|
|
2803
|
+
"ion-item-options/theme": {
|
|
2804
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2805
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2806
|
+
"options": [
|
|
2807
|
+
"ios",
|
|
2808
|
+
"md",
|
|
2809
|
+
"ionic"
|
|
2810
|
+
]
|
|
2811
|
+
},
|
|
2079
2812
|
"ion-item-sliding/disabled": {
|
|
2080
2813
|
"type": "boolean",
|
|
2081
2814
|
"description": "If `true`, the user cannot interact with the sliding item.",
|
|
2082
2815
|
"options": []
|
|
2083
2816
|
},
|
|
2817
|
+
"ion-item-sliding/mode": {
|
|
2818
|
+
"type": "\"ios\" | \"md\"",
|
|
2819
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2820
|
+
"options": [
|
|
2821
|
+
"ios",
|
|
2822
|
+
"md"
|
|
2823
|
+
]
|
|
2824
|
+
},
|
|
2825
|
+
"ion-item-sliding/theme": {
|
|
2826
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2827
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2828
|
+
"options": [
|
|
2829
|
+
"ios",
|
|
2830
|
+
"md",
|
|
2831
|
+
"ionic"
|
|
2832
|
+
]
|
|
2833
|
+
},
|
|
2084
2834
|
"ion-label/color": {
|
|
2085
2835
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2086
2836
|
"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).",
|
|
@@ -2098,7 +2848,7 @@
|
|
|
2098
2848
|
},
|
|
2099
2849
|
"ion-label/mode": {
|
|
2100
2850
|
"type": "\"ios\" | \"md\"",
|
|
2101
|
-
"description": "The mode determines
|
|
2851
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2102
2852
|
"options": [
|
|
2103
2853
|
"ios",
|
|
2104
2854
|
"md"
|
|
@@ -2113,6 +2863,15 @@
|
|
|
2113
2863
|
"stacked"
|
|
2114
2864
|
]
|
|
2115
2865
|
},
|
|
2866
|
+
"ion-label/theme": {
|
|
2867
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2868
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2869
|
+
"options": [
|
|
2870
|
+
"ios",
|
|
2871
|
+
"md",
|
|
2872
|
+
"ionic"
|
|
2873
|
+
]
|
|
2874
|
+
},
|
|
2116
2875
|
"ion-list/inset": {
|
|
2117
2876
|
"type": "boolean",
|
|
2118
2877
|
"description": "If `true`, the list will have margin around it and rounded corners.",
|
|
@@ -2129,12 +2888,30 @@
|
|
|
2129
2888
|
},
|
|
2130
2889
|
"ion-list/mode": {
|
|
2131
2890
|
"type": "\"ios\" | \"md\"",
|
|
2132
|
-
"description": "The mode determines
|
|
2891
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2133
2892
|
"options": [
|
|
2134
2893
|
"ios",
|
|
2135
2894
|
"md"
|
|
2136
2895
|
]
|
|
2137
2896
|
},
|
|
2897
|
+
"ion-list/shape": {
|
|
2898
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2899
|
+
"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.",
|
|
2900
|
+
"options": [
|
|
2901
|
+
"rectangular",
|
|
2902
|
+
"round",
|
|
2903
|
+
"soft"
|
|
2904
|
+
]
|
|
2905
|
+
},
|
|
2906
|
+
"ion-list/theme": {
|
|
2907
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2908
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2909
|
+
"options": [
|
|
2910
|
+
"ios",
|
|
2911
|
+
"md",
|
|
2912
|
+
"ionic"
|
|
2913
|
+
]
|
|
2914
|
+
},
|
|
2138
2915
|
"ion-list-header/color": {
|
|
2139
2916
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2140
2917
|
"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).",
|
|
@@ -2161,12 +2938,21 @@
|
|
|
2161
2938
|
},
|
|
2162
2939
|
"ion-list-header/mode": {
|
|
2163
2940
|
"type": "\"ios\" | \"md\"",
|
|
2164
|
-
"description": "The mode determines
|
|
2941
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2165
2942
|
"options": [
|
|
2166
2943
|
"ios",
|
|
2167
2944
|
"md"
|
|
2168
2945
|
]
|
|
2169
2946
|
},
|
|
2947
|
+
"ion-list-header/theme": {
|
|
2948
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2949
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2950
|
+
"options": [
|
|
2951
|
+
"ios",
|
|
2952
|
+
"md",
|
|
2953
|
+
"ionic"
|
|
2954
|
+
]
|
|
2955
|
+
},
|
|
2170
2956
|
"ion-loading/animated": {
|
|
2171
2957
|
"type": "boolean",
|
|
2172
2958
|
"description": "If `true`, the loading indicator will animate.",
|
|
@@ -2219,7 +3005,7 @@
|
|
|
2219
3005
|
},
|
|
2220
3006
|
"ion-loading/mode": {
|
|
2221
3007
|
"type": "\"ios\" | \"md\"",
|
|
2222
|
-
"description": "The mode determines
|
|
3008
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2223
3009
|
"options": [
|
|
2224
3010
|
"ios",
|
|
2225
3011
|
"md"
|
|
@@ -2245,9 +3031,18 @@
|
|
|
2245
3031
|
"lines-small"
|
|
2246
3032
|
]
|
|
2247
3033
|
},
|
|
3034
|
+
"ion-loading/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
|
+
},
|
|
2248
3043
|
"ion-loading/translucent": {
|
|
2249
3044
|
"type": "boolean",
|
|
2250
|
-
"description": "If `true`, the loading indicator will be translucent.\nOnly applies when the
|
|
3045
|
+
"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).",
|
|
2251
3046
|
"options": []
|
|
2252
3047
|
},
|
|
2253
3048
|
"ion-loading/trigger": {
|
|
@@ -2275,6 +3070,14 @@
|
|
|
2275
3070
|
"description": "An id for the menu.",
|
|
2276
3071
|
"options": []
|
|
2277
3072
|
},
|
|
3073
|
+
"ion-menu/mode": {
|
|
3074
|
+
"type": "\"ios\" | \"md\"",
|
|
3075
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3076
|
+
"options": [
|
|
3077
|
+
"ios",
|
|
3078
|
+
"md"
|
|
3079
|
+
]
|
|
3080
|
+
},
|
|
2278
3081
|
"ion-menu/side": {
|
|
2279
3082
|
"type": "\"end\" | \"start\"",
|
|
2280
3083
|
"description": "Which side of the view the menu should be placed.",
|
|
@@ -2288,6 +3091,15 @@
|
|
|
2288
3091
|
"description": "If `true`, swiping the menu is enabled.",
|
|
2289
3092
|
"options": []
|
|
2290
3093
|
},
|
|
3094
|
+
"ion-menu/theme": {
|
|
3095
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3096
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3097
|
+
"options": [
|
|
3098
|
+
"ios",
|
|
3099
|
+
"md",
|
|
3100
|
+
"ionic"
|
|
3101
|
+
]
|
|
3102
|
+
},
|
|
2291
3103
|
"ion-menu/type": {
|
|
2292
3104
|
"type": "\"overlay\" | \"push\" | \"reveal\" | undefined",
|
|
2293
3105
|
"description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
|
|
@@ -2329,12 +3141,21 @@
|
|
|
2329
3141
|
},
|
|
2330
3142
|
"ion-menu-button/mode": {
|
|
2331
3143
|
"type": "\"ios\" | \"md\"",
|
|
2332
|
-
"description": "The mode determines
|
|
3144
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2333
3145
|
"options": [
|
|
2334
3146
|
"ios",
|
|
2335
3147
|
"md"
|
|
2336
3148
|
]
|
|
2337
3149
|
},
|
|
3150
|
+
"ion-menu-button/theme": {
|
|
3151
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3152
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3153
|
+
"options": [
|
|
3154
|
+
"ios",
|
|
3155
|
+
"md",
|
|
3156
|
+
"ionic"
|
|
3157
|
+
]
|
|
3158
|
+
},
|
|
2338
3159
|
"ion-menu-button/type": {
|
|
2339
3160
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
2340
3161
|
"description": "The type of the button.",
|
|
@@ -2354,6 +3175,23 @@
|
|
|
2354
3175
|
"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.",
|
|
2355
3176
|
"options": []
|
|
2356
3177
|
},
|
|
3178
|
+
"ion-menu-toggle/mode": {
|
|
3179
|
+
"type": "\"ios\" | \"md\"",
|
|
3180
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3181
|
+
"options": [
|
|
3182
|
+
"ios",
|
|
3183
|
+
"md"
|
|
3184
|
+
]
|
|
3185
|
+
},
|
|
3186
|
+
"ion-menu-toggle/theme": {
|
|
3187
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3188
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3189
|
+
"options": [
|
|
3190
|
+
"ios",
|
|
3191
|
+
"md",
|
|
3192
|
+
"ionic"
|
|
3193
|
+
]
|
|
3194
|
+
},
|
|
2357
3195
|
"ion-modal/animated": {
|
|
2358
3196
|
"type": "boolean",
|
|
2359
3197
|
"description": "If `true`, the modal will animate.",
|
|
@@ -2439,7 +3277,7 @@
|
|
|
2439
3277
|
},
|
|
2440
3278
|
"ion-modal/mode": {
|
|
2441
3279
|
"type": "\"ios\" | \"md\"",
|
|
2442
|
-
"description": "The mode determines
|
|
3280
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2443
3281
|
"options": [
|
|
2444
3282
|
"ios",
|
|
2445
3283
|
"md"
|
|
@@ -2450,11 +3288,29 @@
|
|
|
2450
3288
|
"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.",
|
|
2451
3289
|
"options": []
|
|
2452
3290
|
},
|
|
3291
|
+
"ion-modal/shape": {
|
|
3292
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
3293
|
+
"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.",
|
|
3294
|
+
"options": [
|
|
3295
|
+
"rectangular",
|
|
3296
|
+
"round",
|
|
3297
|
+
"soft"
|
|
3298
|
+
]
|
|
3299
|
+
},
|
|
2453
3300
|
"ion-modal/show-backdrop": {
|
|
2454
3301
|
"type": "boolean",
|
|
2455
3302
|
"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.",
|
|
2456
3303
|
"options": []
|
|
2457
3304
|
},
|
|
3305
|
+
"ion-modal/theme": {
|
|
3306
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3307
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3308
|
+
"options": [
|
|
3309
|
+
"ios",
|
|
3310
|
+
"md",
|
|
3311
|
+
"ionic"
|
|
3312
|
+
]
|
|
3313
|
+
},
|
|
2458
3314
|
"ion-modal/trigger": {
|
|
2459
3315
|
"type": "string | undefined",
|
|
2460
3316
|
"description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked.",
|
|
@@ -2467,11 +3323,19 @@
|
|
|
2467
3323
|
},
|
|
2468
3324
|
"ion-nav/animation": {
|
|
2469
3325
|
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2470
|
-
"description": "By default `ion-nav` animates transition between pages based
|
|
3326
|
+
"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.",
|
|
2471
3327
|
"options": []
|
|
2472
3328
|
},
|
|
2473
|
-
"ion-nav/
|
|
2474
|
-
"type": "
|
|
3329
|
+
"ion-nav/mode": {
|
|
3330
|
+
"type": "\"ios\" | \"md\"",
|
|
3331
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3332
|
+
"options": [
|
|
3333
|
+
"ios",
|
|
3334
|
+
"md"
|
|
3335
|
+
]
|
|
3336
|
+
},
|
|
3337
|
+
"ion-nav/root": {
|
|
3338
|
+
"type": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
2475
3339
|
"description": "Root NavComponent to load",
|
|
2476
3340
|
"options": []
|
|
2477
3341
|
},
|
|
@@ -2485,6 +3349,15 @@
|
|
|
2485
3349
|
"description": "If the nav component should allow for swipe-to-go-back.",
|
|
2486
3350
|
"options": []
|
|
2487
3351
|
},
|
|
3352
|
+
"ion-nav/theme": {
|
|
3353
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3354
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3355
|
+
"options": [
|
|
3356
|
+
"ios",
|
|
3357
|
+
"md",
|
|
3358
|
+
"ionic"
|
|
3359
|
+
]
|
|
3360
|
+
},
|
|
2488
3361
|
"ion-nav-link/component": {
|
|
2489
3362
|
"type": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
2490
3363
|
"description": "Component to navigate to. Only used if the `routerDirection` is `\"forward\"` or `\"root\"`.",
|
|
@@ -2495,6 +3368,14 @@
|
|
|
2495
3368
|
"description": "Data you want to pass to the component as props. Only used if the `\"routerDirection\"` is `\"forward\"` or `\"root\"`.",
|
|
2496
3369
|
"options": []
|
|
2497
3370
|
},
|
|
3371
|
+
"ion-nav-link/mode": {
|
|
3372
|
+
"type": "\"ios\" | \"md\"",
|
|
3373
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3374
|
+
"options": [
|
|
3375
|
+
"ios",
|
|
3376
|
+
"md"
|
|
3377
|
+
]
|
|
3378
|
+
},
|
|
2498
3379
|
"ion-nav-link/router-animation": {
|
|
2499
3380
|
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2500
3381
|
"description": "The transition animation when navigating to another page.",
|
|
@@ -2509,6 +3390,15 @@
|
|
|
2509
3390
|
"root"
|
|
2510
3391
|
]
|
|
2511
3392
|
},
|
|
3393
|
+
"ion-nav-link/theme": {
|
|
3394
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3395
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3396
|
+
"options": [
|
|
3397
|
+
"ios",
|
|
3398
|
+
"md",
|
|
3399
|
+
"ionic"
|
|
3400
|
+
]
|
|
3401
|
+
},
|
|
2512
3402
|
"ion-note/color": {
|
|
2513
3403
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2514
3404
|
"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).",
|
|
@@ -2526,20 +3416,38 @@
|
|
|
2526
3416
|
},
|
|
2527
3417
|
"ion-note/mode": {
|
|
2528
3418
|
"type": "\"ios\" | \"md\"",
|
|
2529
|
-
"description": "The mode determines
|
|
3419
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2530
3420
|
"options": [
|
|
2531
3421
|
"ios",
|
|
2532
3422
|
"md"
|
|
2533
3423
|
]
|
|
2534
3424
|
},
|
|
3425
|
+
"ion-note/theme": {
|
|
3426
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3427
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3428
|
+
"options": [
|
|
3429
|
+
"ios",
|
|
3430
|
+
"md",
|
|
3431
|
+
"ionic"
|
|
3432
|
+
]
|
|
3433
|
+
},
|
|
2535
3434
|
"ion-picker/mode": {
|
|
2536
3435
|
"type": "\"ios\" | \"md\"",
|
|
2537
|
-
"description": "The mode determines
|
|
3436
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2538
3437
|
"options": [
|
|
2539
3438
|
"ios",
|
|
2540
3439
|
"md"
|
|
2541
3440
|
]
|
|
2542
3441
|
},
|
|
3442
|
+
"ion-picker/theme": {
|
|
3443
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3444
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3445
|
+
"options": [
|
|
3446
|
+
"ios",
|
|
3447
|
+
"md",
|
|
3448
|
+
"ionic"
|
|
3449
|
+
]
|
|
3450
|
+
},
|
|
2543
3451
|
"ion-picker-column/color": {
|
|
2544
3452
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2545
3453
|
"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).",
|
|
@@ -2562,12 +3470,21 @@
|
|
|
2562
3470
|
},
|
|
2563
3471
|
"ion-picker-column/mode": {
|
|
2564
3472
|
"type": "\"ios\" | \"md\"",
|
|
2565
|
-
"description": "The mode determines
|
|
3473
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2566
3474
|
"options": [
|
|
2567
3475
|
"ios",
|
|
2568
3476
|
"md"
|
|
2569
3477
|
]
|
|
2570
3478
|
},
|
|
3479
|
+
"ion-picker-column/theme": {
|
|
3480
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3481
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3482
|
+
"options": [
|
|
3483
|
+
"ios",
|
|
3484
|
+
"md",
|
|
3485
|
+
"ionic"
|
|
3486
|
+
]
|
|
3487
|
+
},
|
|
2571
3488
|
"ion-picker-column/value": {
|
|
2572
3489
|
"type": "number | string | undefined",
|
|
2573
3490
|
"description": "The selected option in the picker.",
|
|
@@ -2593,14 +3510,113 @@
|
|
|
2593
3510
|
"description": "If `true`, the user cannot interact with the picker column option.",
|
|
2594
3511
|
"options": []
|
|
2595
3512
|
},
|
|
3513
|
+
"ion-picker-column-option/mode": {
|
|
3514
|
+
"type": "\"ios\" | \"md\"",
|
|
3515
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3516
|
+
"options": [
|
|
3517
|
+
"ios",
|
|
3518
|
+
"md"
|
|
3519
|
+
]
|
|
3520
|
+
},
|
|
3521
|
+
"ion-picker-column-option/theme": {
|
|
3522
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3523
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3524
|
+
"options": [
|
|
3525
|
+
"ios",
|
|
3526
|
+
"md",
|
|
3527
|
+
"ionic"
|
|
3528
|
+
]
|
|
3529
|
+
},
|
|
2596
3530
|
"ion-picker-column-option/value": {
|
|
2597
3531
|
"type": "any",
|
|
2598
3532
|
"description": "The text value of the option.",
|
|
2599
3533
|
"options": []
|
|
2600
3534
|
},
|
|
3535
|
+
"ion-picker-legacy/animated": {
|
|
3536
|
+
"type": "boolean",
|
|
3537
|
+
"description": "If `true`, the picker will animate.",
|
|
3538
|
+
"options": []
|
|
3539
|
+
},
|
|
3540
|
+
"ion-picker-legacy/backdrop-dismiss": {
|
|
3541
|
+
"type": "boolean",
|
|
3542
|
+
"description": "If `true`, the picker will be dismissed when the backdrop is clicked.",
|
|
3543
|
+
"options": []
|
|
3544
|
+
},
|
|
3545
|
+
"ion-picker-legacy/buttons": {
|
|
3546
|
+
"type": "PickerButton[]",
|
|
3547
|
+
"description": "Array of buttons to be displayed at the top of the picker.",
|
|
3548
|
+
"options": []
|
|
3549
|
+
},
|
|
3550
|
+
"ion-picker-legacy/columns": {
|
|
3551
|
+
"type": "PickerColumn[]",
|
|
3552
|
+
"description": "Array of columns to be displayed in the picker.",
|
|
3553
|
+
"options": []
|
|
3554
|
+
},
|
|
3555
|
+
"ion-picker-legacy/css-class": {
|
|
3556
|
+
"type": "string | string[] | undefined",
|
|
3557
|
+
"description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces.",
|
|
3558
|
+
"options": []
|
|
3559
|
+
},
|
|
3560
|
+
"ion-picker-legacy/duration": {
|
|
3561
|
+
"type": "number",
|
|
3562
|
+
"description": "Number of milliseconds to wait before dismissing the picker.",
|
|
3563
|
+
"options": []
|
|
3564
|
+
},
|
|
3565
|
+
"ion-picker-legacy/enter-animation": {
|
|
3566
|
+
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
3567
|
+
"description": "Animation to use when the picker is presented.",
|
|
3568
|
+
"options": []
|
|
3569
|
+
},
|
|
3570
|
+
"ion-picker-legacy/html-attributes": {
|
|
3571
|
+
"type": "undefined | { [key: string]: any; }",
|
|
3572
|
+
"description": "Additional attributes to pass to the picker.",
|
|
3573
|
+
"options": []
|
|
3574
|
+
},
|
|
3575
|
+
"ion-picker-legacy/is-open": {
|
|
3576
|
+
"type": "boolean",
|
|
3577
|
+
"description": "If `true`, the picker will open. If `false`, the picker will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the pickerController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe picker dismisses. You will need to do that in your code.",
|
|
3578
|
+
"options": []
|
|
3579
|
+
},
|
|
3580
|
+
"ion-picker-legacy/keyboard-close": {
|
|
3581
|
+
"type": "boolean",
|
|
3582
|
+
"description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented.",
|
|
3583
|
+
"options": []
|
|
3584
|
+
},
|
|
3585
|
+
"ion-picker-legacy/leave-animation": {
|
|
3586
|
+
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
3587
|
+
"description": "Animation to use when the picker is dismissed.",
|
|
3588
|
+
"options": []
|
|
3589
|
+
},
|
|
3590
|
+
"ion-picker-legacy/mode": {
|
|
3591
|
+
"type": "\"ios\" | \"md\"",
|
|
3592
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3593
|
+
"options": [
|
|
3594
|
+
"ios",
|
|
3595
|
+
"md"
|
|
3596
|
+
]
|
|
3597
|
+
},
|
|
3598
|
+
"ion-picker-legacy/show-backdrop": {
|
|
3599
|
+
"type": "boolean",
|
|
3600
|
+
"description": "If `true`, a backdrop will be displayed behind the picker.",
|
|
3601
|
+
"options": []
|
|
3602
|
+
},
|
|
3603
|
+
"ion-picker-legacy/theme": {
|
|
3604
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3605
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3606
|
+
"options": [
|
|
3607
|
+
"ios",
|
|
3608
|
+
"md",
|
|
3609
|
+
"ionic"
|
|
3610
|
+
]
|
|
3611
|
+
},
|
|
3612
|
+
"ion-picker-legacy/trigger": {
|
|
3613
|
+
"type": "string | undefined",
|
|
3614
|
+
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
3615
|
+
"options": []
|
|
3616
|
+
},
|
|
2601
3617
|
"ion-popover/alignment": {
|
|
2602
3618
|
"type": "\"center\" | \"end\" | \"start\" | undefined",
|
|
2603
|
-
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for
|
|
3619
|
+
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
|
|
2604
3620
|
"options": [
|
|
2605
3621
|
"center",
|
|
2606
3622
|
"end",
|
|
@@ -2614,7 +3630,7 @@
|
|
|
2614
3630
|
},
|
|
2615
3631
|
"ion-popover/arrow": {
|
|
2616
3632
|
"type": "boolean",
|
|
2617
|
-
"description": "If `true`, the popover will display an arrow that points at the\n`reference`
|
|
3633
|
+
"description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme.",
|
|
2618
3634
|
"options": []
|
|
2619
3635
|
},
|
|
2620
3636
|
"ion-popover/backdrop-dismiss": {
|
|
@@ -2679,7 +3695,7 @@
|
|
|
2679
3695
|
},
|
|
2680
3696
|
"ion-popover/mode": {
|
|
2681
3697
|
"type": "\"ios\" | \"md\"",
|
|
2682
|
-
"description": "The mode determines
|
|
3698
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2683
3699
|
"options": [
|
|
2684
3700
|
"ios",
|
|
2685
3701
|
"md"
|
|
@@ -2718,9 +3734,18 @@
|
|
|
2718
3734
|
"cover"
|
|
2719
3735
|
]
|
|
2720
3736
|
},
|
|
3737
|
+
"ion-popover/theme": {
|
|
3738
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3739
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3740
|
+
"options": [
|
|
3741
|
+
"ios",
|
|
3742
|
+
"md",
|
|
3743
|
+
"ionic"
|
|
3744
|
+
]
|
|
3745
|
+
},
|
|
2721
3746
|
"ion-popover/translucent": {
|
|
2722
3747
|
"type": "boolean",
|
|
2723
|
-
"description": "If `true`, the popover will be translucent.\nOnly applies when the
|
|
3748
|
+
"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).",
|
|
2724
3749
|
"options": []
|
|
2725
3750
|
},
|
|
2726
3751
|
"ion-popover/trigger": {
|
|
@@ -2759,7 +3784,7 @@
|
|
|
2759
3784
|
},
|
|
2760
3785
|
"ion-progress-bar/mode": {
|
|
2761
3786
|
"type": "\"ios\" | \"md\"",
|
|
2762
|
-
"description": "The mode determines
|
|
3787
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2763
3788
|
"options": [
|
|
2764
3789
|
"ios",
|
|
2765
3790
|
"md"
|
|
@@ -2770,6 +3795,23 @@
|
|
|
2770
3795
|
"description": "If true, reverse the progress bar direction.",
|
|
2771
3796
|
"options": []
|
|
2772
3797
|
},
|
|
3798
|
+
"ion-progress-bar/shape": {
|
|
3799
|
+
"type": "\"rectangular\" | \"round\" | undefined",
|
|
3800
|
+
"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.",
|
|
3801
|
+
"options": [
|
|
3802
|
+
"rectangular",
|
|
3803
|
+
"round"
|
|
3804
|
+
]
|
|
3805
|
+
},
|
|
3806
|
+
"ion-progress-bar/theme": {
|
|
3807
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3808
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3809
|
+
"options": [
|
|
3810
|
+
"ios",
|
|
3811
|
+
"md",
|
|
3812
|
+
"ionic"
|
|
3813
|
+
]
|
|
3814
|
+
},
|
|
2773
3815
|
"ion-progress-bar/type": {
|
|
2774
3816
|
"type": "\"determinate\" | \"indeterminate\"",
|
|
2775
3817
|
"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).",
|
|
@@ -2832,7 +3874,7 @@
|
|
|
2832
3874
|
},
|
|
2833
3875
|
"ion-radio/mode": {
|
|
2834
3876
|
"type": "\"ios\" | \"md\"",
|
|
2835
|
-
"description": "The mode determines
|
|
3877
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2836
3878
|
"options": [
|
|
2837
3879
|
"ios",
|
|
2838
3880
|
"md"
|
|
@@ -2843,6 +3885,15 @@
|
|
|
2843
3885
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2844
3886
|
"options": []
|
|
2845
3887
|
},
|
|
3888
|
+
"ion-radio/theme": {
|
|
3889
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3890
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3891
|
+
"options": [
|
|
3892
|
+
"ios",
|
|
3893
|
+
"md",
|
|
3894
|
+
"ionic"
|
|
3895
|
+
]
|
|
3896
|
+
},
|
|
2846
3897
|
"ion-radio/value": {
|
|
2847
3898
|
"type": "any",
|
|
2848
3899
|
"description": "the value of the radio.",
|
|
@@ -2868,11 +3919,28 @@
|
|
|
2868
3919
|
"description": "The helper text to display at the top of the radio group.",
|
|
2869
3920
|
"options": []
|
|
2870
3921
|
},
|
|
3922
|
+
"ion-radio-group/mode": {
|
|
3923
|
+
"type": "\"ios\" | \"md\"",
|
|
3924
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3925
|
+
"options": [
|
|
3926
|
+
"ios",
|
|
3927
|
+
"md"
|
|
3928
|
+
]
|
|
3929
|
+
},
|
|
2871
3930
|
"ion-radio-group/name": {
|
|
2872
3931
|
"type": "string",
|
|
2873
3932
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2874
3933
|
"options": []
|
|
2875
3934
|
},
|
|
3935
|
+
"ion-radio-group/theme": {
|
|
3936
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3937
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3938
|
+
"options": [
|
|
3939
|
+
"ios",
|
|
3940
|
+
"md",
|
|
3941
|
+
"ionic"
|
|
3942
|
+
]
|
|
3943
|
+
},
|
|
2876
3944
|
"ion-radio-group/value": {
|
|
2877
3945
|
"type": "any",
|
|
2878
3946
|
"description": "the value of the radio group.",
|
|
@@ -2940,7 +4008,7 @@
|
|
|
2940
4008
|
},
|
|
2941
4009
|
"ion-range/mode": {
|
|
2942
4010
|
"type": "\"ios\" | \"md\"",
|
|
2943
|
-
"description": "The mode determines
|
|
4011
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2944
4012
|
"options": [
|
|
2945
4013
|
"ios",
|
|
2946
4014
|
"md"
|
|
@@ -2971,6 +4039,15 @@
|
|
|
2971
4039
|
"description": "Specifies the value granularity.",
|
|
2972
4040
|
"options": []
|
|
2973
4041
|
},
|
|
4042
|
+
"ion-range/theme": {
|
|
4043
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4044
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4045
|
+
"options": [
|
|
4046
|
+
"ios",
|
|
4047
|
+
"md",
|
|
4048
|
+
"ionic"
|
|
4049
|
+
]
|
|
4050
|
+
},
|
|
2974
4051
|
"ion-range/ticks": {
|
|
2975
4052
|
"type": "boolean",
|
|
2976
4053
|
"description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
|
|
@@ -2993,7 +4070,7 @@
|
|
|
2993
4070
|
},
|
|
2994
4071
|
"ion-refresher/mode": {
|
|
2995
4072
|
"type": "\"ios\" | \"md\"",
|
|
2996
|
-
"description": "The mode determines
|
|
4073
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2997
4074
|
"options": [
|
|
2998
4075
|
"ios",
|
|
2999
4076
|
"md"
|
|
@@ -3019,6 +4096,23 @@
|
|
|
3019
4096
|
"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.",
|
|
3020
4097
|
"options": []
|
|
3021
4098
|
},
|
|
4099
|
+
"ion-refresher/theme": {
|
|
4100
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4101
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4102
|
+
"options": [
|
|
4103
|
+
"ios",
|
|
4104
|
+
"md",
|
|
4105
|
+
"ionic"
|
|
4106
|
+
]
|
|
4107
|
+
},
|
|
4108
|
+
"ion-refresher-content/mode": {
|
|
4109
|
+
"type": "\"ios\" | \"md\"",
|
|
4110
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4111
|
+
"options": [
|
|
4112
|
+
"ios",
|
|
4113
|
+
"md"
|
|
4114
|
+
]
|
|
4115
|
+
},
|
|
3022
4116
|
"ion-refresher-content/pulling-icon": {
|
|
3023
4117
|
"type": "null | string | undefined",
|
|
3024
4118
|
"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.",
|
|
@@ -3049,11 +4143,71 @@
|
|
|
3049
4143
|
"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.",
|
|
3050
4144
|
"options": []
|
|
3051
4145
|
},
|
|
4146
|
+
"ion-refresher-content/theme": {
|
|
4147
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4148
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4149
|
+
"options": [
|
|
4150
|
+
"ios",
|
|
4151
|
+
"md",
|
|
4152
|
+
"ionic"
|
|
4153
|
+
]
|
|
4154
|
+
},
|
|
4155
|
+
"ion-reorder/mode": {
|
|
4156
|
+
"type": "\"ios\" | \"md\"",
|
|
4157
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4158
|
+
"options": [
|
|
4159
|
+
"ios",
|
|
4160
|
+
"md"
|
|
4161
|
+
]
|
|
4162
|
+
},
|
|
4163
|
+
"ion-reorder/theme": {
|
|
4164
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4165
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4166
|
+
"options": [
|
|
4167
|
+
"ios",
|
|
4168
|
+
"md",
|
|
4169
|
+
"ionic"
|
|
4170
|
+
]
|
|
4171
|
+
},
|
|
3052
4172
|
"ion-reorder-group/disabled": {
|
|
3053
4173
|
"type": "boolean",
|
|
3054
4174
|
"description": "If `true`, the reorder will be hidden.",
|
|
3055
4175
|
"options": []
|
|
3056
4176
|
},
|
|
4177
|
+
"ion-reorder-group/mode": {
|
|
4178
|
+
"type": "\"ios\" | \"md\"",
|
|
4179
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4180
|
+
"options": [
|
|
4181
|
+
"ios",
|
|
4182
|
+
"md"
|
|
4183
|
+
]
|
|
4184
|
+
},
|
|
4185
|
+
"ion-reorder-group/theme": {
|
|
4186
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4187
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4188
|
+
"options": [
|
|
4189
|
+
"ios",
|
|
4190
|
+
"md",
|
|
4191
|
+
"ionic"
|
|
4192
|
+
]
|
|
4193
|
+
},
|
|
4194
|
+
"ion-ripple-effect/mode": {
|
|
4195
|
+
"type": "\"ios\" | \"md\"",
|
|
4196
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4197
|
+
"options": [
|
|
4198
|
+
"ios",
|
|
4199
|
+
"md"
|
|
4200
|
+
]
|
|
4201
|
+
},
|
|
4202
|
+
"ion-ripple-effect/theme": {
|
|
4203
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4204
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4205
|
+
"options": [
|
|
4206
|
+
"ios",
|
|
4207
|
+
"md",
|
|
4208
|
+
"ionic"
|
|
4209
|
+
]
|
|
4210
|
+
},
|
|
3057
4211
|
"ion-ripple-effect/type": {
|
|
3058
4212
|
"type": "\"bounded\" | \"unbounded\"",
|
|
3059
4213
|
"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.",
|
|
@@ -3082,6 +4236,23 @@
|
|
|
3082
4236
|
"description": "A key value `{ 'red': true, 'blue': 'white'}` containing props that should be passed\nto the defined component when rendered.",
|
|
3083
4237
|
"options": []
|
|
3084
4238
|
},
|
|
4239
|
+
"ion-route/mode": {
|
|
4240
|
+
"type": "\"ios\" | \"md\"",
|
|
4241
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4242
|
+
"options": [
|
|
4243
|
+
"ios",
|
|
4244
|
+
"md"
|
|
4245
|
+
]
|
|
4246
|
+
},
|
|
4247
|
+
"ion-route/theme": {
|
|
4248
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4249
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4250
|
+
"options": [
|
|
4251
|
+
"ios",
|
|
4252
|
+
"md",
|
|
4253
|
+
"ionic"
|
|
4254
|
+
]
|
|
4255
|
+
},
|
|
3085
4256
|
"ion-route/url": {
|
|
3086
4257
|
"type": "string",
|
|
3087
4258
|
"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.",
|
|
@@ -3097,11 +4268,28 @@
|
|
|
3097
4268
|
"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.",
|
|
3098
4269
|
"options": []
|
|
3099
4270
|
},
|
|
4271
|
+
"ion-router/mode": {
|
|
4272
|
+
"type": "\"ios\" | \"md\"",
|
|
4273
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4274
|
+
"options": [
|
|
4275
|
+
"ios",
|
|
4276
|
+
"md"
|
|
4277
|
+
]
|
|
4278
|
+
},
|
|
3100
4279
|
"ion-router/root": {
|
|
3101
4280
|
"type": "string",
|
|
3102
4281
|
"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.",
|
|
3103
4282
|
"options": []
|
|
3104
4283
|
},
|
|
4284
|
+
"ion-router/theme": {
|
|
4285
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4286
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4287
|
+
"options": [
|
|
4288
|
+
"ios",
|
|
4289
|
+
"md",
|
|
4290
|
+
"ionic"
|
|
4291
|
+
]
|
|
4292
|
+
},
|
|
3105
4293
|
"ion-router/use-hash": {
|
|
3106
4294
|
"type": "boolean",
|
|
3107
4295
|
"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.",
|
|
@@ -3127,6 +4315,14 @@
|
|
|
3127
4315
|
"description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered.",
|
|
3128
4316
|
"options": []
|
|
3129
4317
|
},
|
|
4318
|
+
"ion-router-link/mode": {
|
|
4319
|
+
"type": "\"ios\" | \"md\"",
|
|
4320
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4321
|
+
"options": [
|
|
4322
|
+
"ios",
|
|
4323
|
+
"md"
|
|
4324
|
+
]
|
|
4325
|
+
},
|
|
3130
4326
|
"ion-router-link/rel": {
|
|
3131
4327
|
"type": "string | undefined",
|
|
3132
4328
|
"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).",
|
|
@@ -3151,6 +4347,15 @@
|
|
|
3151
4347
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3152
4348
|
"options": []
|
|
3153
4349
|
},
|
|
4350
|
+
"ion-router-link/theme": {
|
|
4351
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4352
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4353
|
+
"options": [
|
|
4354
|
+
"ios",
|
|
4355
|
+
"md",
|
|
4356
|
+
"ionic"
|
|
4357
|
+
]
|
|
4358
|
+
},
|
|
3154
4359
|
"ion-router-outlet/animated": {
|
|
3155
4360
|
"type": "boolean",
|
|
3156
4361
|
"description": "If `true`, the router-outlet should animate the transition of components.",
|
|
@@ -3163,16 +4368,37 @@
|
|
|
3163
4368
|
},
|
|
3164
4369
|
"ion-router-outlet/mode": {
|
|
3165
4370
|
"type": "\"ios\" | \"md\"",
|
|
3166
|
-
"description": "The mode determines
|
|
4371
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3167
4372
|
"options": [
|
|
3168
4373
|
"ios",
|
|
3169
4374
|
"md"
|
|
3170
4375
|
]
|
|
3171
4376
|
},
|
|
3172
|
-
"ion-router-outlet/
|
|
3173
|
-
"type": "
|
|
3174
|
-
"description": "
|
|
3175
|
-
"options": [
|
|
4377
|
+
"ion-router-outlet/theme": {
|
|
4378
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4379
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4380
|
+
"options": [
|
|
4381
|
+
"ios",
|
|
4382
|
+
"md",
|
|
4383
|
+
"ionic"
|
|
4384
|
+
]
|
|
4385
|
+
},
|
|
4386
|
+
"ion-row/mode": {
|
|
4387
|
+
"type": "\"ios\" | \"md\"",
|
|
4388
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4389
|
+
"options": [
|
|
4390
|
+
"ios",
|
|
4391
|
+
"md"
|
|
4392
|
+
]
|
|
4393
|
+
},
|
|
4394
|
+
"ion-row/theme": {
|
|
4395
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4396
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4397
|
+
"options": [
|
|
4398
|
+
"ios",
|
|
4399
|
+
"md",
|
|
4400
|
+
"ionic"
|
|
4401
|
+
]
|
|
3176
4402
|
},
|
|
3177
4403
|
"ion-searchbar/animated": {
|
|
3178
4404
|
"type": "boolean",
|
|
@@ -3245,23 +4471,26 @@
|
|
|
3245
4471
|
]
|
|
3246
4472
|
},
|
|
3247
4473
|
"ion-searchbar/autocorrect": {
|
|
3248
|
-
"type": "
|
|
4474
|
+
"type": "\"off\" | \"on\"",
|
|
3249
4475
|
"description": "Set the input's autocorrect property.",
|
|
3250
|
-
"options": [
|
|
4476
|
+
"options": [
|
|
4477
|
+
"off",
|
|
4478
|
+
"on"
|
|
4479
|
+
]
|
|
3251
4480
|
},
|
|
3252
4481
|
"ion-searchbar/cancel-button-icon": {
|
|
3253
|
-
"type": "string",
|
|
3254
|
-
"description": "Set the cancel button icon. Only
|
|
4482
|
+
"type": "string | undefined",
|
|
4483
|
+
"description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`.",
|
|
3255
4484
|
"options": []
|
|
3256
4485
|
},
|
|
3257
4486
|
"ion-searchbar/cancel-button-text": {
|
|
3258
4487
|
"type": "string",
|
|
3259
|
-
"description": "Set the cancel button text. Only
|
|
4488
|
+
"description": "Set the cancel button text. Only available when the theme is `\"ios\"`.",
|
|
3260
4489
|
"options": []
|
|
3261
4490
|
},
|
|
3262
4491
|
"ion-searchbar/clear-icon": {
|
|
3263
4492
|
"type": "string | undefined",
|
|
3264
|
-
"description": "Set the clear icon. Defaults to
|
|
4493
|
+
"description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme.",
|
|
3265
4494
|
"options": []
|
|
3266
4495
|
},
|
|
3267
4496
|
"ion-searchbar/color": {
|
|
@@ -3328,7 +4557,7 @@
|
|
|
3328
4557
|
},
|
|
3329
4558
|
"ion-searchbar/mode": {
|
|
3330
4559
|
"type": "\"ios\" | \"md\"",
|
|
3331
|
-
"description": "The mode determines
|
|
4560
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3332
4561
|
"options": [
|
|
3333
4562
|
"ios",
|
|
3334
4563
|
"md"
|
|
@@ -3345,10 +4574,19 @@
|
|
|
3345
4574
|
"options": []
|
|
3346
4575
|
},
|
|
3347
4576
|
"ion-searchbar/search-icon": {
|
|
3348
|
-
"type": "string | undefined",
|
|
3349
|
-
"description": "The icon to use as the search icon. Defaults to
|
|
4577
|
+
"type": "boolean | string | undefined",
|
|
4578
|
+
"description": "The icon to use as the search icon. Defaults to `\"search-outline\"` in\nthe `\"ios\"` theme and `\"search-sharp\"` in the `\"md\"` and `\"ionic\"` themes.\nIf `false`, no search icon will be displayed.",
|
|
3350
4579
|
"options": []
|
|
3351
4580
|
},
|
|
4581
|
+
"ion-searchbar/shape": {
|
|
4582
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4583
|
+
"description": "Set to `\"soft\"` for a searchbar with slightly rounded corners,\n`\"round\"` for a searchbar with fully rounded corners,\nor `\"rectangular\"` for a searchbar without rounded corners.\n\nDefaults to `\"round\"` for the ionic theme, and `undefined` for all other themes.",
|
|
4584
|
+
"options": [
|
|
4585
|
+
"rectangular",
|
|
4586
|
+
"round",
|
|
4587
|
+
"soft"
|
|
4588
|
+
]
|
|
4589
|
+
},
|
|
3352
4590
|
"ion-searchbar/show-cancel-button": {
|
|
3353
4591
|
"type": "\"always\" | \"focus\" | \"never\"",
|
|
3354
4592
|
"description": "Sets the behavior for the cancel button. Defaults to `\"never\"`.\nSetting to `\"focus\"` shows the cancel button on focus.\nSetting to `\"never\"` hides the cancel button.\nSetting to `\"always\"` shows the cancel button regardless\nof focus state.",
|
|
@@ -3367,11 +4605,29 @@
|
|
|
3367
4605
|
"never"
|
|
3368
4606
|
]
|
|
3369
4607
|
},
|
|
4608
|
+
"ion-searchbar/size": {
|
|
4609
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
4610
|
+
"description": "Set to `\"large\"` for a searchbar with an increase in height,\nwhile \"small\" and \"medium\" provide progressively smaller heights.\n\nDefaults to `\"medium\"` for the ionic theme, and `undefined` for all other themes.",
|
|
4611
|
+
"options": [
|
|
4612
|
+
"large",
|
|
4613
|
+
"medium",
|
|
4614
|
+
"small"
|
|
4615
|
+
]
|
|
4616
|
+
},
|
|
3370
4617
|
"ion-searchbar/spellcheck": {
|
|
3371
4618
|
"type": "boolean",
|
|
3372
4619
|
"description": "If `true`, enable spellcheck on the input.",
|
|
3373
4620
|
"options": []
|
|
3374
4621
|
},
|
|
4622
|
+
"ion-searchbar/theme": {
|
|
4623
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4624
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4625
|
+
"options": [
|
|
4626
|
+
"ios",
|
|
4627
|
+
"md",
|
|
4628
|
+
"ionic"
|
|
4629
|
+
]
|
|
4630
|
+
},
|
|
3375
4631
|
"ion-searchbar/type": {
|
|
3376
4632
|
"type": "\"email\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"",
|
|
3377
4633
|
"description": "Set the type of the input.",
|
|
@@ -3412,7 +4668,7 @@
|
|
|
3412
4668
|
},
|
|
3413
4669
|
"ion-segment/mode": {
|
|
3414
4670
|
"type": "\"ios\" | \"md\"",
|
|
3415
|
-
"description": "The mode determines
|
|
4671
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3416
4672
|
"options": [
|
|
3417
4673
|
"ios",
|
|
3418
4674
|
"md"
|
|
@@ -3433,6 +4689,15 @@
|
|
|
3433
4689
|
"description": "If `true`, users will be able to swipe between segment buttons to activate them.",
|
|
3434
4690
|
"options": []
|
|
3435
4691
|
},
|
|
4692
|
+
"ion-segment/theme": {
|
|
4693
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4694
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4695
|
+
"options": [
|
|
4696
|
+
"ios",
|
|
4697
|
+
"md",
|
|
4698
|
+
"ionic"
|
|
4699
|
+
]
|
|
4700
|
+
},
|
|
3436
4701
|
"ion-segment/value": {
|
|
3437
4702
|
"type": "number | string | undefined",
|
|
3438
4703
|
"description": "the value of the segment.",
|
|
@@ -3462,12 +4727,21 @@
|
|
|
3462
4727
|
},
|
|
3463
4728
|
"ion-segment-button/mode": {
|
|
3464
4729
|
"type": "\"ios\" | \"md\"",
|
|
3465
|
-
"description": "The mode determines
|
|
4730
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3466
4731
|
"options": [
|
|
3467
4732
|
"ios",
|
|
3468
4733
|
"md"
|
|
3469
4734
|
]
|
|
3470
4735
|
},
|
|
4736
|
+
"ion-segment-button/theme": {
|
|
4737
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4738
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4739
|
+
"options": [
|
|
4740
|
+
"ios",
|
|
4741
|
+
"md",
|
|
4742
|
+
"ionic"
|
|
4743
|
+
]
|
|
4744
|
+
},
|
|
3471
4745
|
"ion-segment-button/type": {
|
|
3472
4746
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
3473
4747
|
"description": "The type of the button.",
|
|
@@ -3492,6 +4766,11 @@
|
|
|
3492
4766
|
"description": "If `true`, users will be able to swipe the segment view to navigate between segment contents.",
|
|
3493
4767
|
"options": []
|
|
3494
4768
|
},
|
|
4769
|
+
"ion-select/cancel-icon": {
|
|
4770
|
+
"type": "boolean",
|
|
4771
|
+
"description": "If `true`, the cancel button will display an icon instead of the `cancelText`.\nOnly applies when `interface` is set to `\"modal\"`. Has no effect on `\"action-sheet\"`,\n`\"alert\"`, or `\"popover\"` interfaces.\nWhen `cancelIcon` is `true`, the `cancelText` property is ignored for display\nbut is used as the accessible label for the icon button.",
|
|
4772
|
+
"options": []
|
|
4773
|
+
},
|
|
3495
4774
|
"ion-select/cancel-text": {
|
|
3496
4775
|
"type": "string",
|
|
3497
4776
|
"description": "The text to display on the cancel button.",
|
|
@@ -3529,12 +4808,12 @@
|
|
|
3529
4808
|
},
|
|
3530
4809
|
"ion-select/expanded-icon": {
|
|
3531
4810
|
"type": "string | undefined",
|
|
3532
|
-
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in
|
|
4811
|
+
"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.",
|
|
3533
4812
|
"options": []
|
|
3534
4813
|
},
|
|
3535
4814
|
"ion-select/fill": {
|
|
3536
4815
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
3537
|
-
"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
|
|
4816
|
+
"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.",
|
|
3538
4817
|
"options": [
|
|
3539
4818
|
"outline",
|
|
3540
4819
|
"solid"
|
|
@@ -3587,7 +4866,7 @@
|
|
|
3587
4866
|
},
|
|
3588
4867
|
"ion-select/mode": {
|
|
3589
4868
|
"type": "\"ios\" | \"md\"",
|
|
3590
|
-
"description": "The mode determines
|
|
4869
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3591
4870
|
"options": [
|
|
3592
4871
|
"ios",
|
|
3593
4872
|
"md"
|
|
@@ -3624,15 +4903,35 @@
|
|
|
3624
4903
|
"options": []
|
|
3625
4904
|
},
|
|
3626
4905
|
"ion-select/shape": {
|
|
3627
|
-
"type": "\"round\" | undefined",
|
|
3628
|
-
"description": "
|
|
4906
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4907
|
+
"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.",
|
|
3629
4908
|
"options": [
|
|
3630
|
-
"
|
|
4909
|
+
"rectangular",
|
|
4910
|
+
"round",
|
|
4911
|
+
"soft"
|
|
4912
|
+
]
|
|
4913
|
+
},
|
|
4914
|
+
"ion-select/size": {
|
|
4915
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
4916
|
+
"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.",
|
|
4917
|
+
"options": [
|
|
4918
|
+
"large",
|
|
4919
|
+
"medium",
|
|
4920
|
+
"small"
|
|
4921
|
+
]
|
|
4922
|
+
},
|
|
4923
|
+
"ion-select/theme": {
|
|
4924
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4925
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4926
|
+
"options": [
|
|
4927
|
+
"ios",
|
|
4928
|
+
"md",
|
|
4929
|
+
"ionic"
|
|
3631
4930
|
]
|
|
3632
4931
|
},
|
|
3633
4932
|
"ion-select/toggle-icon": {
|
|
3634
4933
|
"type": "string | undefined",
|
|
3635
|
-
"description": "The toggle icon to use. Defaults to
|
|
4934
|
+
"description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes.",
|
|
3636
4935
|
"options": []
|
|
3637
4936
|
},
|
|
3638
4937
|
"ion-select/value": {
|
|
@@ -3640,6 +4939,11 @@
|
|
|
3640
4939
|
"description": "The value of the select.",
|
|
3641
4940
|
"options": []
|
|
3642
4941
|
},
|
|
4942
|
+
"ion-select-modal/cancel-icon": {
|
|
4943
|
+
"type": "boolean",
|
|
4944
|
+
"description": "If `true`, the cancel button will display a close icon instead of the `cancelText`.\nWhen `cancelIcon` is `true`, `cancelText` is not displayed visually but is still used\nas the accessible label (`aria-label`) for the button.",
|
|
4945
|
+
"options": []
|
|
4946
|
+
},
|
|
3643
4947
|
"ion-select-modal/cancel-text": {
|
|
3644
4948
|
"type": "string",
|
|
3645
4949
|
"description": "The text to display on the cancel button.",
|
|
@@ -3660,11 +4964,33 @@
|
|
|
3660
4964
|
"description": "",
|
|
3661
4965
|
"options": []
|
|
3662
4966
|
},
|
|
4967
|
+
"ion-select-option/description": {
|
|
4968
|
+
"type": "string | undefined",
|
|
4969
|
+
"description": "Text that is placed underneath the option text to provide additional details about the option.",
|
|
4970
|
+
"options": []
|
|
4971
|
+
},
|
|
3663
4972
|
"ion-select-option/disabled": {
|
|
3664
4973
|
"type": "boolean",
|
|
3665
4974
|
"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.",
|
|
3666
4975
|
"options": []
|
|
3667
4976
|
},
|
|
4977
|
+
"ion-select-option/mode": {
|
|
4978
|
+
"type": "\"ios\" | \"md\"",
|
|
4979
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4980
|
+
"options": [
|
|
4981
|
+
"ios",
|
|
4982
|
+
"md"
|
|
4983
|
+
]
|
|
4984
|
+
},
|
|
4985
|
+
"ion-select-option/theme": {
|
|
4986
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4987
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4988
|
+
"options": [
|
|
4989
|
+
"ios",
|
|
4990
|
+
"md",
|
|
4991
|
+
"ionic"
|
|
4992
|
+
]
|
|
4993
|
+
},
|
|
3668
4994
|
"ion-select-option/value": {
|
|
3669
4995
|
"type": "any",
|
|
3670
4996
|
"description": "The text value of the option.",
|
|
@@ -3675,6 +5001,23 @@
|
|
|
3675
5001
|
"description": "If `true`, the skeleton text will animate.",
|
|
3676
5002
|
"options": []
|
|
3677
5003
|
},
|
|
5004
|
+
"ion-skeleton-text/mode": {
|
|
5005
|
+
"type": "\"ios\" | \"md\"",
|
|
5006
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5007
|
+
"options": [
|
|
5008
|
+
"ios",
|
|
5009
|
+
"md"
|
|
5010
|
+
]
|
|
5011
|
+
},
|
|
5012
|
+
"ion-skeleton-text/theme": {
|
|
5013
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5014
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5015
|
+
"options": [
|
|
5016
|
+
"ios",
|
|
5017
|
+
"md",
|
|
5018
|
+
"ionic"
|
|
5019
|
+
]
|
|
5020
|
+
},
|
|
3678
5021
|
"ion-spinner/color": {
|
|
3679
5022
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3680
5023
|
"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).",
|
|
@@ -3695,6 +5038,14 @@
|
|
|
3695
5038
|
"description": "Duration of the spinner animation in milliseconds. The default varies based on the spinner.",
|
|
3696
5039
|
"options": []
|
|
3697
5040
|
},
|
|
5041
|
+
"ion-spinner/mode": {
|
|
5042
|
+
"type": "\"ios\" | \"md\"",
|
|
5043
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5044
|
+
"options": [
|
|
5045
|
+
"ios",
|
|
5046
|
+
"md"
|
|
5047
|
+
]
|
|
5048
|
+
},
|
|
3698
5049
|
"ion-spinner/name": {
|
|
3699
5050
|
"type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | undefined",
|
|
3700
5051
|
"description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
|
|
@@ -3715,6 +5066,26 @@
|
|
|
3715
5066
|
"description": "If `true`, the spinner's animation will be paused.",
|
|
3716
5067
|
"options": []
|
|
3717
5068
|
},
|
|
5069
|
+
"ion-spinner/size": {
|
|
5070
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined",
|
|
5071
|
+
"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.",
|
|
5072
|
+
"options": [
|
|
5073
|
+
"large",
|
|
5074
|
+
"medium",
|
|
5075
|
+
"small",
|
|
5076
|
+
"xlarge",
|
|
5077
|
+
"xsmall"
|
|
5078
|
+
]
|
|
5079
|
+
},
|
|
5080
|
+
"ion-spinner/theme": {
|
|
5081
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5082
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5083
|
+
"options": [
|
|
5084
|
+
"ios",
|
|
5085
|
+
"md",
|
|
5086
|
+
"ionic"
|
|
5087
|
+
]
|
|
5088
|
+
},
|
|
3718
5089
|
"ion-split-pane/content-id": {
|
|
3719
5090
|
"type": "string | undefined",
|
|
3720
5091
|
"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`.",
|
|
@@ -3725,6 +5096,23 @@
|
|
|
3725
5096
|
"description": "If `true`, the split pane will be hidden.",
|
|
3726
5097
|
"options": []
|
|
3727
5098
|
},
|
|
5099
|
+
"ion-split-pane/mode": {
|
|
5100
|
+
"type": "\"ios\" | \"md\"",
|
|
5101
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5102
|
+
"options": [
|
|
5103
|
+
"ios",
|
|
5104
|
+
"md"
|
|
5105
|
+
]
|
|
5106
|
+
},
|
|
5107
|
+
"ion-split-pane/theme": {
|
|
5108
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5109
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5110
|
+
"options": [
|
|
5111
|
+
"ios",
|
|
5112
|
+
"md",
|
|
5113
|
+
"ionic"
|
|
5114
|
+
]
|
|
5115
|
+
},
|
|
3728
5116
|
"ion-split-pane/when": {
|
|
3729
5117
|
"type": "boolean | string",
|
|
3730
5118
|
"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.",
|
|
@@ -3735,11 +5123,28 @@
|
|
|
3735
5123
|
"description": "The component to display inside of the tab.",
|
|
3736
5124
|
"options": []
|
|
3737
5125
|
},
|
|
5126
|
+
"ion-tab/mode": {
|
|
5127
|
+
"type": "\"ios\" | \"md\"",
|
|
5128
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5129
|
+
"options": [
|
|
5130
|
+
"ios",
|
|
5131
|
+
"md"
|
|
5132
|
+
]
|
|
5133
|
+
},
|
|
3738
5134
|
"ion-tab/tab": {
|
|
3739
5135
|
"type": "string",
|
|
3740
5136
|
"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.",
|
|
3741
5137
|
"options": []
|
|
3742
5138
|
},
|
|
5139
|
+
"ion-tab/theme": {
|
|
5140
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5141
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5142
|
+
"options": [
|
|
5143
|
+
"ios",
|
|
5144
|
+
"md",
|
|
5145
|
+
"ionic"
|
|
5146
|
+
]
|
|
5147
|
+
},
|
|
3743
5148
|
"ion-tab-bar/color": {
|
|
3744
5149
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3745
5150
|
"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).",
|
|
@@ -3755,9 +5160,22 @@
|
|
|
3755
5160
|
"warning"
|
|
3756
5161
|
]
|
|
3757
5162
|
},
|
|
5163
|
+
"ion-tab-bar/expand": {
|
|
5164
|
+
"type": "\"compact\" | \"full\"",
|
|
5165
|
+
"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\"`.",
|
|
5166
|
+
"options": [
|
|
5167
|
+
"compact",
|
|
5168
|
+
"full"
|
|
5169
|
+
]
|
|
5170
|
+
},
|
|
5171
|
+
"ion-tab-bar/hide-on-scroll": {
|
|
5172
|
+
"type": "boolean",
|
|
5173
|
+
"description": "If `true`, the tab bar will be hidden when the user scrolls down\nand shown when the user scrolls up.\nOnly applies when the theme is `\"ionic\"` and `expand` is `\"compact\"`.",
|
|
5174
|
+
"options": []
|
|
5175
|
+
},
|
|
3758
5176
|
"ion-tab-bar/mode": {
|
|
3759
5177
|
"type": "\"ios\" | \"md\"",
|
|
3760
|
-
"description": "The mode determines
|
|
5178
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3761
5179
|
"options": [
|
|
3762
5180
|
"ios",
|
|
3763
5181
|
"md"
|
|
@@ -3768,9 +5186,27 @@
|
|
|
3768
5186
|
"description": "The selected tab component",
|
|
3769
5187
|
"options": []
|
|
3770
5188
|
},
|
|
5189
|
+
"ion-tab-bar/shape": {
|
|
5190
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5191
|
+
"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.",
|
|
5192
|
+
"options": [
|
|
5193
|
+
"rectangular",
|
|
5194
|
+
"round",
|
|
5195
|
+
"soft"
|
|
5196
|
+
]
|
|
5197
|
+
},
|
|
5198
|
+
"ion-tab-bar/theme": {
|
|
5199
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5200
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5201
|
+
"options": [
|
|
5202
|
+
"ios",
|
|
5203
|
+
"md",
|
|
5204
|
+
"ionic"
|
|
5205
|
+
]
|
|
5206
|
+
},
|
|
3771
5207
|
"ion-tab-bar/translucent": {
|
|
3772
5208
|
"type": "boolean",
|
|
3773
|
-
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the
|
|
5209
|
+
"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).",
|
|
3774
5210
|
"options": []
|
|
3775
5211
|
},
|
|
3776
5212
|
"ion-tab-button/disabled": {
|
|
@@ -3802,7 +5238,7 @@
|
|
|
3802
5238
|
},
|
|
3803
5239
|
"ion-tab-button/mode": {
|
|
3804
5240
|
"type": "\"ios\" | \"md\"",
|
|
3805
|
-
"description": "The mode determines
|
|
5241
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3806
5242
|
"options": [
|
|
3807
5243
|
"ios",
|
|
3808
5244
|
"md"
|
|
@@ -3818,6 +5254,15 @@
|
|
|
3818
5254
|
"description": "The selected tab component",
|
|
3819
5255
|
"options": []
|
|
3820
5256
|
},
|
|
5257
|
+
"ion-tab-button/shape": {
|
|
5258
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5259
|
+
"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.",
|
|
5260
|
+
"options": [
|
|
5261
|
+
"rectangular",
|
|
5262
|
+
"round",
|
|
5263
|
+
"soft"
|
|
5264
|
+
]
|
|
5265
|
+
},
|
|
3821
5266
|
"ion-tab-button/tab": {
|
|
3822
5267
|
"type": "string | undefined",
|
|
3823
5268
|
"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.",
|
|
@@ -3828,6 +5273,32 @@
|
|
|
3828
5273
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3829
5274
|
"options": []
|
|
3830
5275
|
},
|
|
5276
|
+
"ion-tab-button/theme": {
|
|
5277
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5278
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5279
|
+
"options": [
|
|
5280
|
+
"ios",
|
|
5281
|
+
"md",
|
|
5282
|
+
"ionic"
|
|
5283
|
+
]
|
|
5284
|
+
},
|
|
5285
|
+
"ion-tabs/mode": {
|
|
5286
|
+
"type": "\"ios\" | \"md\"",
|
|
5287
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5288
|
+
"options": [
|
|
5289
|
+
"ios",
|
|
5290
|
+
"md"
|
|
5291
|
+
]
|
|
5292
|
+
},
|
|
5293
|
+
"ion-tabs/theme": {
|
|
5294
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5295
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5296
|
+
"options": [
|
|
5297
|
+
"ios",
|
|
5298
|
+
"md",
|
|
5299
|
+
"ionic"
|
|
5300
|
+
]
|
|
5301
|
+
},
|
|
3831
5302
|
"ion-text/color": {
|
|
3832
5303
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3833
5304
|
"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).",
|
|
@@ -3845,12 +5316,21 @@
|
|
|
3845
5316
|
},
|
|
3846
5317
|
"ion-text/mode": {
|
|
3847
5318
|
"type": "\"ios\" | \"md\"",
|
|
3848
|
-
"description": "The mode determines
|
|
5319
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3849
5320
|
"options": [
|
|
3850
5321
|
"ios",
|
|
3851
5322
|
"md"
|
|
3852
5323
|
]
|
|
3853
5324
|
},
|
|
5325
|
+
"ion-text/theme": {
|
|
5326
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5327
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5328
|
+
"options": [
|
|
5329
|
+
"ios",
|
|
5330
|
+
"md",
|
|
5331
|
+
"ionic"
|
|
5332
|
+
]
|
|
5333
|
+
},
|
|
3854
5334
|
"ion-textarea/auto-grow": {
|
|
3855
5335
|
"type": "boolean",
|
|
3856
5336
|
"description": "If `true`, the textarea container will grow and shrink based\non the contents of the textarea.",
|
|
@@ -3931,7 +5411,7 @@
|
|
|
3931
5411
|
},
|
|
3932
5412
|
"ion-textarea/fill": {
|
|
3933
5413
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
3934
|
-
"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
|
|
5414
|
+
"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\"`.",
|
|
3935
5415
|
"options": [
|
|
3936
5416
|
"outline",
|
|
3937
5417
|
"solid"
|
|
@@ -3984,7 +5464,7 @@
|
|
|
3984
5464
|
},
|
|
3985
5465
|
"ion-textarea/mode": {
|
|
3986
5466
|
"type": "\"ios\" | \"md\"",
|
|
3987
|
-
"description": "The mode determines
|
|
5467
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3988
5468
|
"options": [
|
|
3989
5469
|
"ios",
|
|
3990
5470
|
"md"
|
|
@@ -4016,10 +5496,21 @@
|
|
|
4016
5496
|
"options": []
|
|
4017
5497
|
},
|
|
4018
5498
|
"ion-textarea/shape": {
|
|
4019
|
-
"type": "\"round\" | undefined",
|
|
4020
|
-
"description": "
|
|
5499
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5500
|
+
"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.",
|
|
4021
5501
|
"options": [
|
|
4022
|
-
"
|
|
5502
|
+
"rectangular",
|
|
5503
|
+
"round",
|
|
5504
|
+
"soft"
|
|
5505
|
+
]
|
|
5506
|
+
},
|
|
5507
|
+
"ion-textarea/size": {
|
|
5508
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
5509
|
+
"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.",
|
|
5510
|
+
"options": [
|
|
5511
|
+
"large",
|
|
5512
|
+
"medium",
|
|
5513
|
+
"small"
|
|
4023
5514
|
]
|
|
4024
5515
|
},
|
|
4025
5516
|
"ion-textarea/spellcheck": {
|
|
@@ -4027,6 +5518,15 @@
|
|
|
4027
5518
|
"description": "If `true`, the element will have its spelling and grammar checked.",
|
|
4028
5519
|
"options": []
|
|
4029
5520
|
},
|
|
5521
|
+
"ion-textarea/theme": {
|
|
5522
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5523
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5524
|
+
"options": [
|
|
5525
|
+
"ios",
|
|
5526
|
+
"md",
|
|
5527
|
+
"ionic"
|
|
5528
|
+
]
|
|
5529
|
+
},
|
|
4030
5530
|
"ion-textarea/value": {
|
|
4031
5531
|
"type": "null | string | undefined",
|
|
4032
5532
|
"description": "The value of the textarea.",
|
|
@@ -4041,6 +5541,23 @@
|
|
|
4041
5541
|
"soft"
|
|
4042
5542
|
]
|
|
4043
5543
|
},
|
|
5544
|
+
"ion-thumbnail/mode": {
|
|
5545
|
+
"type": "\"ios\" | \"md\"",
|
|
5546
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5547
|
+
"options": [
|
|
5548
|
+
"ios",
|
|
5549
|
+
"md"
|
|
5550
|
+
]
|
|
5551
|
+
},
|
|
5552
|
+
"ion-thumbnail/theme": {
|
|
5553
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5554
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5555
|
+
"options": [
|
|
5556
|
+
"ios",
|
|
5557
|
+
"md",
|
|
5558
|
+
"ionic"
|
|
5559
|
+
]
|
|
5560
|
+
},
|
|
4044
5561
|
"ion-title/color": {
|
|
4045
5562
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
4046
5563
|
"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).",
|
|
@@ -4056,6 +5573,14 @@
|
|
|
4056
5573
|
"warning"
|
|
4057
5574
|
]
|
|
4058
5575
|
},
|
|
5576
|
+
"ion-title/mode": {
|
|
5577
|
+
"type": "\"ios\" | \"md\"",
|
|
5578
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5579
|
+
"options": [
|
|
5580
|
+
"ios",
|
|
5581
|
+
"md"
|
|
5582
|
+
]
|
|
5583
|
+
},
|
|
4059
5584
|
"ion-title/size": {
|
|
4060
5585
|
"type": "\"large\" | \"small\" | undefined",
|
|
4061
5586
|
"description": "The size of the toolbar title.",
|
|
@@ -4064,6 +5589,15 @@
|
|
|
4064
5589
|
"small"
|
|
4065
5590
|
]
|
|
4066
5591
|
},
|
|
5592
|
+
"ion-title/theme": {
|
|
5593
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5594
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5595
|
+
"options": [
|
|
5596
|
+
"ios",
|
|
5597
|
+
"md",
|
|
5598
|
+
"ionic"
|
|
5599
|
+
]
|
|
5600
|
+
},
|
|
4067
5601
|
"ion-toast/animated": {
|
|
4068
5602
|
"type": "boolean",
|
|
4069
5603
|
"description": "If `true`, the toast will animate.",
|
|
@@ -4114,6 +5648,14 @@
|
|
|
4114
5648
|
"description": "Additional attributes to pass to the toast.",
|
|
4115
5649
|
"options": []
|
|
4116
5650
|
},
|
|
5651
|
+
"ion-toast/hue": {
|
|
5652
|
+
"type": "\"bold\" | \"subtle\" | undefined",
|
|
5653
|
+
"description": "Set to `\"bold\"` for a toast with vibrant, bold colors or to `\"subtle\"` for\na toast with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
|
|
5654
|
+
"options": [
|
|
5655
|
+
"bold",
|
|
5656
|
+
"subtle"
|
|
5657
|
+
]
|
|
5658
|
+
},
|
|
4117
5659
|
"ion-toast/icon": {
|
|
4118
5660
|
"type": "string | undefined",
|
|
4119
5661
|
"description": "The name of the icon to display, or the path to a valid SVG file. See `ion-icon`.\nhttps://ionic.io/ionicons",
|
|
@@ -4149,7 +5691,7 @@
|
|
|
4149
5691
|
},
|
|
4150
5692
|
"ion-toast/mode": {
|
|
4151
5693
|
"type": "\"ios\" | \"md\"",
|
|
4152
|
-
"description": "The mode determines
|
|
5694
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4153
5695
|
"options": [
|
|
4154
5696
|
"ios",
|
|
4155
5697
|
"md"
|
|
@@ -4169,6 +5711,15 @@
|
|
|
4169
5711
|
"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.",
|
|
4170
5712
|
"options": []
|
|
4171
5713
|
},
|
|
5714
|
+
"ion-toast/shape": {
|
|
5715
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5716
|
+
"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.",
|
|
5717
|
+
"options": [
|
|
5718
|
+
"rectangular",
|
|
5719
|
+
"round",
|
|
5720
|
+
"soft"
|
|
5721
|
+
]
|
|
5722
|
+
},
|
|
4172
5723
|
"ion-toast/swipe-gesture": {
|
|
4173
5724
|
"type": "\"vertical\" | undefined",
|
|
4174
5725
|
"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.",
|
|
@@ -4176,9 +5727,18 @@
|
|
|
4176
5727
|
"vertical"
|
|
4177
5728
|
]
|
|
4178
5729
|
},
|
|
5730
|
+
"ion-toast/theme": {
|
|
5731
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5732
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5733
|
+
"options": [
|
|
5734
|
+
"ios",
|
|
5735
|
+
"md",
|
|
5736
|
+
"ionic"
|
|
5737
|
+
]
|
|
5738
|
+
},
|
|
4179
5739
|
"ion-toast/translucent": {
|
|
4180
5740
|
"type": "boolean",
|
|
4181
|
-
"description": "If `true`, the toast will be translucent.\nOnly applies when the
|
|
5741
|
+
"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).",
|
|
4182
5742
|
"options": []
|
|
4183
5743
|
},
|
|
4184
5744
|
"ion-toast/trigger": {
|
|
@@ -4255,7 +5815,7 @@
|
|
|
4255
5815
|
},
|
|
4256
5816
|
"ion-toggle/mode": {
|
|
4257
5817
|
"type": "\"ios\" | \"md\"",
|
|
4258
|
-
"description": "The mode determines
|
|
5818
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4259
5819
|
"options": [
|
|
4260
5820
|
"ios",
|
|
4261
5821
|
"md"
|
|
@@ -4271,6 +5831,15 @@
|
|
|
4271
5831
|
"description": "If true, screen readers will announce it as a required field. This property\nworks only for accessibility purposes, it will not prevent the form from\nsubmitting if the value is invalid.",
|
|
4272
5832
|
"options": []
|
|
4273
5833
|
},
|
|
5834
|
+
"ion-toggle/theme": {
|
|
5835
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5836
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5837
|
+
"options": [
|
|
5838
|
+
"ios",
|
|
5839
|
+
"md",
|
|
5840
|
+
"ionic"
|
|
5841
|
+
]
|
|
5842
|
+
},
|
|
4274
5843
|
"ion-toggle/value": {
|
|
4275
5844
|
"type": "null | string | undefined",
|
|
4276
5845
|
"description": "The value of the toggle does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a toggle is analogous to the value of a `<input type=\"checkbox\">`,\nit's only used when the toggle participates in a native `<form>`.",
|
|
@@ -4293,10 +5862,28 @@
|
|
|
4293
5862
|
},
|
|
4294
5863
|
"ion-toolbar/mode": {
|
|
4295
5864
|
"type": "\"ios\" | \"md\"",
|
|
4296
|
-
"description": "The mode determines
|
|
5865
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4297
5866
|
"options": [
|
|
4298
5867
|
"ios",
|
|
4299
5868
|
"md"
|
|
4300
5869
|
]
|
|
5870
|
+
},
|
|
5871
|
+
"ion-toolbar/theme": {
|
|
5872
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5873
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5874
|
+
"options": [
|
|
5875
|
+
"ios",
|
|
5876
|
+
"md",
|
|
5877
|
+
"ionic"
|
|
5878
|
+
]
|
|
5879
|
+
},
|
|
5880
|
+
"ion-toolbar/title-placement": {
|
|
5881
|
+
"type": "\"center\" | \"end\" | \"start\" | undefined",
|
|
5882
|
+
"description": "Where to place the title relative to the other toolbar content.\n`\"start\"`: The title will appear to the left of the toolbar content in LTR and to the right in RTL.\n`\"center\"`: The title will appear in the center of the toolbar.\n`\"end\"`: The title will appear to the right of the toolbar content in LTR and to the left in RTL.\n\nOnly applies in the `ionic` theme.",
|
|
5883
|
+
"options": [
|
|
5884
|
+
"center",
|
|
5885
|
+
"end",
|
|
5886
|
+
"start"
|
|
5887
|
+
]
|
|
4301
5888
|
}
|
|
4302
5889
|
}
|