@ionic/vue 8.7.4-dev.11756220757.185b8cbf → 8.7.4-dev.11756465095.1387c832
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 +192 -160
- package/dist/index.js.map +1 -1
- package/dist/types/proxies.d.ts +1 -0
- package/dist/vetur/attributes.json +1571 -179
- package/dist/vetur/tags.json +217 -45
- package/dist/web-types.json +1489 -121
- package/package.json +4 -3
|
@@ -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.",
|
|
@@ -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.",
|
|
@@ -963,6 +1302,15 @@
|
|
|
963
1302
|
"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
1303
|
"options": []
|
|
965
1304
|
},
|
|
1305
|
+
"ion-col/theme": {
|
|
1306
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1307
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1308
|
+
"options": [
|
|
1309
|
+
"ios",
|
|
1310
|
+
"md",
|
|
1311
|
+
"ionic"
|
|
1312
|
+
]
|
|
1313
|
+
},
|
|
966
1314
|
"ion-content/color": {
|
|
967
1315
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
968
1316
|
"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 +1344,14 @@
|
|
|
996
1344
|
"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
1345
|
"options": []
|
|
998
1346
|
},
|
|
1347
|
+
"ion-content/mode": {
|
|
1348
|
+
"type": "\"ios\" | \"md\"",
|
|
1349
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1350
|
+
"options": [
|
|
1351
|
+
"ios",
|
|
1352
|
+
"md"
|
|
1353
|
+
]
|
|
1354
|
+
},
|
|
999
1355
|
"ion-content/scroll-events": {
|
|
1000
1356
|
"type": "boolean",
|
|
1001
1357
|
"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 +1367,15 @@
|
|
|
1011
1367
|
"description": "If you want to disable the content scrolling in the Y axis, set this property to `false`.",
|
|
1012
1368
|
"options": []
|
|
1013
1369
|
},
|
|
1370
|
+
"ion-content/theme": {
|
|
1371
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1372
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1373
|
+
"options": [
|
|
1374
|
+
"ios",
|
|
1375
|
+
"md",
|
|
1376
|
+
"ionic"
|
|
1377
|
+
]
|
|
1378
|
+
},
|
|
1014
1379
|
"ion-datetime/cancel-text": {
|
|
1015
1380
|
"type": "string",
|
|
1016
1381
|
"description": "The text to display on the picker's cancel button.",
|
|
@@ -1108,7 +1473,7 @@
|
|
|
1108
1473
|
},
|
|
1109
1474
|
"ion-datetime/mode": {
|
|
1110
1475
|
"type": "\"ios\" | \"md\"",
|
|
1111
|
-
"description": "The mode determines
|
|
1476
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1112
1477
|
"options": [
|
|
1113
1478
|
"ios",
|
|
1114
1479
|
"md"
|
|
@@ -1185,6 +1550,15 @@
|
|
|
1185
1550
|
"fixed"
|
|
1186
1551
|
]
|
|
1187
1552
|
},
|
|
1553
|
+
"ion-datetime/theme": {
|
|
1554
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1555
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1556
|
+
"options": [
|
|
1557
|
+
"ios",
|
|
1558
|
+
"md",
|
|
1559
|
+
"ionic"
|
|
1560
|
+
]
|
|
1561
|
+
},
|
|
1188
1562
|
"ion-datetime/title-selected-dates-formatter": {
|
|
1189
1563
|
"type": "((selectedDates: string[]) => string) | undefined",
|
|
1190
1564
|
"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 +1601,39 @@
|
|
|
1227
1601
|
},
|
|
1228
1602
|
"ion-datetime-button/mode": {
|
|
1229
1603
|
"type": "\"ios\" | \"md\"",
|
|
1230
|
-
"description": "The mode determines
|
|
1604
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1231
1605
|
"options": [
|
|
1232
1606
|
"ios",
|
|
1233
1607
|
"md"
|
|
1234
1608
|
]
|
|
1235
1609
|
},
|
|
1610
|
+
"ion-datetime-button/theme": {
|
|
1611
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1612
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1613
|
+
"options": [
|
|
1614
|
+
"ios",
|
|
1615
|
+
"md",
|
|
1616
|
+
"ionic"
|
|
1617
|
+
]
|
|
1618
|
+
},
|
|
1619
|
+
"ion-divider/inset": {
|
|
1620
|
+
"type": "boolean",
|
|
1621
|
+
"description": "If `true`, the divider will have horizontal margins\nBy default, it's `false`",
|
|
1622
|
+
"options": []
|
|
1623
|
+
},
|
|
1624
|
+
"ion-divider/spacing": {
|
|
1625
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxlarge\" | \"xxsmall\" | undefined",
|
|
1626
|
+
"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\"`.",
|
|
1627
|
+
"options": [
|
|
1628
|
+
"large",
|
|
1629
|
+
"medium",
|
|
1630
|
+
"small",
|
|
1631
|
+
"xlarge",
|
|
1632
|
+
"xsmall",
|
|
1633
|
+
"xxlarge",
|
|
1634
|
+
"xxsmall"
|
|
1635
|
+
]
|
|
1636
|
+
},
|
|
1236
1637
|
"ion-fab/activated": {
|
|
1237
1638
|
"type": "boolean",
|
|
1238
1639
|
"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,6 +1653,23 @@
|
|
|
1252
1653
|
"start"
|
|
1253
1654
|
]
|
|
1254
1655
|
},
|
|
1656
|
+
"ion-fab/mode": {
|
|
1657
|
+
"type": "\"ios\" | \"md\"",
|
|
1658
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1659
|
+
"options": [
|
|
1660
|
+
"ios",
|
|
1661
|
+
"md"
|
|
1662
|
+
]
|
|
1663
|
+
},
|
|
1664
|
+
"ion-fab/theme": {
|
|
1665
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1666
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1667
|
+
"options": [
|
|
1668
|
+
"ios",
|
|
1669
|
+
"md",
|
|
1670
|
+
"ionic"
|
|
1671
|
+
]
|
|
1672
|
+
},
|
|
1255
1673
|
"ion-fab/vertical": {
|
|
1256
1674
|
"type": "\"bottom\" | \"center\" | \"top\" | undefined",
|
|
1257
1675
|
"description": "Where to align the fab vertically in the viewport.",
|
|
@@ -1267,7 +1685,7 @@
|
|
|
1267
1685
|
"options": []
|
|
1268
1686
|
},
|
|
1269
1687
|
"ion-fab-button/close-icon": {
|
|
1270
|
-
"type": "string",
|
|
1688
|
+
"type": "string | undefined",
|
|
1271
1689
|
"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
1690
|
"options": []
|
|
1273
1691
|
},
|
|
@@ -1303,7 +1721,7 @@
|
|
|
1303
1721
|
},
|
|
1304
1722
|
"ion-fab-button/mode": {
|
|
1305
1723
|
"type": "\"ios\" | \"md\"",
|
|
1306
|
-
"description": "The mode determines
|
|
1724
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1307
1725
|
"options": [
|
|
1308
1726
|
"ios",
|
|
1309
1727
|
"md"
|
|
@@ -1345,9 +1763,18 @@
|
|
|
1345
1763
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1346
1764
|
"options": []
|
|
1347
1765
|
},
|
|
1766
|
+
"ion-fab-button/theme": {
|
|
1767
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1768
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1769
|
+
"options": [
|
|
1770
|
+
"ios",
|
|
1771
|
+
"md",
|
|
1772
|
+
"ionic"
|
|
1773
|
+
]
|
|
1774
|
+
},
|
|
1348
1775
|
"ion-fab-button/translucent": {
|
|
1349
1776
|
"type": "boolean",
|
|
1350
|
-
"description": "If `true`, the fab button will be translucent.\nOnly applies when the
|
|
1777
|
+
"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
1778
|
"options": []
|
|
1352
1779
|
},
|
|
1353
1780
|
"ion-fab-button/type": {
|
|
@@ -1364,34 +1791,60 @@
|
|
|
1364
1791
|
"description": "If `true`, the fab list will show all fab buttons in the list.",
|
|
1365
1792
|
"options": []
|
|
1366
1793
|
},
|
|
1367
|
-
"ion-fab-list/
|
|
1368
|
-
"type": "\"
|
|
1369
|
-
"description": "The
|
|
1794
|
+
"ion-fab-list/mode": {
|
|
1795
|
+
"type": "\"ios\" | \"md\"",
|
|
1796
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1370
1797
|
"options": [
|
|
1371
|
-
"
|
|
1798
|
+
"ios",
|
|
1799
|
+
"md"
|
|
1800
|
+
]
|
|
1801
|
+
},
|
|
1802
|
+
"ion-fab-list/side": {
|
|
1803
|
+
"type": "\"bottom\" | \"end\" | \"start\" | \"top\"",
|
|
1804
|
+
"description": "The side the fab list will show on relative to the main fab button.",
|
|
1805
|
+
"options": [
|
|
1806
|
+
"bottom",
|
|
1372
1807
|
"end",
|
|
1373
1808
|
"start",
|
|
1374
1809
|
"top"
|
|
1375
1810
|
]
|
|
1376
1811
|
},
|
|
1812
|
+
"ion-fab-list/theme": {
|
|
1813
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1814
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1815
|
+
"options": [
|
|
1816
|
+
"ios",
|
|
1817
|
+
"md",
|
|
1818
|
+
"ionic"
|
|
1819
|
+
]
|
|
1820
|
+
},
|
|
1377
1821
|
"ion-footer/collapse": {
|
|
1378
1822
|
"type": "\"fade\" | undefined",
|
|
1379
|
-
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies
|
|
1823
|
+
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies when the theme is `\"ios\"`.",
|
|
1380
1824
|
"options": [
|
|
1381
1825
|
"fade"
|
|
1382
1826
|
]
|
|
1383
1827
|
},
|
|
1384
1828
|
"ion-footer/mode": {
|
|
1385
1829
|
"type": "\"ios\" | \"md\"",
|
|
1386
|
-
"description": "The mode determines
|
|
1830
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1387
1831
|
"options": [
|
|
1388
1832
|
"ios",
|
|
1389
1833
|
"md"
|
|
1390
1834
|
]
|
|
1391
1835
|
},
|
|
1836
|
+
"ion-footer/theme": {
|
|
1837
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1838
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1839
|
+
"options": [
|
|
1840
|
+
"ios",
|
|
1841
|
+
"md",
|
|
1842
|
+
"ionic"
|
|
1843
|
+
]
|
|
1844
|
+
},
|
|
1392
1845
|
"ion-footer/translucent": {
|
|
1393
1846
|
"type": "boolean",
|
|
1394
|
-
"description": "If `true`, the footer will be translucent.\nOnly applies when the
|
|
1847
|
+
"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.",
|
|
1395
1848
|
"options": []
|
|
1396
1849
|
},
|
|
1397
1850
|
"ion-grid/fixed": {
|
|
@@ -1399,25 +1852,56 @@
|
|
|
1399
1852
|
"description": "If `true`, the grid will have a fixed width based on the screen size.",
|
|
1400
1853
|
"options": []
|
|
1401
1854
|
},
|
|
1855
|
+
"ion-grid/mode": {
|
|
1856
|
+
"type": "\"ios\" | \"md\"",
|
|
1857
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1858
|
+
"options": [
|
|
1859
|
+
"ios",
|
|
1860
|
+
"md"
|
|
1861
|
+
]
|
|
1862
|
+
},
|
|
1863
|
+
"ion-grid/theme": {
|
|
1864
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1865
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1866
|
+
"options": [
|
|
1867
|
+
"ios",
|
|
1868
|
+
"md",
|
|
1869
|
+
"ionic"
|
|
1870
|
+
]
|
|
1871
|
+
},
|
|
1402
1872
|
"ion-header/collapse": {
|
|
1403
1873
|
"type": "\"condense\" | \"fade\" | undefined",
|
|
1404
|
-
"description": "Describes the scroll effect that will be applied to the header.\nOnly applies
|
|
1874
|
+
"description": "Describes the scroll effect that will be applied to the header.\nOnly applies when the theme is `\"ios\"`.\n\nTypically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)",
|
|
1405
1875
|
"options": [
|
|
1406
1876
|
"condense",
|
|
1407
1877
|
"fade"
|
|
1408
1878
|
]
|
|
1409
1879
|
},
|
|
1880
|
+
"ion-header/divider": {
|
|
1881
|
+
"type": "boolean",
|
|
1882
|
+
"description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes",
|
|
1883
|
+
"options": []
|
|
1884
|
+
},
|
|
1410
1885
|
"ion-header/mode": {
|
|
1411
1886
|
"type": "\"ios\" | \"md\"",
|
|
1412
|
-
"description": "The mode determines
|
|
1887
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1413
1888
|
"options": [
|
|
1414
1889
|
"ios",
|
|
1415
1890
|
"md"
|
|
1416
1891
|
]
|
|
1417
1892
|
},
|
|
1893
|
+
"ion-header/theme": {
|
|
1894
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1895
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1896
|
+
"options": [
|
|
1897
|
+
"ios",
|
|
1898
|
+
"md",
|
|
1899
|
+
"ionic"
|
|
1900
|
+
]
|
|
1901
|
+
},
|
|
1418
1902
|
"ion-header/translucent": {
|
|
1419
1903
|
"type": "boolean",
|
|
1420
|
-
"description": "If `true`, the header will be translucent.\nOnly applies when the
|
|
1904
|
+
"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
1905
|
"options": []
|
|
1422
1906
|
},
|
|
1423
1907
|
"ion-img/alt": {
|
|
@@ -1425,16 +1909,41 @@
|
|
|
1425
1909
|
"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
1910
|
"options": []
|
|
1427
1911
|
},
|
|
1912
|
+
"ion-img/mode": {
|
|
1913
|
+
"type": "\"ios\" | \"md\"",
|
|
1914
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1915
|
+
"options": [
|
|
1916
|
+
"ios",
|
|
1917
|
+
"md"
|
|
1918
|
+
]
|
|
1919
|
+
},
|
|
1428
1920
|
"ion-img/src": {
|
|
1429
1921
|
"type": "string | undefined",
|
|
1430
1922
|
"description": "The image URL. This attribute is mandatory for the `<img>` element.",
|
|
1431
1923
|
"options": []
|
|
1432
1924
|
},
|
|
1925
|
+
"ion-img/theme": {
|
|
1926
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1927
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1928
|
+
"options": [
|
|
1929
|
+
"ios",
|
|
1930
|
+
"md",
|
|
1931
|
+
"ionic"
|
|
1932
|
+
]
|
|
1933
|
+
},
|
|
1433
1934
|
"ion-infinite-scroll/disabled": {
|
|
1434
1935
|
"type": "boolean",
|
|
1435
1936
|
"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
1937
|
"options": []
|
|
1437
1938
|
},
|
|
1939
|
+
"ion-infinite-scroll/mode": {
|
|
1940
|
+
"type": "\"ios\" | \"md\"",
|
|
1941
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1942
|
+
"options": [
|
|
1943
|
+
"ios",
|
|
1944
|
+
"md"
|
|
1945
|
+
]
|
|
1946
|
+
},
|
|
1438
1947
|
"ion-infinite-scroll/position": {
|
|
1439
1948
|
"type": "\"bottom\" | \"top\"",
|
|
1440
1949
|
"description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
|
|
@@ -1443,6 +1952,20 @@
|
|
|
1443
1952
|
"top"
|
|
1444
1953
|
]
|
|
1445
1954
|
},
|
|
1955
|
+
"ion-infinite-scroll/preserve-rerender-scroll-position": {
|
|
1956
|
+
"type": "boolean",
|
|
1957
|
+
"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.",
|
|
1958
|
+
"options": []
|
|
1959
|
+
},
|
|
1960
|
+
"ion-infinite-scroll/theme": {
|
|
1961
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
1962
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1963
|
+
"options": [
|
|
1964
|
+
"ios",
|
|
1965
|
+
"md",
|
|
1966
|
+
"ionic"
|
|
1967
|
+
]
|
|
1968
|
+
},
|
|
1446
1969
|
"ion-infinite-scroll/threshold": {
|
|
1447
1970
|
"type": "string",
|
|
1448
1971
|
"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,67 +1991,84 @@
|
|
|
1468
1991
|
"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
1992
|
"options": []
|
|
1470
1993
|
},
|
|
1994
|
+
"ion-infinite-scroll-content/mode": {
|
|
1995
|
+
"type": "\"ios\" | \"md\"",
|
|
1996
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1997
|
+
"options": [
|
|
1998
|
+
"ios",
|
|
1999
|
+
"md"
|
|
2000
|
+
]
|
|
2001
|
+
},
|
|
2002
|
+
"ion-infinite-scroll-content/theme": {
|
|
2003
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2004
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2005
|
+
"options": [
|
|
2006
|
+
"ios",
|
|
2007
|
+
"md",
|
|
2008
|
+
"ionic"
|
|
2009
|
+
]
|
|
2010
|
+
},
|
|
1471
2011
|
"ion-input/autocapitalize": {
|
|
1472
2012
|
"type": "string",
|
|
1473
2013
|
"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\"`.",
|
|
1474
2014
|
"options": []
|
|
1475
2015
|
},
|
|
1476
2016
|
"ion-input/autocomplete": {
|
|
1477
|
-
"type": "\"name\" | \"
|
|
2017
|
+
"type": "\"name\" | \"url\" | \"off\" | \"on\" | \"additional-name\" | \"address-level1\" | \"address-level2\" | \"address-level3\" | \"address-level4\" | \"address-line1\" | \"address-line2\" | \"address-line3\" | \"bday-day\" | \"bday-month\" | \"bday-year\" | \"cc-csc\" | \"cc-exp\" | \"cc-exp-month\" | \"cc-exp-year\" | \"cc-family-name\" | \"cc-given-name\" | \"cc-name\" | \"cc-number\" | \"cc-type\" | \"country\" | \"country-name\" | \"current-password\" | \"family-name\" | \"given-name\" | \"honorific-prefix\" | \"honorific-suffix\" | \"new-password\" | \"one-time-code\" | \"organization\" | \"postal-code\" | \"street-address\" | \"transaction-amount\" | \"transaction-currency\" | \"username\" | \"email\" | \"tel\" | \"tel-area-code\" | \"tel-country-code\" | \"tel-extension\" | \"tel-local\" | \"tel-national\" | \"nickname\" | \"organization-title\" | \"cc-additional-name\" | \"language\" | \"bday\" | \"sex\" | \"impp\" | \"photo\"",
|
|
1478
2018
|
"description": "Indicates whether the value of the control can be automatically completed by the browser.",
|
|
1479
2019
|
"options": [
|
|
1480
2020
|
"name",
|
|
1481
|
-
"email",
|
|
1482
|
-
"tel",
|
|
1483
2021
|
"url",
|
|
1484
|
-
"on",
|
|
1485
2022
|
"off",
|
|
1486
|
-
"
|
|
1487
|
-
"given-name",
|
|
2023
|
+
"on",
|
|
1488
2024
|
"additional-name",
|
|
1489
|
-
"
|
|
1490
|
-
"
|
|
1491
|
-
"
|
|
1492
|
-
"
|
|
1493
|
-
"new-password",
|
|
1494
|
-
"current-password",
|
|
1495
|
-
"one-time-code",
|
|
1496
|
-
"organization-title",
|
|
1497
|
-
"organization",
|
|
1498
|
-
"street-address",
|
|
2025
|
+
"address-level1",
|
|
2026
|
+
"address-level2",
|
|
2027
|
+
"address-level3",
|
|
2028
|
+
"address-level4",
|
|
1499
2029
|
"address-line1",
|
|
1500
2030
|
"address-line2",
|
|
1501
2031
|
"address-line3",
|
|
1502
|
-
"
|
|
1503
|
-
"
|
|
1504
|
-
"
|
|
1505
|
-
"
|
|
1506
|
-
"country",
|
|
1507
|
-
"country-name",
|
|
1508
|
-
"postal-code",
|
|
1509
|
-
"cc-name",
|
|
1510
|
-
"cc-given-name",
|
|
1511
|
-
"cc-additional-name",
|
|
1512
|
-
"cc-family-name",
|
|
1513
|
-
"cc-number",
|
|
2032
|
+
"bday-day",
|
|
2033
|
+
"bday-month",
|
|
2034
|
+
"bday-year",
|
|
2035
|
+
"cc-csc",
|
|
1514
2036
|
"cc-exp",
|
|
1515
2037
|
"cc-exp-month",
|
|
1516
2038
|
"cc-exp-year",
|
|
1517
|
-
"cc-
|
|
2039
|
+
"cc-family-name",
|
|
2040
|
+
"cc-given-name",
|
|
2041
|
+
"cc-name",
|
|
2042
|
+
"cc-number",
|
|
1518
2043
|
"cc-type",
|
|
1519
|
-
"
|
|
2044
|
+
"country",
|
|
2045
|
+
"country-name",
|
|
2046
|
+
"current-password",
|
|
2047
|
+
"family-name",
|
|
2048
|
+
"given-name",
|
|
2049
|
+
"honorific-prefix",
|
|
2050
|
+
"honorific-suffix",
|
|
2051
|
+
"new-password",
|
|
2052
|
+
"one-time-code",
|
|
2053
|
+
"organization",
|
|
2054
|
+
"postal-code",
|
|
2055
|
+
"street-address",
|
|
1520
2056
|
"transaction-amount",
|
|
2057
|
+
"transaction-currency",
|
|
2058
|
+
"username",
|
|
2059
|
+
"email",
|
|
2060
|
+
"tel",
|
|
2061
|
+
"tel-area-code",
|
|
2062
|
+
"tel-country-code",
|
|
2063
|
+
"tel-extension",
|
|
2064
|
+
"tel-local",
|
|
2065
|
+
"tel-national",
|
|
2066
|
+
"nickname",
|
|
2067
|
+
"organization-title",
|
|
2068
|
+
"cc-additional-name",
|
|
1521
2069
|
"language",
|
|
1522
2070
|
"bday",
|
|
1523
|
-
"bday-day",
|
|
1524
|
-
"bday-month",
|
|
1525
|
-
"bday-year",
|
|
1526
2071
|
"sex",
|
|
1527
|
-
"tel-country-code",
|
|
1528
|
-
"tel-national",
|
|
1529
|
-
"tel-area-code",
|
|
1530
|
-
"tel-local",
|
|
1531
|
-
"tel-extension",
|
|
1532
2072
|
"impp",
|
|
1533
2073
|
"photo"
|
|
1534
2074
|
]
|
|
@@ -1616,7 +2156,7 @@
|
|
|
1616
2156
|
},
|
|
1617
2157
|
"ion-input/fill": {
|
|
1618
2158
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
1619
|
-
"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
|
|
2159
|
+
"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\"`.",
|
|
1620
2160
|
"options": [
|
|
1621
2161
|
"outline",
|
|
1622
2162
|
"solid"
|
|
@@ -1647,8 +2187,8 @@
|
|
|
1647
2187
|
"options": []
|
|
1648
2188
|
},
|
|
1649
2189
|
"ion-input/label-placement": {
|
|
1650
|
-
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\"",
|
|
1651
|
-
"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 (\"...\").",
|
|
2190
|
+
"type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\" | undefined",
|
|
2191
|
+
"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.",
|
|
1652
2192
|
"options": [
|
|
1653
2193
|
"end",
|
|
1654
2194
|
"fixed",
|
|
@@ -1679,7 +2219,7 @@
|
|
|
1679
2219
|
},
|
|
1680
2220
|
"ion-input/mode": {
|
|
1681
2221
|
"type": "\"ios\" | \"md\"",
|
|
1682
|
-
"description": "The mode determines
|
|
2222
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1683
2223
|
"options": [
|
|
1684
2224
|
"ios",
|
|
1685
2225
|
"md"
|
|
@@ -1716,10 +2256,21 @@
|
|
|
1716
2256
|
"options": []
|
|
1717
2257
|
},
|
|
1718
2258
|
"ion-input/shape": {
|
|
1719
|
-
"type": "\"round\" | undefined",
|
|
1720
|
-
"description": "
|
|
2259
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2260
|
+
"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\"`.",
|
|
1721
2261
|
"options": [
|
|
1722
|
-
"
|
|
2262
|
+
"rectangular",
|
|
2263
|
+
"round",
|
|
2264
|
+
"soft"
|
|
2265
|
+
]
|
|
2266
|
+
},
|
|
2267
|
+
"ion-input/size": {
|
|
2268
|
+
"type": "\"large\" | \"medium\" | \"xlarge\" | undefined",
|
|
2269
|
+
"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.",
|
|
2270
|
+
"options": [
|
|
2271
|
+
"large",
|
|
2272
|
+
"medium",
|
|
2273
|
+
"xlarge"
|
|
1723
2274
|
]
|
|
1724
2275
|
},
|
|
1725
2276
|
"ion-input/spellcheck": {
|
|
@@ -1732,6 +2283,15 @@
|
|
|
1732
2283
|
"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.",
|
|
1733
2284
|
"options": []
|
|
1734
2285
|
},
|
|
2286
|
+
"ion-input/theme": {
|
|
2287
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2288
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2289
|
+
"options": [
|
|
2290
|
+
"ios",
|
|
2291
|
+
"md",
|
|
2292
|
+
"ionic"
|
|
2293
|
+
]
|
|
2294
|
+
},
|
|
1735
2295
|
"ion-input/type": {
|
|
1736
2296
|
"type": "\"date\" | \"datetime-local\" | \"email\" | \"month\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"time\" | \"url\" | \"week\"",
|
|
1737
2297
|
"description": "The type of control to display. The default type is text.",
|
|
@@ -1908,11 +2468,11 @@
|
|
|
1908
2468
|
},
|
|
1909
2469
|
"ion-item/detail": {
|
|
1910
2470
|
"type": "boolean | undefined",
|
|
1911
|
-
"description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `
|
|
2471
|
+
"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.",
|
|
1912
2472
|
"options": []
|
|
1913
2473
|
},
|
|
1914
2474
|
"ion-item/detail-icon": {
|
|
1915
|
-
"type": "string",
|
|
2475
|
+
"type": "string | undefined",
|
|
1916
2476
|
"description": "The icon to use when `detail` is set to `true`.",
|
|
1917
2477
|
"options": []
|
|
1918
2478
|
},
|
|
@@ -1942,7 +2502,7 @@
|
|
|
1942
2502
|
},
|
|
1943
2503
|
"ion-item/mode": {
|
|
1944
2504
|
"type": "\"ios\" | \"md\"",
|
|
1945
|
-
"description": "The mode determines
|
|
2505
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1946
2506
|
"options": [
|
|
1947
2507
|
"ios",
|
|
1948
2508
|
"md"
|
|
@@ -1972,6 +2532,15 @@
|
|
|
1972
2532
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
1973
2533
|
"options": []
|
|
1974
2534
|
},
|
|
2535
|
+
"ion-item/theme": {
|
|
2536
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2537
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2538
|
+
"options": [
|
|
2539
|
+
"ios",
|
|
2540
|
+
"md",
|
|
2541
|
+
"ionic"
|
|
2542
|
+
]
|
|
2543
|
+
},
|
|
1975
2544
|
"ion-item/type": {
|
|
1976
2545
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
1977
2546
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -1998,7 +2567,7 @@
|
|
|
1998
2567
|
},
|
|
1999
2568
|
"ion-item-divider/mode": {
|
|
2000
2569
|
"type": "\"ios\" | \"md\"",
|
|
2001
|
-
"description": "The mode determines
|
|
2570
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2002
2571
|
"options": [
|
|
2003
2572
|
"ios",
|
|
2004
2573
|
"md"
|
|
@@ -2009,6 +2578,32 @@
|
|
|
2009
2578
|
"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",
|
|
2010
2579
|
"options": []
|
|
2011
2580
|
},
|
|
2581
|
+
"ion-item-divider/theme": {
|
|
2582
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2583
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2584
|
+
"options": [
|
|
2585
|
+
"ios",
|
|
2586
|
+
"md",
|
|
2587
|
+
"ionic"
|
|
2588
|
+
]
|
|
2589
|
+
},
|
|
2590
|
+
"ion-item-group/mode": {
|
|
2591
|
+
"type": "\"ios\" | \"md\"",
|
|
2592
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2593
|
+
"options": [
|
|
2594
|
+
"ios",
|
|
2595
|
+
"md"
|
|
2596
|
+
]
|
|
2597
|
+
},
|
|
2598
|
+
"ion-item-group/theme": {
|
|
2599
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2600
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2601
|
+
"options": [
|
|
2602
|
+
"ios",
|
|
2603
|
+
"md",
|
|
2604
|
+
"ionic"
|
|
2605
|
+
]
|
|
2606
|
+
},
|
|
2012
2607
|
"ion-item-option/color": {
|
|
2013
2608
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2014
2609
|
"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).",
|
|
@@ -2044,9 +2639,17 @@
|
|
|
2044
2639
|
"description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered.",
|
|
2045
2640
|
"options": []
|
|
2046
2641
|
},
|
|
2642
|
+
"ion-item-option/hue": {
|
|
2643
|
+
"type": "\"bold\" | \"subtle\" | undefined",
|
|
2644
|
+
"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.",
|
|
2645
|
+
"options": [
|
|
2646
|
+
"bold",
|
|
2647
|
+
"subtle"
|
|
2648
|
+
]
|
|
2649
|
+
},
|
|
2047
2650
|
"ion-item-option/mode": {
|
|
2048
2651
|
"type": "\"ios\" | \"md\"",
|
|
2049
|
-
"description": "The mode determines
|
|
2652
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2050
2653
|
"options": [
|
|
2051
2654
|
"ios",
|
|
2052
2655
|
"md"
|
|
@@ -2057,11 +2660,29 @@
|
|
|
2057
2660
|
"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).",
|
|
2058
2661
|
"options": []
|
|
2059
2662
|
},
|
|
2663
|
+
"ion-item-option/shape": {
|
|
2664
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2665
|
+
"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.",
|
|
2666
|
+
"options": [
|
|
2667
|
+
"rectangular",
|
|
2668
|
+
"round",
|
|
2669
|
+
"soft"
|
|
2670
|
+
]
|
|
2671
|
+
},
|
|
2060
2672
|
"ion-item-option/target": {
|
|
2061
2673
|
"type": "string | undefined",
|
|
2062
2674
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
2063
2675
|
"options": []
|
|
2064
2676
|
},
|
|
2677
|
+
"ion-item-option/theme": {
|
|
2678
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2679
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2680
|
+
"options": [
|
|
2681
|
+
"ios",
|
|
2682
|
+
"md",
|
|
2683
|
+
"ionic"
|
|
2684
|
+
]
|
|
2685
|
+
},
|
|
2065
2686
|
"ion-item-option/type": {
|
|
2066
2687
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
2067
2688
|
"description": "The type of the button.",
|
|
@@ -2071,6 +2692,14 @@
|
|
|
2071
2692
|
"submit"
|
|
2072
2693
|
]
|
|
2073
2694
|
},
|
|
2695
|
+
"ion-item-options/mode": {
|
|
2696
|
+
"type": "\"ios\" | \"md\"",
|
|
2697
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2698
|
+
"options": [
|
|
2699
|
+
"ios",
|
|
2700
|
+
"md"
|
|
2701
|
+
]
|
|
2702
|
+
},
|
|
2074
2703
|
"ion-item-options/side": {
|
|
2075
2704
|
"type": "\"end\" | \"start\"",
|
|
2076
2705
|
"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.",
|
|
@@ -2079,11 +2708,37 @@
|
|
|
2079
2708
|
"start"
|
|
2080
2709
|
]
|
|
2081
2710
|
},
|
|
2711
|
+
"ion-item-options/theme": {
|
|
2712
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2713
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2714
|
+
"options": [
|
|
2715
|
+
"ios",
|
|
2716
|
+
"md",
|
|
2717
|
+
"ionic"
|
|
2718
|
+
]
|
|
2719
|
+
},
|
|
2082
2720
|
"ion-item-sliding/disabled": {
|
|
2083
2721
|
"type": "boolean",
|
|
2084
2722
|
"description": "If `true`, the user cannot interact with the sliding item.",
|
|
2085
2723
|
"options": []
|
|
2086
2724
|
},
|
|
2725
|
+
"ion-item-sliding/mode": {
|
|
2726
|
+
"type": "\"ios\" | \"md\"",
|
|
2727
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2728
|
+
"options": [
|
|
2729
|
+
"ios",
|
|
2730
|
+
"md"
|
|
2731
|
+
]
|
|
2732
|
+
},
|
|
2733
|
+
"ion-item-sliding/theme": {
|
|
2734
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2735
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2736
|
+
"options": [
|
|
2737
|
+
"ios",
|
|
2738
|
+
"md",
|
|
2739
|
+
"ionic"
|
|
2740
|
+
]
|
|
2741
|
+
},
|
|
2087
2742
|
"ion-label/color": {
|
|
2088
2743
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2089
2744
|
"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).",
|
|
@@ -2101,7 +2756,7 @@
|
|
|
2101
2756
|
},
|
|
2102
2757
|
"ion-label/mode": {
|
|
2103
2758
|
"type": "\"ios\" | \"md\"",
|
|
2104
|
-
"description": "The mode determines
|
|
2759
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2105
2760
|
"options": [
|
|
2106
2761
|
"ios",
|
|
2107
2762
|
"md"
|
|
@@ -2116,6 +2771,15 @@
|
|
|
2116
2771
|
"stacked"
|
|
2117
2772
|
]
|
|
2118
2773
|
},
|
|
2774
|
+
"ion-label/theme": {
|
|
2775
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2776
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2777
|
+
"options": [
|
|
2778
|
+
"ios",
|
|
2779
|
+
"md",
|
|
2780
|
+
"ionic"
|
|
2781
|
+
]
|
|
2782
|
+
},
|
|
2119
2783
|
"ion-list/inset": {
|
|
2120
2784
|
"type": "boolean",
|
|
2121
2785
|
"description": "If `true`, the list will have margin around it and rounded corners.",
|
|
@@ -2132,12 +2796,30 @@
|
|
|
2132
2796
|
},
|
|
2133
2797
|
"ion-list/mode": {
|
|
2134
2798
|
"type": "\"ios\" | \"md\"",
|
|
2135
|
-
"description": "The mode determines
|
|
2799
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2136
2800
|
"options": [
|
|
2137
2801
|
"ios",
|
|
2138
2802
|
"md"
|
|
2139
2803
|
]
|
|
2140
2804
|
},
|
|
2805
|
+
"ion-list/shape": {
|
|
2806
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
2807
|
+
"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.",
|
|
2808
|
+
"options": [
|
|
2809
|
+
"rectangular",
|
|
2810
|
+
"round",
|
|
2811
|
+
"soft"
|
|
2812
|
+
]
|
|
2813
|
+
},
|
|
2814
|
+
"ion-list/theme": {
|
|
2815
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2816
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2817
|
+
"options": [
|
|
2818
|
+
"ios",
|
|
2819
|
+
"md",
|
|
2820
|
+
"ionic"
|
|
2821
|
+
]
|
|
2822
|
+
},
|
|
2141
2823
|
"ion-list-header/color": {
|
|
2142
2824
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2143
2825
|
"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).",
|
|
@@ -2164,12 +2846,21 @@
|
|
|
2164
2846
|
},
|
|
2165
2847
|
"ion-list-header/mode": {
|
|
2166
2848
|
"type": "\"ios\" | \"md\"",
|
|
2167
|
-
"description": "The mode determines
|
|
2849
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2168
2850
|
"options": [
|
|
2169
2851
|
"ios",
|
|
2170
2852
|
"md"
|
|
2171
2853
|
]
|
|
2172
2854
|
},
|
|
2855
|
+
"ion-list-header/theme": {
|
|
2856
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2857
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2858
|
+
"options": [
|
|
2859
|
+
"ios",
|
|
2860
|
+
"md",
|
|
2861
|
+
"ionic"
|
|
2862
|
+
]
|
|
2863
|
+
},
|
|
2173
2864
|
"ion-loading/animated": {
|
|
2174
2865
|
"type": "boolean",
|
|
2175
2866
|
"description": "If `true`, the loading indicator will animate.",
|
|
@@ -2222,7 +2913,7 @@
|
|
|
2222
2913
|
},
|
|
2223
2914
|
"ion-loading/mode": {
|
|
2224
2915
|
"type": "\"ios\" | \"md\"",
|
|
2225
|
-
"description": "The mode determines
|
|
2916
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2226
2917
|
"options": [
|
|
2227
2918
|
"ios",
|
|
2228
2919
|
"md"
|
|
@@ -2248,9 +2939,18 @@
|
|
|
2248
2939
|
"lines-small"
|
|
2249
2940
|
]
|
|
2250
2941
|
},
|
|
2942
|
+
"ion-loading/theme": {
|
|
2943
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
2944
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2945
|
+
"options": [
|
|
2946
|
+
"ios",
|
|
2947
|
+
"md",
|
|
2948
|
+
"ionic"
|
|
2949
|
+
]
|
|
2950
|
+
},
|
|
2251
2951
|
"ion-loading/translucent": {
|
|
2252
2952
|
"type": "boolean",
|
|
2253
|
-
"description": "If `true`, the loading indicator will be translucent.\nOnly applies when the
|
|
2953
|
+
"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).",
|
|
2254
2954
|
"options": []
|
|
2255
2955
|
},
|
|
2256
2956
|
"ion-loading/trigger": {
|
|
@@ -2278,6 +2978,14 @@
|
|
|
2278
2978
|
"description": "An id for the menu.",
|
|
2279
2979
|
"options": []
|
|
2280
2980
|
},
|
|
2981
|
+
"ion-menu/mode": {
|
|
2982
|
+
"type": "\"ios\" | \"md\"",
|
|
2983
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2984
|
+
"options": [
|
|
2985
|
+
"ios",
|
|
2986
|
+
"md"
|
|
2987
|
+
]
|
|
2988
|
+
},
|
|
2281
2989
|
"ion-menu/side": {
|
|
2282
2990
|
"type": "\"end\" | \"start\"",
|
|
2283
2991
|
"description": "Which side of the view the menu should be placed.",
|
|
@@ -2291,6 +2999,15 @@
|
|
|
2291
2999
|
"description": "If `true`, swiping the menu is enabled.",
|
|
2292
3000
|
"options": []
|
|
2293
3001
|
},
|
|
3002
|
+
"ion-menu/theme": {
|
|
3003
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3004
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3005
|
+
"options": [
|
|
3006
|
+
"ios",
|
|
3007
|
+
"md",
|
|
3008
|
+
"ionic"
|
|
3009
|
+
]
|
|
3010
|
+
},
|
|
2294
3011
|
"ion-menu/type": {
|
|
2295
3012
|
"type": "\"overlay\" | \"push\" | \"reveal\" | undefined",
|
|
2296
3013
|
"description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
|
|
@@ -2332,12 +3049,21 @@
|
|
|
2332
3049
|
},
|
|
2333
3050
|
"ion-menu-button/mode": {
|
|
2334
3051
|
"type": "\"ios\" | \"md\"",
|
|
2335
|
-
"description": "The mode determines
|
|
3052
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2336
3053
|
"options": [
|
|
2337
3054
|
"ios",
|
|
2338
3055
|
"md"
|
|
2339
3056
|
]
|
|
2340
3057
|
},
|
|
3058
|
+
"ion-menu-button/theme": {
|
|
3059
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3060
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3061
|
+
"options": [
|
|
3062
|
+
"ios",
|
|
3063
|
+
"md",
|
|
3064
|
+
"ionic"
|
|
3065
|
+
]
|
|
3066
|
+
},
|
|
2341
3067
|
"ion-menu-button/type": {
|
|
2342
3068
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
2343
3069
|
"description": "The type of the button.",
|
|
@@ -2357,6 +3083,23 @@
|
|
|
2357
3083
|
"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.",
|
|
2358
3084
|
"options": []
|
|
2359
3085
|
},
|
|
3086
|
+
"ion-menu-toggle/mode": {
|
|
3087
|
+
"type": "\"ios\" | \"md\"",
|
|
3088
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3089
|
+
"options": [
|
|
3090
|
+
"ios",
|
|
3091
|
+
"md"
|
|
3092
|
+
]
|
|
3093
|
+
},
|
|
3094
|
+
"ion-menu-toggle/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
|
+
},
|
|
2360
3103
|
"ion-modal/animated": {
|
|
2361
3104
|
"type": "boolean",
|
|
2362
3105
|
"description": "If `true`, the modal will animate.",
|
|
@@ -2442,7 +3185,7 @@
|
|
|
2442
3185
|
},
|
|
2443
3186
|
"ion-modal/mode": {
|
|
2444
3187
|
"type": "\"ios\" | \"md\"",
|
|
2445
|
-
"description": "The mode determines
|
|
3188
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2446
3189
|
"options": [
|
|
2447
3190
|
"ios",
|
|
2448
3191
|
"md"
|
|
@@ -2453,11 +3196,29 @@
|
|
|
2453
3196
|
"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.",
|
|
2454
3197
|
"options": []
|
|
2455
3198
|
},
|
|
3199
|
+
"ion-modal/shape": {
|
|
3200
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
3201
|
+
"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.",
|
|
3202
|
+
"options": [
|
|
3203
|
+
"rectangular",
|
|
3204
|
+
"round",
|
|
3205
|
+
"soft"
|
|
3206
|
+
]
|
|
3207
|
+
},
|
|
2456
3208
|
"ion-modal/show-backdrop": {
|
|
2457
3209
|
"type": "boolean",
|
|
2458
3210
|
"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.",
|
|
2459
3211
|
"options": []
|
|
2460
3212
|
},
|
|
3213
|
+
"ion-modal/theme": {
|
|
3214
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3215
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3216
|
+
"options": [
|
|
3217
|
+
"ios",
|
|
3218
|
+
"md",
|
|
3219
|
+
"ionic"
|
|
3220
|
+
]
|
|
3221
|
+
},
|
|
2461
3222
|
"ion-modal/trigger": {
|
|
2462
3223
|
"type": "string | undefined",
|
|
2463
3224
|
"description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked.",
|
|
@@ -2470,9 +3231,17 @@
|
|
|
2470
3231
|
},
|
|
2471
3232
|
"ion-nav/animation": {
|
|
2472
3233
|
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2473
|
-
"description": "By default `ion-nav` animates transition between pages based
|
|
3234
|
+
"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.",
|
|
2474
3235
|
"options": []
|
|
2475
3236
|
},
|
|
3237
|
+
"ion-nav/mode": {
|
|
3238
|
+
"type": "\"ios\" | \"md\"",
|
|
3239
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3240
|
+
"options": [
|
|
3241
|
+
"ios",
|
|
3242
|
+
"md"
|
|
3243
|
+
]
|
|
3244
|
+
},
|
|
2476
3245
|
"ion-nav/root": {
|
|
2477
3246
|
"type": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
2478
3247
|
"description": "Root NavComponent to load",
|
|
@@ -2488,6 +3257,15 @@
|
|
|
2488
3257
|
"description": "If the nav component should allow for swipe-to-go-back.",
|
|
2489
3258
|
"options": []
|
|
2490
3259
|
},
|
|
3260
|
+
"ion-nav/theme": {
|
|
3261
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3262
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3263
|
+
"options": [
|
|
3264
|
+
"ios",
|
|
3265
|
+
"md",
|
|
3266
|
+
"ionic"
|
|
3267
|
+
]
|
|
3268
|
+
},
|
|
2491
3269
|
"ion-nav-link/component": {
|
|
2492
3270
|
"type": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
2493
3271
|
"description": "Component to navigate to. Only used if the `routerDirection` is `\"forward\"` or `\"root\"`.",
|
|
@@ -2498,6 +3276,14 @@
|
|
|
2498
3276
|
"description": "Data you want to pass to the component as props. Only used if the `\"routerDirection\"` is `\"forward\"` or `\"root\"`.",
|
|
2499
3277
|
"options": []
|
|
2500
3278
|
},
|
|
3279
|
+
"ion-nav-link/mode": {
|
|
3280
|
+
"type": "\"ios\" | \"md\"",
|
|
3281
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3282
|
+
"options": [
|
|
3283
|
+
"ios",
|
|
3284
|
+
"md"
|
|
3285
|
+
]
|
|
3286
|
+
},
|
|
2501
3287
|
"ion-nav-link/router-animation": {
|
|
2502
3288
|
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2503
3289
|
"description": "The transition animation when navigating to another page.",
|
|
@@ -2512,6 +3298,15 @@
|
|
|
2512
3298
|
"root"
|
|
2513
3299
|
]
|
|
2514
3300
|
},
|
|
3301
|
+
"ion-nav-link/theme": {
|
|
3302
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3303
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3304
|
+
"options": [
|
|
3305
|
+
"ios",
|
|
3306
|
+
"md",
|
|
3307
|
+
"ionic"
|
|
3308
|
+
]
|
|
3309
|
+
},
|
|
2515
3310
|
"ion-note/color": {
|
|
2516
3311
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2517
3312
|
"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).",
|
|
@@ -2529,20 +3324,38 @@
|
|
|
2529
3324
|
},
|
|
2530
3325
|
"ion-note/mode": {
|
|
2531
3326
|
"type": "\"ios\" | \"md\"",
|
|
2532
|
-
"description": "The mode determines
|
|
3327
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2533
3328
|
"options": [
|
|
2534
3329
|
"ios",
|
|
2535
3330
|
"md"
|
|
2536
3331
|
]
|
|
2537
3332
|
},
|
|
3333
|
+
"ion-note/theme": {
|
|
3334
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3335
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3336
|
+
"options": [
|
|
3337
|
+
"ios",
|
|
3338
|
+
"md",
|
|
3339
|
+
"ionic"
|
|
3340
|
+
]
|
|
3341
|
+
},
|
|
2538
3342
|
"ion-picker/mode": {
|
|
2539
3343
|
"type": "\"ios\" | \"md\"",
|
|
2540
|
-
"description": "The mode determines
|
|
3344
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2541
3345
|
"options": [
|
|
2542
3346
|
"ios",
|
|
2543
3347
|
"md"
|
|
2544
3348
|
]
|
|
2545
3349
|
},
|
|
3350
|
+
"ion-picker/theme": {
|
|
3351
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3352
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3353
|
+
"options": [
|
|
3354
|
+
"ios",
|
|
3355
|
+
"md",
|
|
3356
|
+
"ionic"
|
|
3357
|
+
]
|
|
3358
|
+
},
|
|
2546
3359
|
"ion-picker-column/color": {
|
|
2547
3360
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
2548
3361
|
"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).",
|
|
@@ -2565,12 +3378,21 @@
|
|
|
2565
3378
|
},
|
|
2566
3379
|
"ion-picker-column/mode": {
|
|
2567
3380
|
"type": "\"ios\" | \"md\"",
|
|
2568
|
-
"description": "The mode determines
|
|
3381
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2569
3382
|
"options": [
|
|
2570
3383
|
"ios",
|
|
2571
3384
|
"md"
|
|
2572
3385
|
]
|
|
2573
3386
|
},
|
|
3387
|
+
"ion-picker-column/theme": {
|
|
3388
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3389
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3390
|
+
"options": [
|
|
3391
|
+
"ios",
|
|
3392
|
+
"md",
|
|
3393
|
+
"ionic"
|
|
3394
|
+
]
|
|
3395
|
+
},
|
|
2574
3396
|
"ion-picker-column/value": {
|
|
2575
3397
|
"type": "number | string | undefined",
|
|
2576
3398
|
"description": "The selected option in the picker.",
|
|
@@ -2596,6 +3418,23 @@
|
|
|
2596
3418
|
"description": "If `true`, the user cannot interact with the picker column option.",
|
|
2597
3419
|
"options": []
|
|
2598
3420
|
},
|
|
3421
|
+
"ion-picker-column-option/mode": {
|
|
3422
|
+
"type": "\"ios\" | \"md\"",
|
|
3423
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3424
|
+
"options": [
|
|
3425
|
+
"ios",
|
|
3426
|
+
"md"
|
|
3427
|
+
]
|
|
3428
|
+
},
|
|
3429
|
+
"ion-picker-column-option/theme": {
|
|
3430
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3431
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3432
|
+
"options": [
|
|
3433
|
+
"ios",
|
|
3434
|
+
"md",
|
|
3435
|
+
"ionic"
|
|
3436
|
+
]
|
|
3437
|
+
},
|
|
2599
3438
|
"ion-picker-column-option/value": {
|
|
2600
3439
|
"type": "any",
|
|
2601
3440
|
"description": "The text value of the option.",
|
|
@@ -2658,7 +3497,7 @@
|
|
|
2658
3497
|
},
|
|
2659
3498
|
"ion-picker-legacy/mode": {
|
|
2660
3499
|
"type": "\"ios\" | \"md\"",
|
|
2661
|
-
"description": "The mode determines
|
|
3500
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2662
3501
|
"options": [
|
|
2663
3502
|
"ios",
|
|
2664
3503
|
"md"
|
|
@@ -2669,6 +3508,15 @@
|
|
|
2669
3508
|
"description": "If `true`, a backdrop will be displayed behind the picker.",
|
|
2670
3509
|
"options": []
|
|
2671
3510
|
},
|
|
3511
|
+
"ion-picker-legacy/theme": {
|
|
3512
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3513
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3514
|
+
"options": [
|
|
3515
|
+
"ios",
|
|
3516
|
+
"md",
|
|
3517
|
+
"ionic"
|
|
3518
|
+
]
|
|
3519
|
+
},
|
|
2672
3520
|
"ion-picker-legacy/trigger": {
|
|
2673
3521
|
"type": "string | undefined",
|
|
2674
3522
|
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
@@ -2676,7 +3524,7 @@
|
|
|
2676
3524
|
},
|
|
2677
3525
|
"ion-popover/alignment": {
|
|
2678
3526
|
"type": "\"center\" | \"end\" | \"start\" | undefined",
|
|
2679
|
-
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for
|
|
3527
|
+
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
|
|
2680
3528
|
"options": [
|
|
2681
3529
|
"center",
|
|
2682
3530
|
"end",
|
|
@@ -2690,7 +3538,7 @@
|
|
|
2690
3538
|
},
|
|
2691
3539
|
"ion-popover/arrow": {
|
|
2692
3540
|
"type": "boolean",
|
|
2693
|
-
"description": "If `true`, the popover will display an arrow that points at the\n`reference`
|
|
3541
|
+
"description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme.",
|
|
2694
3542
|
"options": []
|
|
2695
3543
|
},
|
|
2696
3544
|
"ion-popover/backdrop-dismiss": {
|
|
@@ -2755,7 +3603,7 @@
|
|
|
2755
3603
|
},
|
|
2756
3604
|
"ion-popover/mode": {
|
|
2757
3605
|
"type": "\"ios\" | \"md\"",
|
|
2758
|
-
"description": "The mode determines
|
|
3606
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2759
3607
|
"options": [
|
|
2760
3608
|
"ios",
|
|
2761
3609
|
"md"
|
|
@@ -2794,9 +3642,18 @@
|
|
|
2794
3642
|
"cover"
|
|
2795
3643
|
]
|
|
2796
3644
|
},
|
|
3645
|
+
"ion-popover/theme": {
|
|
3646
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3647
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3648
|
+
"options": [
|
|
3649
|
+
"ios",
|
|
3650
|
+
"md",
|
|
3651
|
+
"ionic"
|
|
3652
|
+
]
|
|
3653
|
+
},
|
|
2797
3654
|
"ion-popover/translucent": {
|
|
2798
3655
|
"type": "boolean",
|
|
2799
|
-
"description": "If `true`, the popover will be translucent.\nOnly applies when the
|
|
3656
|
+
"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).",
|
|
2800
3657
|
"options": []
|
|
2801
3658
|
},
|
|
2802
3659
|
"ion-popover/trigger": {
|
|
@@ -2835,7 +3692,7 @@
|
|
|
2835
3692
|
},
|
|
2836
3693
|
"ion-progress-bar/mode": {
|
|
2837
3694
|
"type": "\"ios\" | \"md\"",
|
|
2838
|
-
"description": "The mode determines
|
|
3695
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2839
3696
|
"options": [
|
|
2840
3697
|
"ios",
|
|
2841
3698
|
"md"
|
|
@@ -2846,6 +3703,23 @@
|
|
|
2846
3703
|
"description": "If true, reverse the progress bar direction.",
|
|
2847
3704
|
"options": []
|
|
2848
3705
|
},
|
|
3706
|
+
"ion-progress-bar/shape": {
|
|
3707
|
+
"type": "\"rectangular\" | \"round\" | undefined",
|
|
3708
|
+
"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.",
|
|
3709
|
+
"options": [
|
|
3710
|
+
"rectangular",
|
|
3711
|
+
"round"
|
|
3712
|
+
]
|
|
3713
|
+
},
|
|
3714
|
+
"ion-progress-bar/theme": {
|
|
3715
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3716
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3717
|
+
"options": [
|
|
3718
|
+
"ios",
|
|
3719
|
+
"md",
|
|
3720
|
+
"ionic"
|
|
3721
|
+
]
|
|
3722
|
+
},
|
|
2849
3723
|
"ion-progress-bar/type": {
|
|
2850
3724
|
"type": "\"determinate\" | \"indeterminate\"",
|
|
2851
3725
|
"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).",
|
|
@@ -2908,7 +3782,7 @@
|
|
|
2908
3782
|
},
|
|
2909
3783
|
"ion-radio/mode": {
|
|
2910
3784
|
"type": "\"ios\" | \"md\"",
|
|
2911
|
-
"description": "The mode determines
|
|
3785
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2912
3786
|
"options": [
|
|
2913
3787
|
"ios",
|
|
2914
3788
|
"md"
|
|
@@ -2919,6 +3793,15 @@
|
|
|
2919
3793
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2920
3794
|
"options": []
|
|
2921
3795
|
},
|
|
3796
|
+
"ion-radio/theme": {
|
|
3797
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3798
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3799
|
+
"options": [
|
|
3800
|
+
"ios",
|
|
3801
|
+
"md",
|
|
3802
|
+
"ionic"
|
|
3803
|
+
]
|
|
3804
|
+
},
|
|
2922
3805
|
"ion-radio/value": {
|
|
2923
3806
|
"type": "any",
|
|
2924
3807
|
"description": "the value of the radio.",
|
|
@@ -2944,11 +3827,28 @@
|
|
|
2944
3827
|
"description": "The helper text to display at the top of the radio group.",
|
|
2945
3828
|
"options": []
|
|
2946
3829
|
},
|
|
3830
|
+
"ion-radio-group/mode": {
|
|
3831
|
+
"type": "\"ios\" | \"md\"",
|
|
3832
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3833
|
+
"options": [
|
|
3834
|
+
"ios",
|
|
3835
|
+
"md"
|
|
3836
|
+
]
|
|
3837
|
+
},
|
|
2947
3838
|
"ion-radio-group/name": {
|
|
2948
3839
|
"type": "string",
|
|
2949
3840
|
"description": "The name of the control, which is submitted with the form data.",
|
|
2950
3841
|
"options": []
|
|
2951
3842
|
},
|
|
3843
|
+
"ion-radio-group/theme": {
|
|
3844
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3845
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3846
|
+
"options": [
|
|
3847
|
+
"ios",
|
|
3848
|
+
"md",
|
|
3849
|
+
"ionic"
|
|
3850
|
+
]
|
|
3851
|
+
},
|
|
2952
3852
|
"ion-radio-group/value": {
|
|
2953
3853
|
"type": "any",
|
|
2954
3854
|
"description": "the value of the radio group.",
|
|
@@ -3016,7 +3916,7 @@
|
|
|
3016
3916
|
},
|
|
3017
3917
|
"ion-range/mode": {
|
|
3018
3918
|
"type": "\"ios\" | \"md\"",
|
|
3019
|
-
"description": "The mode determines
|
|
3919
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3020
3920
|
"options": [
|
|
3021
3921
|
"ios",
|
|
3022
3922
|
"md"
|
|
@@ -3047,6 +3947,15 @@
|
|
|
3047
3947
|
"description": "Specifies the value granularity.",
|
|
3048
3948
|
"options": []
|
|
3049
3949
|
},
|
|
3950
|
+
"ion-range/theme": {
|
|
3951
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
3952
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3953
|
+
"options": [
|
|
3954
|
+
"ios",
|
|
3955
|
+
"md",
|
|
3956
|
+
"ionic"
|
|
3957
|
+
]
|
|
3958
|
+
},
|
|
3050
3959
|
"ion-range/ticks": {
|
|
3051
3960
|
"type": "boolean",
|
|
3052
3961
|
"description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
|
|
@@ -3069,7 +3978,7 @@
|
|
|
3069
3978
|
},
|
|
3070
3979
|
"ion-refresher/mode": {
|
|
3071
3980
|
"type": "\"ios\" | \"md\"",
|
|
3072
|
-
"description": "The mode determines
|
|
3981
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3073
3982
|
"options": [
|
|
3074
3983
|
"ios",
|
|
3075
3984
|
"md"
|
|
@@ -3095,6 +4004,23 @@
|
|
|
3095
4004
|
"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.",
|
|
3096
4005
|
"options": []
|
|
3097
4006
|
},
|
|
4007
|
+
"ion-refresher/theme": {
|
|
4008
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4009
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4010
|
+
"options": [
|
|
4011
|
+
"ios",
|
|
4012
|
+
"md",
|
|
4013
|
+
"ionic"
|
|
4014
|
+
]
|
|
4015
|
+
},
|
|
4016
|
+
"ion-refresher-content/mode": {
|
|
4017
|
+
"type": "\"ios\" | \"md\"",
|
|
4018
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4019
|
+
"options": [
|
|
4020
|
+
"ios",
|
|
4021
|
+
"md"
|
|
4022
|
+
]
|
|
4023
|
+
},
|
|
3098
4024
|
"ion-refresher-content/pulling-icon": {
|
|
3099
4025
|
"type": "null | string | undefined",
|
|
3100
4026
|
"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.",
|
|
@@ -3125,11 +4051,71 @@
|
|
|
3125
4051
|
"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.",
|
|
3126
4052
|
"options": []
|
|
3127
4053
|
},
|
|
4054
|
+
"ion-refresher-content/theme": {
|
|
4055
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4056
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4057
|
+
"options": [
|
|
4058
|
+
"ios",
|
|
4059
|
+
"md",
|
|
4060
|
+
"ionic"
|
|
4061
|
+
]
|
|
4062
|
+
},
|
|
4063
|
+
"ion-reorder/mode": {
|
|
4064
|
+
"type": "\"ios\" | \"md\"",
|
|
4065
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4066
|
+
"options": [
|
|
4067
|
+
"ios",
|
|
4068
|
+
"md"
|
|
4069
|
+
]
|
|
4070
|
+
},
|
|
4071
|
+
"ion-reorder/theme": {
|
|
4072
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4073
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4074
|
+
"options": [
|
|
4075
|
+
"ios",
|
|
4076
|
+
"md",
|
|
4077
|
+
"ionic"
|
|
4078
|
+
]
|
|
4079
|
+
},
|
|
3128
4080
|
"ion-reorder-group/disabled": {
|
|
3129
4081
|
"type": "boolean",
|
|
3130
4082
|
"description": "If `true`, the reorder will be hidden.",
|
|
3131
4083
|
"options": []
|
|
3132
4084
|
},
|
|
4085
|
+
"ion-reorder-group/mode": {
|
|
4086
|
+
"type": "\"ios\" | \"md\"",
|
|
4087
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4088
|
+
"options": [
|
|
4089
|
+
"ios",
|
|
4090
|
+
"md"
|
|
4091
|
+
]
|
|
4092
|
+
},
|
|
4093
|
+
"ion-reorder-group/theme": {
|
|
4094
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4095
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4096
|
+
"options": [
|
|
4097
|
+
"ios",
|
|
4098
|
+
"md",
|
|
4099
|
+
"ionic"
|
|
4100
|
+
]
|
|
4101
|
+
},
|
|
4102
|
+
"ion-ripple-effect/mode": {
|
|
4103
|
+
"type": "\"ios\" | \"md\"",
|
|
4104
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4105
|
+
"options": [
|
|
4106
|
+
"ios",
|
|
4107
|
+
"md"
|
|
4108
|
+
]
|
|
4109
|
+
},
|
|
4110
|
+
"ion-ripple-effect/theme": {
|
|
4111
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4112
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4113
|
+
"options": [
|
|
4114
|
+
"ios",
|
|
4115
|
+
"md",
|
|
4116
|
+
"ionic"
|
|
4117
|
+
]
|
|
4118
|
+
},
|
|
3133
4119
|
"ion-ripple-effect/type": {
|
|
3134
4120
|
"type": "\"bounded\" | \"unbounded\"",
|
|
3135
4121
|
"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.",
|
|
@@ -3158,6 +4144,23 @@
|
|
|
3158
4144
|
"description": "A key value `{ 'red': true, 'blue': 'white'}` containing props that should be passed\nto the defined component when rendered.",
|
|
3159
4145
|
"options": []
|
|
3160
4146
|
},
|
|
4147
|
+
"ion-route/mode": {
|
|
4148
|
+
"type": "\"ios\" | \"md\"",
|
|
4149
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4150
|
+
"options": [
|
|
4151
|
+
"ios",
|
|
4152
|
+
"md"
|
|
4153
|
+
]
|
|
4154
|
+
},
|
|
4155
|
+
"ion-route/theme": {
|
|
4156
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4157
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4158
|
+
"options": [
|
|
4159
|
+
"ios",
|
|
4160
|
+
"md",
|
|
4161
|
+
"ionic"
|
|
4162
|
+
]
|
|
4163
|
+
},
|
|
3161
4164
|
"ion-route/url": {
|
|
3162
4165
|
"type": "string",
|
|
3163
4166
|
"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.",
|
|
@@ -3173,11 +4176,28 @@
|
|
|
3173
4176
|
"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.",
|
|
3174
4177
|
"options": []
|
|
3175
4178
|
},
|
|
4179
|
+
"ion-router/mode": {
|
|
4180
|
+
"type": "\"ios\" | \"md\"",
|
|
4181
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4182
|
+
"options": [
|
|
4183
|
+
"ios",
|
|
4184
|
+
"md"
|
|
4185
|
+
]
|
|
4186
|
+
},
|
|
3176
4187
|
"ion-router/root": {
|
|
3177
4188
|
"type": "string",
|
|
3178
4189
|
"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.",
|
|
3179
4190
|
"options": []
|
|
3180
4191
|
},
|
|
4192
|
+
"ion-router/theme": {
|
|
4193
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4194
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4195
|
+
"options": [
|
|
4196
|
+
"ios",
|
|
4197
|
+
"md",
|
|
4198
|
+
"ionic"
|
|
4199
|
+
]
|
|
4200
|
+
},
|
|
3181
4201
|
"ion-router/use-hash": {
|
|
3182
4202
|
"type": "boolean",
|
|
3183
4203
|
"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.",
|
|
@@ -3203,6 +4223,14 @@
|
|
|
3203
4223
|
"description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered.",
|
|
3204
4224
|
"options": []
|
|
3205
4225
|
},
|
|
4226
|
+
"ion-router-link/mode": {
|
|
4227
|
+
"type": "\"ios\" | \"md\"",
|
|
4228
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4229
|
+
"options": [
|
|
4230
|
+
"ios",
|
|
4231
|
+
"md"
|
|
4232
|
+
]
|
|
4233
|
+
},
|
|
3206
4234
|
"ion-router-link/rel": {
|
|
3207
4235
|
"type": "string | undefined",
|
|
3208
4236
|
"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).",
|
|
@@ -3227,6 +4255,15 @@
|
|
|
3227
4255
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3228
4256
|
"options": []
|
|
3229
4257
|
},
|
|
4258
|
+
"ion-router-link/theme": {
|
|
4259
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4260
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4261
|
+
"options": [
|
|
4262
|
+
"ios",
|
|
4263
|
+
"md",
|
|
4264
|
+
"ionic"
|
|
4265
|
+
]
|
|
4266
|
+
},
|
|
3230
4267
|
"ion-router-outlet/animated": {
|
|
3231
4268
|
"type": "boolean",
|
|
3232
4269
|
"description": "If `true`, the router-outlet should animate the transition of components.",
|
|
@@ -3239,12 +4276,38 @@
|
|
|
3239
4276
|
},
|
|
3240
4277
|
"ion-router-outlet/mode": {
|
|
3241
4278
|
"type": "\"ios\" | \"md\"",
|
|
3242
|
-
"description": "The mode determines
|
|
4279
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4280
|
+
"options": [
|
|
4281
|
+
"ios",
|
|
4282
|
+
"md"
|
|
4283
|
+
]
|
|
4284
|
+
},
|
|
4285
|
+
"ion-router-outlet/theme": {
|
|
4286
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4287
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4288
|
+
"options": [
|
|
4289
|
+
"ios",
|
|
4290
|
+
"md",
|
|
4291
|
+
"ionic"
|
|
4292
|
+
]
|
|
4293
|
+
},
|
|
4294
|
+
"ion-row/mode": {
|
|
4295
|
+
"type": "\"ios\" | \"md\"",
|
|
4296
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3243
4297
|
"options": [
|
|
3244
4298
|
"ios",
|
|
3245
4299
|
"md"
|
|
3246
4300
|
]
|
|
3247
4301
|
},
|
|
4302
|
+
"ion-row/theme": {
|
|
4303
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4304
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4305
|
+
"options": [
|
|
4306
|
+
"ios",
|
|
4307
|
+
"md",
|
|
4308
|
+
"ionic"
|
|
4309
|
+
]
|
|
4310
|
+
},
|
|
3248
4311
|
"ion-searchbar/animated": {
|
|
3249
4312
|
"type": "boolean",
|
|
3250
4313
|
"description": "If `true`, enable searchbar animation.",
|
|
@@ -3256,61 +4319,61 @@
|
|
|
3256
4319
|
"options": []
|
|
3257
4320
|
},
|
|
3258
4321
|
"ion-searchbar/autocomplete": {
|
|
3259
|
-
"type": "\"name\" | \"
|
|
4322
|
+
"type": "\"name\" | \"url\" | \"off\" | \"on\" | \"additional-name\" | \"address-level1\" | \"address-level2\" | \"address-level3\" | \"address-level4\" | \"address-line1\" | \"address-line2\" | \"address-line3\" | \"bday-day\" | \"bday-month\" | \"bday-year\" | \"cc-csc\" | \"cc-exp\" | \"cc-exp-month\" | \"cc-exp-year\" | \"cc-family-name\" | \"cc-given-name\" | \"cc-name\" | \"cc-number\" | \"cc-type\" | \"country\" | \"country-name\" | \"current-password\" | \"family-name\" | \"given-name\" | \"honorific-prefix\" | \"honorific-suffix\" | \"new-password\" | \"one-time-code\" | \"organization\" | \"postal-code\" | \"street-address\" | \"transaction-amount\" | \"transaction-currency\" | \"username\" | \"email\" | \"tel\" | \"tel-area-code\" | \"tel-country-code\" | \"tel-extension\" | \"tel-local\" | \"tel-national\" | \"nickname\" | \"organization-title\" | \"cc-additional-name\" | \"language\" | \"bday\" | \"sex\" | \"impp\" | \"photo\"",
|
|
3260
4323
|
"description": "Set the input's autocomplete property.",
|
|
3261
4324
|
"options": [
|
|
3262
4325
|
"name",
|
|
3263
|
-
"email",
|
|
3264
|
-
"tel",
|
|
3265
4326
|
"url",
|
|
3266
|
-
"on",
|
|
3267
4327
|
"off",
|
|
3268
|
-
"
|
|
3269
|
-
"given-name",
|
|
4328
|
+
"on",
|
|
3270
4329
|
"additional-name",
|
|
3271
|
-
"
|
|
3272
|
-
"
|
|
3273
|
-
"
|
|
3274
|
-
"
|
|
3275
|
-
"new-password",
|
|
3276
|
-
"current-password",
|
|
3277
|
-
"one-time-code",
|
|
3278
|
-
"organization-title",
|
|
3279
|
-
"organization",
|
|
3280
|
-
"street-address",
|
|
4330
|
+
"address-level1",
|
|
4331
|
+
"address-level2",
|
|
4332
|
+
"address-level3",
|
|
4333
|
+
"address-level4",
|
|
3281
4334
|
"address-line1",
|
|
3282
4335
|
"address-line2",
|
|
3283
4336
|
"address-line3",
|
|
3284
|
-
"
|
|
3285
|
-
"
|
|
3286
|
-
"
|
|
3287
|
-
"
|
|
3288
|
-
"country",
|
|
3289
|
-
"country-name",
|
|
3290
|
-
"postal-code",
|
|
3291
|
-
"cc-name",
|
|
3292
|
-
"cc-given-name",
|
|
3293
|
-
"cc-additional-name",
|
|
3294
|
-
"cc-family-name",
|
|
3295
|
-
"cc-number",
|
|
4337
|
+
"bday-day",
|
|
4338
|
+
"bday-month",
|
|
4339
|
+
"bday-year",
|
|
4340
|
+
"cc-csc",
|
|
3296
4341
|
"cc-exp",
|
|
3297
4342
|
"cc-exp-month",
|
|
3298
4343
|
"cc-exp-year",
|
|
3299
|
-
"cc-
|
|
4344
|
+
"cc-family-name",
|
|
4345
|
+
"cc-given-name",
|
|
4346
|
+
"cc-name",
|
|
4347
|
+
"cc-number",
|
|
3300
4348
|
"cc-type",
|
|
3301
|
-
"
|
|
4349
|
+
"country",
|
|
4350
|
+
"country-name",
|
|
4351
|
+
"current-password",
|
|
4352
|
+
"family-name",
|
|
4353
|
+
"given-name",
|
|
4354
|
+
"honorific-prefix",
|
|
4355
|
+
"honorific-suffix",
|
|
4356
|
+
"new-password",
|
|
4357
|
+
"one-time-code",
|
|
4358
|
+
"organization",
|
|
4359
|
+
"postal-code",
|
|
4360
|
+
"street-address",
|
|
3302
4361
|
"transaction-amount",
|
|
4362
|
+
"transaction-currency",
|
|
4363
|
+
"username",
|
|
4364
|
+
"email",
|
|
4365
|
+
"tel",
|
|
4366
|
+
"tel-area-code",
|
|
4367
|
+
"tel-country-code",
|
|
4368
|
+
"tel-extension",
|
|
4369
|
+
"tel-local",
|
|
4370
|
+
"tel-national",
|
|
4371
|
+
"nickname",
|
|
4372
|
+
"organization-title",
|
|
4373
|
+
"cc-additional-name",
|
|
3303
4374
|
"language",
|
|
3304
4375
|
"bday",
|
|
3305
|
-
"bday-day",
|
|
3306
|
-
"bday-month",
|
|
3307
|
-
"bday-year",
|
|
3308
4376
|
"sex",
|
|
3309
|
-
"tel-country-code",
|
|
3310
|
-
"tel-national",
|
|
3311
|
-
"tel-area-code",
|
|
3312
|
-
"tel-local",
|
|
3313
|
-
"tel-extension",
|
|
3314
4377
|
"impp",
|
|
3315
4378
|
"photo"
|
|
3316
4379
|
]
|
|
@@ -3324,18 +4387,18 @@
|
|
|
3324
4387
|
]
|
|
3325
4388
|
},
|
|
3326
4389
|
"ion-searchbar/cancel-button-icon": {
|
|
3327
|
-
"type": "string",
|
|
3328
|
-
"description": "Set the cancel button icon. Only
|
|
4390
|
+
"type": "string | undefined",
|
|
4391
|
+
"description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`.",
|
|
3329
4392
|
"options": []
|
|
3330
4393
|
},
|
|
3331
4394
|
"ion-searchbar/cancel-button-text": {
|
|
3332
4395
|
"type": "string",
|
|
3333
|
-
"description": "Set the cancel button text. Only
|
|
4396
|
+
"description": "Set the cancel button text. Only available when the theme is `\"ios\"`.",
|
|
3334
4397
|
"options": []
|
|
3335
4398
|
},
|
|
3336
4399
|
"ion-searchbar/clear-icon": {
|
|
3337
4400
|
"type": "string | undefined",
|
|
3338
|
-
"description": "Set the clear icon. Defaults to
|
|
4401
|
+
"description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme.",
|
|
3339
4402
|
"options": []
|
|
3340
4403
|
},
|
|
3341
4404
|
"ion-searchbar/color": {
|
|
@@ -3402,7 +4465,7 @@
|
|
|
3402
4465
|
},
|
|
3403
4466
|
"ion-searchbar/mode": {
|
|
3404
4467
|
"type": "\"ios\" | \"md\"",
|
|
3405
|
-
"description": "The mode determines
|
|
4468
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3406
4469
|
"options": [
|
|
3407
4470
|
"ios",
|
|
3408
4471
|
"md"
|
|
@@ -3419,10 +4482,19 @@
|
|
|
3419
4482
|
"options": []
|
|
3420
4483
|
},
|
|
3421
4484
|
"ion-searchbar/search-icon": {
|
|
3422
|
-
"type": "string | undefined",
|
|
3423
|
-
"description": "The icon to use as the search icon. Defaults to
|
|
4485
|
+
"type": "boolean | string | undefined",
|
|
4486
|
+
"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.",
|
|
3424
4487
|
"options": []
|
|
3425
4488
|
},
|
|
4489
|
+
"ion-searchbar/shape": {
|
|
4490
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4491
|
+
"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.",
|
|
4492
|
+
"options": [
|
|
4493
|
+
"rectangular",
|
|
4494
|
+
"round",
|
|
4495
|
+
"soft"
|
|
4496
|
+
]
|
|
4497
|
+
},
|
|
3426
4498
|
"ion-searchbar/show-cancel-button": {
|
|
3427
4499
|
"type": "\"always\" | \"focus\" | \"never\"",
|
|
3428
4500
|
"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.",
|
|
@@ -3441,11 +4513,29 @@
|
|
|
3441
4513
|
"never"
|
|
3442
4514
|
]
|
|
3443
4515
|
},
|
|
4516
|
+
"ion-searchbar/size": {
|
|
4517
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
4518
|
+
"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.",
|
|
4519
|
+
"options": [
|
|
4520
|
+
"large",
|
|
4521
|
+
"medium",
|
|
4522
|
+
"small"
|
|
4523
|
+
]
|
|
4524
|
+
},
|
|
3444
4525
|
"ion-searchbar/spellcheck": {
|
|
3445
4526
|
"type": "boolean",
|
|
3446
4527
|
"description": "If `true`, enable spellcheck on the input.",
|
|
3447
4528
|
"options": []
|
|
3448
4529
|
},
|
|
4530
|
+
"ion-searchbar/theme": {
|
|
4531
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4532
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4533
|
+
"options": [
|
|
4534
|
+
"ios",
|
|
4535
|
+
"md",
|
|
4536
|
+
"ionic"
|
|
4537
|
+
]
|
|
4538
|
+
},
|
|
3449
4539
|
"ion-searchbar/type": {
|
|
3450
4540
|
"type": "\"email\" | \"number\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"",
|
|
3451
4541
|
"description": "Set the type of the input.",
|
|
@@ -3486,7 +4576,7 @@
|
|
|
3486
4576
|
},
|
|
3487
4577
|
"ion-segment/mode": {
|
|
3488
4578
|
"type": "\"ios\" | \"md\"",
|
|
3489
|
-
"description": "The mode determines
|
|
4579
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3490
4580
|
"options": [
|
|
3491
4581
|
"ios",
|
|
3492
4582
|
"md"
|
|
@@ -3507,6 +4597,15 @@
|
|
|
3507
4597
|
"description": "If `true`, users will be able to swipe between segment buttons to activate them.",
|
|
3508
4598
|
"options": []
|
|
3509
4599
|
},
|
|
4600
|
+
"ion-segment/theme": {
|
|
4601
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4602
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4603
|
+
"options": [
|
|
4604
|
+
"ios",
|
|
4605
|
+
"md",
|
|
4606
|
+
"ionic"
|
|
4607
|
+
]
|
|
4608
|
+
},
|
|
3510
4609
|
"ion-segment/value": {
|
|
3511
4610
|
"type": "number | string | undefined",
|
|
3512
4611
|
"description": "the value of the segment.",
|
|
@@ -3536,12 +4635,21 @@
|
|
|
3536
4635
|
},
|
|
3537
4636
|
"ion-segment-button/mode": {
|
|
3538
4637
|
"type": "\"ios\" | \"md\"",
|
|
3539
|
-
"description": "The mode determines
|
|
4638
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3540
4639
|
"options": [
|
|
3541
4640
|
"ios",
|
|
3542
4641
|
"md"
|
|
3543
4642
|
]
|
|
3544
4643
|
},
|
|
4644
|
+
"ion-segment-button/theme": {
|
|
4645
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4646
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4647
|
+
"options": [
|
|
4648
|
+
"ios",
|
|
4649
|
+
"md",
|
|
4650
|
+
"ionic"
|
|
4651
|
+
]
|
|
4652
|
+
},
|
|
3545
4653
|
"ion-segment-button/type": {
|
|
3546
4654
|
"type": "\"button\" | \"reset\" | \"submit\"",
|
|
3547
4655
|
"description": "The type of the button.",
|
|
@@ -3598,12 +4706,12 @@
|
|
|
3598
4706
|
},
|
|
3599
4707
|
"ion-select/expanded-icon": {
|
|
3600
4708
|
"type": "string | undefined",
|
|
3601
|
-
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in
|
|
4709
|
+
"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.",
|
|
3602
4710
|
"options": []
|
|
3603
4711
|
},
|
|
3604
4712
|
"ion-select/fill": {
|
|
3605
4713
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
3606
|
-
"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
|
|
4714
|
+
"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.",
|
|
3607
4715
|
"options": [
|
|
3608
4716
|
"outline",
|
|
3609
4717
|
"solid"
|
|
@@ -3656,7 +4764,7 @@
|
|
|
3656
4764
|
},
|
|
3657
4765
|
"ion-select/mode": {
|
|
3658
4766
|
"type": "\"ios\" | \"md\"",
|
|
3659
|
-
"description": "The mode determines
|
|
4767
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3660
4768
|
"options": [
|
|
3661
4769
|
"ios",
|
|
3662
4770
|
"md"
|
|
@@ -3693,15 +4801,35 @@
|
|
|
3693
4801
|
"options": []
|
|
3694
4802
|
},
|
|
3695
4803
|
"ion-select/shape": {
|
|
3696
|
-
"type": "\"round\" | undefined",
|
|
3697
|
-
"description": "
|
|
4804
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
4805
|
+
"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.",
|
|
3698
4806
|
"options": [
|
|
3699
|
-
"
|
|
4807
|
+
"rectangular",
|
|
4808
|
+
"round",
|
|
4809
|
+
"soft"
|
|
4810
|
+
]
|
|
4811
|
+
},
|
|
4812
|
+
"ion-select/size": {
|
|
4813
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
4814
|
+
"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.",
|
|
4815
|
+
"options": [
|
|
4816
|
+
"large",
|
|
4817
|
+
"medium",
|
|
4818
|
+
"small"
|
|
4819
|
+
]
|
|
4820
|
+
},
|
|
4821
|
+
"ion-select/theme": {
|
|
4822
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4823
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4824
|
+
"options": [
|
|
4825
|
+
"ios",
|
|
4826
|
+
"md",
|
|
4827
|
+
"ionic"
|
|
3700
4828
|
]
|
|
3701
4829
|
},
|
|
3702
4830
|
"ion-select/toggle-icon": {
|
|
3703
4831
|
"type": "string | undefined",
|
|
3704
|
-
"description": "The toggle icon to use. Defaults to
|
|
4832
|
+
"description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes.",
|
|
3705
4833
|
"options": []
|
|
3706
4834
|
},
|
|
3707
4835
|
"ion-select/value": {
|
|
@@ -3729,6 +4857,23 @@
|
|
|
3729
4857
|
"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.",
|
|
3730
4858
|
"options": []
|
|
3731
4859
|
},
|
|
4860
|
+
"ion-select-option/mode": {
|
|
4861
|
+
"type": "\"ios\" | \"md\"",
|
|
4862
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4863
|
+
"options": [
|
|
4864
|
+
"ios",
|
|
4865
|
+
"md"
|
|
4866
|
+
]
|
|
4867
|
+
},
|
|
4868
|
+
"ion-select-option/theme": {
|
|
4869
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4870
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4871
|
+
"options": [
|
|
4872
|
+
"ios",
|
|
4873
|
+
"md",
|
|
4874
|
+
"ionic"
|
|
4875
|
+
]
|
|
4876
|
+
},
|
|
3732
4877
|
"ion-select-option/value": {
|
|
3733
4878
|
"type": "any",
|
|
3734
4879
|
"description": "The text value of the option.",
|
|
@@ -3739,6 +4884,23 @@
|
|
|
3739
4884
|
"description": "If `true`, the skeleton text will animate.",
|
|
3740
4885
|
"options": []
|
|
3741
4886
|
},
|
|
4887
|
+
"ion-skeleton-text/mode": {
|
|
4888
|
+
"type": "\"ios\" | \"md\"",
|
|
4889
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4890
|
+
"options": [
|
|
4891
|
+
"ios",
|
|
4892
|
+
"md"
|
|
4893
|
+
]
|
|
4894
|
+
},
|
|
4895
|
+
"ion-skeleton-text/theme": {
|
|
4896
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4897
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4898
|
+
"options": [
|
|
4899
|
+
"ios",
|
|
4900
|
+
"md",
|
|
4901
|
+
"ionic"
|
|
4902
|
+
]
|
|
4903
|
+
},
|
|
3742
4904
|
"ion-spinner/color": {
|
|
3743
4905
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3744
4906
|
"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).",
|
|
@@ -3759,6 +4921,14 @@
|
|
|
3759
4921
|
"description": "Duration of the spinner animation in milliseconds. The default varies based on the spinner.",
|
|
3760
4922
|
"options": []
|
|
3761
4923
|
},
|
|
4924
|
+
"ion-spinner/mode": {
|
|
4925
|
+
"type": "\"ios\" | \"md\"",
|
|
4926
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4927
|
+
"options": [
|
|
4928
|
+
"ios",
|
|
4929
|
+
"md"
|
|
4930
|
+
]
|
|
4931
|
+
},
|
|
3762
4932
|
"ion-spinner/name": {
|
|
3763
4933
|
"type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | undefined",
|
|
3764
4934
|
"description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
|
|
@@ -3779,6 +4949,26 @@
|
|
|
3779
4949
|
"description": "If `true`, the spinner's animation will be paused.",
|
|
3780
4950
|
"options": []
|
|
3781
4951
|
},
|
|
4952
|
+
"ion-spinner/size": {
|
|
4953
|
+
"type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined",
|
|
4954
|
+
"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.",
|
|
4955
|
+
"options": [
|
|
4956
|
+
"large",
|
|
4957
|
+
"medium",
|
|
4958
|
+
"small",
|
|
4959
|
+
"xlarge",
|
|
4960
|
+
"xsmall"
|
|
4961
|
+
]
|
|
4962
|
+
},
|
|
4963
|
+
"ion-spinner/theme": {
|
|
4964
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4965
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4966
|
+
"options": [
|
|
4967
|
+
"ios",
|
|
4968
|
+
"md",
|
|
4969
|
+
"ionic"
|
|
4970
|
+
]
|
|
4971
|
+
},
|
|
3782
4972
|
"ion-split-pane/content-id": {
|
|
3783
4973
|
"type": "string | undefined",
|
|
3784
4974
|
"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`.",
|
|
@@ -3789,6 +4979,23 @@
|
|
|
3789
4979
|
"description": "If `true`, the split pane will be hidden.",
|
|
3790
4980
|
"options": []
|
|
3791
4981
|
},
|
|
4982
|
+
"ion-split-pane/mode": {
|
|
4983
|
+
"type": "\"ios\" | \"md\"",
|
|
4984
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4985
|
+
"options": [
|
|
4986
|
+
"ios",
|
|
4987
|
+
"md"
|
|
4988
|
+
]
|
|
4989
|
+
},
|
|
4990
|
+
"ion-split-pane/theme": {
|
|
4991
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
4992
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4993
|
+
"options": [
|
|
4994
|
+
"ios",
|
|
4995
|
+
"md",
|
|
4996
|
+
"ionic"
|
|
4997
|
+
]
|
|
4998
|
+
},
|
|
3792
4999
|
"ion-split-pane/when": {
|
|
3793
5000
|
"type": "boolean | string",
|
|
3794
5001
|
"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.",
|
|
@@ -3799,11 +5006,28 @@
|
|
|
3799
5006
|
"description": "The component to display inside of the tab.",
|
|
3800
5007
|
"options": []
|
|
3801
5008
|
},
|
|
5009
|
+
"ion-tab/mode": {
|
|
5010
|
+
"type": "\"ios\" | \"md\"",
|
|
5011
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5012
|
+
"options": [
|
|
5013
|
+
"ios",
|
|
5014
|
+
"md"
|
|
5015
|
+
]
|
|
5016
|
+
},
|
|
3802
5017
|
"ion-tab/tab": {
|
|
3803
5018
|
"type": "string",
|
|
3804
5019
|
"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.",
|
|
3805
5020
|
"options": []
|
|
3806
5021
|
},
|
|
5022
|
+
"ion-tab/theme": {
|
|
5023
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5024
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5025
|
+
"options": [
|
|
5026
|
+
"ios",
|
|
5027
|
+
"md",
|
|
5028
|
+
"ionic"
|
|
5029
|
+
]
|
|
5030
|
+
},
|
|
3807
5031
|
"ion-tab-bar/color": {
|
|
3808
5032
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3809
5033
|
"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).",
|
|
@@ -3819,9 +5043,17 @@
|
|
|
3819
5043
|
"warning"
|
|
3820
5044
|
]
|
|
3821
5045
|
},
|
|
5046
|
+
"ion-tab-bar/expand": {
|
|
5047
|
+
"type": "\"compact\" | \"full\"",
|
|
5048
|
+
"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\"`.",
|
|
5049
|
+
"options": [
|
|
5050
|
+
"compact",
|
|
5051
|
+
"full"
|
|
5052
|
+
]
|
|
5053
|
+
},
|
|
3822
5054
|
"ion-tab-bar/mode": {
|
|
3823
5055
|
"type": "\"ios\" | \"md\"",
|
|
3824
|
-
"description": "The mode determines
|
|
5056
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3825
5057
|
"options": [
|
|
3826
5058
|
"ios",
|
|
3827
5059
|
"md"
|
|
@@ -3832,9 +5064,27 @@
|
|
|
3832
5064
|
"description": "The selected tab component",
|
|
3833
5065
|
"options": []
|
|
3834
5066
|
},
|
|
5067
|
+
"ion-tab-bar/shape": {
|
|
5068
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5069
|
+
"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.",
|
|
5070
|
+
"options": [
|
|
5071
|
+
"rectangular",
|
|
5072
|
+
"round",
|
|
5073
|
+
"soft"
|
|
5074
|
+
]
|
|
5075
|
+
},
|
|
5076
|
+
"ion-tab-bar/theme": {
|
|
5077
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5078
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5079
|
+
"options": [
|
|
5080
|
+
"ios",
|
|
5081
|
+
"md",
|
|
5082
|
+
"ionic"
|
|
5083
|
+
]
|
|
5084
|
+
},
|
|
3835
5085
|
"ion-tab-bar/translucent": {
|
|
3836
5086
|
"type": "boolean",
|
|
3837
|
-
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the
|
|
5087
|
+
"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).",
|
|
3838
5088
|
"options": []
|
|
3839
5089
|
},
|
|
3840
5090
|
"ion-tab-button/disabled": {
|
|
@@ -3866,7 +5116,7 @@
|
|
|
3866
5116
|
},
|
|
3867
5117
|
"ion-tab-button/mode": {
|
|
3868
5118
|
"type": "\"ios\" | \"md\"",
|
|
3869
|
-
"description": "The mode determines
|
|
5119
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3870
5120
|
"options": [
|
|
3871
5121
|
"ios",
|
|
3872
5122
|
"md"
|
|
@@ -3882,6 +5132,15 @@
|
|
|
3882
5132
|
"description": "The selected tab component",
|
|
3883
5133
|
"options": []
|
|
3884
5134
|
},
|
|
5135
|
+
"ion-tab-button/shape": {
|
|
5136
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5137
|
+
"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.",
|
|
5138
|
+
"options": [
|
|
5139
|
+
"rectangular",
|
|
5140
|
+
"round",
|
|
5141
|
+
"soft"
|
|
5142
|
+
]
|
|
5143
|
+
},
|
|
3885
5144
|
"ion-tab-button/tab": {
|
|
3886
5145
|
"type": "string | undefined",
|
|
3887
5146
|
"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.",
|
|
@@ -3892,6 +5151,32 @@
|
|
|
3892
5151
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
|
|
3893
5152
|
"options": []
|
|
3894
5153
|
},
|
|
5154
|
+
"ion-tab-button/theme": {
|
|
5155
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5156
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5157
|
+
"options": [
|
|
5158
|
+
"ios",
|
|
5159
|
+
"md",
|
|
5160
|
+
"ionic"
|
|
5161
|
+
]
|
|
5162
|
+
},
|
|
5163
|
+
"ion-tabs/mode": {
|
|
5164
|
+
"type": "\"ios\" | \"md\"",
|
|
5165
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5166
|
+
"options": [
|
|
5167
|
+
"ios",
|
|
5168
|
+
"md"
|
|
5169
|
+
]
|
|
5170
|
+
},
|
|
5171
|
+
"ion-tabs/theme": {
|
|
5172
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5173
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5174
|
+
"options": [
|
|
5175
|
+
"ios",
|
|
5176
|
+
"md",
|
|
5177
|
+
"ionic"
|
|
5178
|
+
]
|
|
5179
|
+
},
|
|
3895
5180
|
"ion-text/color": {
|
|
3896
5181
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
3897
5182
|
"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).",
|
|
@@ -3909,12 +5194,21 @@
|
|
|
3909
5194
|
},
|
|
3910
5195
|
"ion-text/mode": {
|
|
3911
5196
|
"type": "\"ios\" | \"md\"",
|
|
3912
|
-
"description": "The mode determines
|
|
5197
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3913
5198
|
"options": [
|
|
3914
5199
|
"ios",
|
|
3915
5200
|
"md"
|
|
3916
5201
|
]
|
|
3917
5202
|
},
|
|
5203
|
+
"ion-text/theme": {
|
|
5204
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5205
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5206
|
+
"options": [
|
|
5207
|
+
"ios",
|
|
5208
|
+
"md",
|
|
5209
|
+
"ionic"
|
|
5210
|
+
]
|
|
5211
|
+
},
|
|
3918
5212
|
"ion-textarea/auto-grow": {
|
|
3919
5213
|
"type": "boolean",
|
|
3920
5214
|
"description": "If `true`, the textarea container will grow and shrink based\non the contents of the textarea.",
|
|
@@ -3995,7 +5289,7 @@
|
|
|
3995
5289
|
},
|
|
3996
5290
|
"ion-textarea/fill": {
|
|
3997
5291
|
"type": "\"outline\" | \"solid\" | undefined",
|
|
3998
|
-
"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
|
|
5292
|
+
"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\"`.",
|
|
3999
5293
|
"options": [
|
|
4000
5294
|
"outline",
|
|
4001
5295
|
"solid"
|
|
@@ -4048,7 +5342,7 @@
|
|
|
4048
5342
|
},
|
|
4049
5343
|
"ion-textarea/mode": {
|
|
4050
5344
|
"type": "\"ios\" | \"md\"",
|
|
4051
|
-
"description": "The mode determines
|
|
5345
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4052
5346
|
"options": [
|
|
4053
5347
|
"ios",
|
|
4054
5348
|
"md"
|
|
@@ -4080,10 +5374,21 @@
|
|
|
4080
5374
|
"options": []
|
|
4081
5375
|
},
|
|
4082
5376
|
"ion-textarea/shape": {
|
|
4083
|
-
"type": "\"round\" | undefined",
|
|
4084
|
-
"description": "
|
|
5377
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5378
|
+
"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.",
|
|
4085
5379
|
"options": [
|
|
4086
|
-
"
|
|
5380
|
+
"rectangular",
|
|
5381
|
+
"round",
|
|
5382
|
+
"soft"
|
|
5383
|
+
]
|
|
5384
|
+
},
|
|
5385
|
+
"ion-textarea/size": {
|
|
5386
|
+
"type": "\"large\" | \"medium\" | \"small\" | undefined",
|
|
5387
|
+
"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.",
|
|
5388
|
+
"options": [
|
|
5389
|
+
"large",
|
|
5390
|
+
"medium",
|
|
5391
|
+
"small"
|
|
4087
5392
|
]
|
|
4088
5393
|
},
|
|
4089
5394
|
"ion-textarea/spellcheck": {
|
|
@@ -4091,6 +5396,15 @@
|
|
|
4091
5396
|
"description": "If `true`, the element will have its spelling and grammar checked.",
|
|
4092
5397
|
"options": []
|
|
4093
5398
|
},
|
|
5399
|
+
"ion-textarea/theme": {
|
|
5400
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5401
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5402
|
+
"options": [
|
|
5403
|
+
"ios",
|
|
5404
|
+
"md",
|
|
5405
|
+
"ionic"
|
|
5406
|
+
]
|
|
5407
|
+
},
|
|
4094
5408
|
"ion-textarea/value": {
|
|
4095
5409
|
"type": "null | string | undefined",
|
|
4096
5410
|
"description": "The value of the textarea.",
|
|
@@ -4105,6 +5419,23 @@
|
|
|
4105
5419
|
"soft"
|
|
4106
5420
|
]
|
|
4107
5421
|
},
|
|
5422
|
+
"ion-thumbnail/mode": {
|
|
5423
|
+
"type": "\"ios\" | \"md\"",
|
|
5424
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5425
|
+
"options": [
|
|
5426
|
+
"ios",
|
|
5427
|
+
"md"
|
|
5428
|
+
]
|
|
5429
|
+
},
|
|
5430
|
+
"ion-thumbnail/theme": {
|
|
5431
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5432
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5433
|
+
"options": [
|
|
5434
|
+
"ios",
|
|
5435
|
+
"md",
|
|
5436
|
+
"ionic"
|
|
5437
|
+
]
|
|
5438
|
+
},
|
|
4108
5439
|
"ion-title/color": {
|
|
4109
5440
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
|
|
4110
5441
|
"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).",
|
|
@@ -4120,6 +5451,14 @@
|
|
|
4120
5451
|
"warning"
|
|
4121
5452
|
]
|
|
4122
5453
|
},
|
|
5454
|
+
"ion-title/mode": {
|
|
5455
|
+
"type": "\"ios\" | \"md\"",
|
|
5456
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5457
|
+
"options": [
|
|
5458
|
+
"ios",
|
|
5459
|
+
"md"
|
|
5460
|
+
]
|
|
5461
|
+
},
|
|
4123
5462
|
"ion-title/size": {
|
|
4124
5463
|
"type": "\"large\" | \"small\" | undefined",
|
|
4125
5464
|
"description": "The size of the toolbar title.",
|
|
@@ -4128,6 +5467,15 @@
|
|
|
4128
5467
|
"small"
|
|
4129
5468
|
]
|
|
4130
5469
|
},
|
|
5470
|
+
"ion-title/theme": {
|
|
5471
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5472
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5473
|
+
"options": [
|
|
5474
|
+
"ios",
|
|
5475
|
+
"md",
|
|
5476
|
+
"ionic"
|
|
5477
|
+
]
|
|
5478
|
+
},
|
|
4131
5479
|
"ion-toast/animated": {
|
|
4132
5480
|
"type": "boolean",
|
|
4133
5481
|
"description": "If `true`, the toast will animate.",
|
|
@@ -4178,6 +5526,14 @@
|
|
|
4178
5526
|
"description": "Additional attributes to pass to the toast.",
|
|
4179
5527
|
"options": []
|
|
4180
5528
|
},
|
|
5529
|
+
"ion-toast/hue": {
|
|
5530
|
+
"type": "\"bold\" | \"subtle\" | undefined",
|
|
5531
|
+
"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.",
|
|
5532
|
+
"options": [
|
|
5533
|
+
"bold",
|
|
5534
|
+
"subtle"
|
|
5535
|
+
]
|
|
5536
|
+
},
|
|
4181
5537
|
"ion-toast/icon": {
|
|
4182
5538
|
"type": "string | undefined",
|
|
4183
5539
|
"description": "The name of the icon to display, or the path to a valid SVG file. See `ion-icon`.\nhttps://ionic.io/ionicons",
|
|
@@ -4213,7 +5569,7 @@
|
|
|
4213
5569
|
},
|
|
4214
5570
|
"ion-toast/mode": {
|
|
4215
5571
|
"type": "\"ios\" | \"md\"",
|
|
4216
|
-
"description": "The mode determines
|
|
5572
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4217
5573
|
"options": [
|
|
4218
5574
|
"ios",
|
|
4219
5575
|
"md"
|
|
@@ -4233,6 +5589,15 @@
|
|
|
4233
5589
|
"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.",
|
|
4234
5590
|
"options": []
|
|
4235
5591
|
},
|
|
5592
|
+
"ion-toast/shape": {
|
|
5593
|
+
"type": "\"rectangular\" | \"round\" | \"soft\" | undefined",
|
|
5594
|
+
"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.",
|
|
5595
|
+
"options": [
|
|
5596
|
+
"rectangular",
|
|
5597
|
+
"round",
|
|
5598
|
+
"soft"
|
|
5599
|
+
]
|
|
5600
|
+
},
|
|
4236
5601
|
"ion-toast/swipe-gesture": {
|
|
4237
5602
|
"type": "\"vertical\" | undefined",
|
|
4238
5603
|
"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.",
|
|
@@ -4240,9 +5605,18 @@
|
|
|
4240
5605
|
"vertical"
|
|
4241
5606
|
]
|
|
4242
5607
|
},
|
|
5608
|
+
"ion-toast/theme": {
|
|
5609
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5610
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5611
|
+
"options": [
|
|
5612
|
+
"ios",
|
|
5613
|
+
"md",
|
|
5614
|
+
"ionic"
|
|
5615
|
+
]
|
|
5616
|
+
},
|
|
4243
5617
|
"ion-toast/translucent": {
|
|
4244
5618
|
"type": "boolean",
|
|
4245
|
-
"description": "If `true`, the toast will be translucent.\nOnly applies when the
|
|
5619
|
+
"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).",
|
|
4246
5620
|
"options": []
|
|
4247
5621
|
},
|
|
4248
5622
|
"ion-toast/trigger": {
|
|
@@ -4319,7 +5693,7 @@
|
|
|
4319
5693
|
},
|
|
4320
5694
|
"ion-toggle/mode": {
|
|
4321
5695
|
"type": "\"ios\" | \"md\"",
|
|
4322
|
-
"description": "The mode determines
|
|
5696
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4323
5697
|
"options": [
|
|
4324
5698
|
"ios",
|
|
4325
5699
|
"md"
|
|
@@ -4335,6 +5709,15 @@
|
|
|
4335
5709
|
"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.",
|
|
4336
5710
|
"options": []
|
|
4337
5711
|
},
|
|
5712
|
+
"ion-toggle/theme": {
|
|
5713
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5714
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5715
|
+
"options": [
|
|
5716
|
+
"ios",
|
|
5717
|
+
"md",
|
|
5718
|
+
"ionic"
|
|
5719
|
+
]
|
|
5720
|
+
},
|
|
4338
5721
|
"ion-toggle/value": {
|
|
4339
5722
|
"type": "null | string | undefined",
|
|
4340
5723
|
"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>`.",
|
|
@@ -4357,10 +5740,19 @@
|
|
|
4357
5740
|
},
|
|
4358
5741
|
"ion-toolbar/mode": {
|
|
4359
5742
|
"type": "\"ios\" | \"md\"",
|
|
4360
|
-
"description": "The mode determines
|
|
5743
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4361
5744
|
"options": [
|
|
4362
5745
|
"ios",
|
|
4363
5746
|
"md"
|
|
4364
5747
|
]
|
|
5748
|
+
},
|
|
5749
|
+
"ion-toolbar/theme": {
|
|
5750
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
5751
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5752
|
+
"options": [
|
|
5753
|
+
"ios",
|
|
5754
|
+
"md",
|
|
5755
|
+
"ionic"
|
|
5756
|
+
]
|
|
4365
5757
|
}
|
|
4366
5758
|
}
|