@ionic/vue 8.8.9-dev.11780948757.1c55bd21 → 8.8.9-dev.11781024903.1e4268e5

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.
Files changed (60) hide show
  1. package/css/core.css +1 -1
  2. package/css/core.css.map +1 -1
  3. package/css/display.css +1 -1
  4. package/css/display.css.map +1 -1
  5. package/css/flex-utils.css +1 -1
  6. package/css/flex-utils.css.map +1 -1
  7. package/css/float-elements.css.map +1 -1
  8. package/css/global.bundle.css.map +1 -1
  9. package/css/ionic/bundle.ionic.css +1 -0
  10. package/css/ionic/bundle.ionic.css.map +1 -0
  11. package/css/ionic/core.ionic.css +1 -0
  12. package/css/ionic/core.ionic.css.map +1 -0
  13. package/css/ionic/global.bundle.ionic.css +1 -0
  14. package/css/ionic/global.bundle.ionic.css.map +1 -0
  15. package/css/ionic/ionic-swiper.ionic.css +1 -0
  16. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  17. package/css/ionic/link.ionic.css +1 -0
  18. package/css/ionic/link.ionic.css.map +1 -0
  19. package/css/ionic/structure.ionic.css +1 -0
  20. package/css/ionic/structure.ionic.css.map +1 -0
  21. package/css/ionic/typography.ionic.css +1 -0
  22. package/css/ionic/typography.ionic.css.map +1 -0
  23. package/css/ionic/utils.bundle.ionic.css +1 -0
  24. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  25. package/css/ionic-swiper.css +1 -1
  26. package/css/ionic-swiper.css.map +1 -1
  27. package/css/ionic.bundle.css +1 -1
  28. package/css/ionic.bundle.css.map +1 -1
  29. package/css/normalize.css.map +1 -1
  30. package/css/padding.css.map +1 -1
  31. package/css/palettes/dark.always.css.map +1 -1
  32. package/css/palettes/dark.class.css.map +1 -1
  33. package/css/palettes/dark.system.css.map +1 -1
  34. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  35. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  36. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  37. package/css/palettes/high-contrast.always.css.map +1 -1
  38. package/css/palettes/high-contrast.class.css.map +1 -1
  39. package/css/palettes/high-contrast.system.css.map +1 -1
  40. package/css/structure.css.map +1 -1
  41. package/css/text-alignment.css.map +1 -1
  42. package/css/text-transformation.css.map +1 -1
  43. package/css/typography.css.map +1 -1
  44. package/css/utils.bundle.css +1 -1
  45. package/css/utils.bundle.css.map +1 -1
  46. package/dist/index.js +254 -239
  47. package/dist/index.js.map +1 -1
  48. package/dist/types/components/IonPage.d.ts +5 -5
  49. package/dist/types/components/IonRouterOutlet.d.ts +4 -16
  50. package/dist/types/components/IonTabBar.d.ts +1 -1
  51. package/dist/types/components/IonTabButton.d.ts +6 -6
  52. package/dist/types/components/IonTabs.d.ts +4 -4
  53. package/dist/types/components/Overlays.d.ts +1 -0
  54. package/dist/types/controllers.d.ts +9 -1
  55. package/dist/types/index.d.ts +2 -2
  56. package/dist/types/proxies.d.ts +2 -0
  57. package/dist/vetur/attributes.json +1714 -112
  58. package/dist/vetur/tags.json +261 -45
  59. package/dist/web-types.json +2017 -195
  60. package/package.json +5 -5
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "@ionic/vue",
5
- "version": "8.8.9-dev.11780948757.1c55bd21",
5
+ "version": "8.8.9-dev.11781024903.1e4268e5",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  {
31
31
  "name": "mode",
32
- "description": "The mode determines which platform styles to use.",
32
+ "description": "The mode determines the platform behaviors of the component.",
33
33
  "required": false,
34
34
  "value": {
35
35
  "kind": "expression",
@@ -46,14 +46,22 @@
46
46
  "type": "boolean"
47
47
  }
48
48
  },
49
+ {
50
+ "name": "theme",
51
+ "description": "The theme determines the visual appearance of the component.",
52
+ "required": false,
53
+ "value": {
54
+ "kind": "expression",
55
+ "type": "\"ios\" | \"md\" | \"ionic\""
56
+ }
57
+ },
49
58
  {
50
59
  "name": "toggle-icon",
51
60
  "description": "The toggle icon to use. This icon will be\nrotated when the accordion is expanded\nor collapsed.",
52
61
  "required": false,
53
- "default": "chevronDown",
54
62
  "value": {
55
63
  "kind": "expression",
56
- "type": "string"
64
+ "type": "string | undefined"
57
65
  }
58
66
  },
59
67
  {
@@ -130,7 +138,7 @@
130
138
  },
131
139
  {
132
140
  "name": "mode",
133
- "description": "The mode determines which platform styles to use.",
141
+ "description": "The mode determines the platform behaviors of the component.",
134
142
  "required": false,
135
143
  "value": {
136
144
  "kind": "expression",
@@ -156,6 +164,24 @@
156
164
  "type": "boolean"
157
165
  }
158
166
  },
167
+ {
168
+ "name": "shape",
169
+ "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\"`.",
170
+ "required": false,
171
+ "value": {
172
+ "kind": "expression",
173
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
174
+ }
175
+ },
176
+ {
177
+ "name": "theme",
178
+ "description": "The theme determines the visual appearance of the component.",
179
+ "required": false,
180
+ "value": {
181
+ "kind": "expression",
182
+ "type": "\"ios\" | \"md\" | \"ionic\""
183
+ }
184
+ },
159
185
  {
160
186
  "name": "value",
161
187
  "description": "The value of the accordion group. This controls which\naccordions are expanded.\nThis should be an array of strings only when `multiple=\"true\"`",
@@ -286,7 +312,7 @@
286
312
  },
287
313
  {
288
314
  "name": "mode",
289
- "description": "The mode determines which platform styles to use.",
315
+ "description": "The mode determines the platform behaviors of the component.",
290
316
  "required": false,
291
317
  "value": {
292
318
  "kind": "expression",
@@ -302,9 +328,18 @@
302
328
  "type": "string | undefined"
303
329
  }
304
330
  },
331
+ {
332
+ "name": "theme",
333
+ "description": "The theme determines the visual appearance of the component.",
334
+ "required": false,
335
+ "value": {
336
+ "kind": "expression",
337
+ "type": "\"ios\" | \"md\" | \"ionic\""
338
+ }
339
+ },
305
340
  {
306
341
  "name": "translucent",
307
- "description": "If `true`, the action sheet will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
342
+ "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).",
308
343
  "required": false,
309
344
  "default": "false",
310
345
  "value": {
@@ -531,7 +566,7 @@
531
566
  },
532
567
  {
533
568
  "name": "mode",
534
- "description": "The mode determines which platform styles to use.",
569
+ "description": "The mode determines the platform behaviors of the component.",
535
570
  "required": false,
536
571
  "value": {
537
572
  "kind": "expression",
@@ -547,9 +582,18 @@
547
582
  "type": "string | undefined"
548
583
  }
549
584
  },
585
+ {
586
+ "name": "theme",
587
+ "description": "The theme determines the visual appearance of the component.",
588
+ "required": false,
589
+ "value": {
590
+ "kind": "expression",
591
+ "type": "\"ios\" | \"md\" | \"ionic\""
592
+ }
593
+ },
550
594
  {
551
595
  "name": "translucent",
552
- "description": "If `true`, the alert will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
596
+ "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).",
553
597
  "required": false,
554
598
  "default": "false",
555
599
  "value": {
@@ -659,7 +703,54 @@
659
703
  "module": "@ionic/core/src/components/avatar/avatar.d.ts",
660
704
  "symbol": "Avatar"
661
705
  },
662
- "attributes": [],
706
+ "attributes": [
707
+ {
708
+ "name": "disabled",
709
+ "description": "If `true`, the user cannot interact with the avatar.",
710
+ "required": false,
711
+ "default": "false",
712
+ "value": {
713
+ "kind": "expression",
714
+ "type": "boolean"
715
+ }
716
+ },
717
+ {
718
+ "name": "mode",
719
+ "description": "The mode determines the platform behaviors of the component.",
720
+ "required": false,
721
+ "value": {
722
+ "kind": "expression",
723
+ "type": "\"ios\" | \"md\""
724
+ }
725
+ },
726
+ {
727
+ "name": "shape",
728
+ "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.",
729
+ "required": false,
730
+ "value": {
731
+ "kind": "expression",
732
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
733
+ }
734
+ },
735
+ {
736
+ "name": "size",
737
+ "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.",
738
+ "required": false,
739
+ "value": {
740
+ "kind": "expression",
741
+ "type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxsmall\" | undefined"
742
+ }
743
+ },
744
+ {
745
+ "name": "theme",
746
+ "description": "The theme determines the visual appearance of the component.",
747
+ "required": false,
748
+ "value": {
749
+ "kind": "expression",
750
+ "type": "\"ios\" | \"md\" | \"ionic\""
751
+ }
752
+ }
753
+ ],
663
754
  "slots": [],
664
755
  "events": []
665
756
  },
@@ -711,7 +802,7 @@
711
802
  },
712
803
  {
713
804
  "name": "mode",
714
- "description": "The mode determines which platform styles to use.",
805
+ "description": "The mode determines the platform behaviors of the component.",
715
806
  "required": false,
716
807
  "value": {
717
808
  "kind": "expression",
@@ -736,6 +827,15 @@
736
827
  "type": "null | string | undefined"
737
828
  }
738
829
  },
830
+ {
831
+ "name": "theme",
832
+ "description": "The theme determines the visual appearance of the component.",
833
+ "required": false,
834
+ "value": {
835
+ "kind": "expression",
836
+ "type": "\"ios\" | \"md\" | \"ionic\""
837
+ }
838
+ },
739
839
  {
740
840
  "name": "type",
741
841
  "description": "The type of the button.",
@@ -759,6 +859,15 @@
759
859
  "symbol": "Backdrop"
760
860
  },
761
861
  "attributes": [
862
+ {
863
+ "name": "mode",
864
+ "description": "The mode determines the platform behaviors of the component.",
865
+ "required": false,
866
+ "value": {
867
+ "kind": "expression",
868
+ "type": "\"ios\" | \"md\""
869
+ }
870
+ },
762
871
  {
763
872
  "name": "stop-propagation",
764
873
  "description": "If `true`, the backdrop will stop propagation on tap.",
@@ -779,6 +888,15 @@
779
888
  "type": "boolean"
780
889
  }
781
890
  },
891
+ {
892
+ "name": "theme",
893
+ "description": "The theme determines the visual appearance of the component.",
894
+ "required": false,
895
+ "value": {
896
+ "kind": "expression",
897
+ "type": "\"ios\" | \"md\" | \"ionic\""
898
+ }
899
+ },
782
900
  {
783
901
  "name": "visible",
784
902
  "description": "If `true`, the backdrop will be visible.",
@@ -822,14 +940,59 @@
822
940
  "type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
823
941
  }
824
942
  },
943
+ {
944
+ "name": "hue",
945
+ "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.",
946
+ "required": false,
947
+ "value": {
948
+ "kind": "expression",
949
+ "type": "\"bold\" | \"subtle\" | undefined"
950
+ }
951
+ },
825
952
  {
826
953
  "name": "mode",
827
- "description": "The mode determines which platform styles to use.",
954
+ "description": "The mode determines the platform behaviors of the component.",
828
955
  "required": false,
829
956
  "value": {
830
957
  "kind": "expression",
831
958
  "type": "\"ios\" | \"md\""
832
959
  }
960
+ },
961
+ {
962
+ "name": "shape",
963
+ "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.",
964
+ "required": false,
965
+ "value": {
966
+ "kind": "expression",
967
+ "type": "\"round | rectangular\" | \"soft\" | undefined"
968
+ }
969
+ },
970
+ {
971
+ "name": "size",
972
+ "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.",
973
+ "required": false,
974
+ "value": {
975
+ "kind": "expression",
976
+ "type": "\"large\" | \"medium\" | \"small\" | undefined"
977
+ }
978
+ },
979
+ {
980
+ "name": "theme",
981
+ "description": "The theme determines the visual appearance of the component.",
982
+ "required": false,
983
+ "value": {
984
+ "kind": "expression",
985
+ "type": "\"ios\" | \"md\" | \"ionic\""
986
+ }
987
+ },
988
+ {
989
+ "name": "vertical",
990
+ "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.",
991
+ "required": false,
992
+ "value": {
993
+ "kind": "expression",
994
+ "type": "\"bottom\" | \"top\" | undefined"
995
+ }
833
996
  }
834
997
  ],
835
998
  "slots": [],
@@ -893,7 +1056,7 @@
893
1056
  },
894
1057
  {
895
1058
  "name": "mode",
896
- "description": "The mode determines which platform styles to use.",
1059
+ "description": "The mode determines the platform behaviors of the component.",
897
1060
  "required": false,
898
1061
  "value": {
899
1062
  "kind": "expression",
@@ -945,6 +1108,15 @@
945
1108
  "kind": "expression",
946
1109
  "type": "string | undefined"
947
1110
  }
1111
+ },
1112
+ {
1113
+ "name": "theme",
1114
+ "description": "The theme determines the visual appearance of the component.",
1115
+ "required": false,
1116
+ "value": {
1117
+ "kind": "expression",
1118
+ "type": "\"ios\" | \"md\" | \"ionic\""
1119
+ }
948
1120
  }
949
1121
  ],
950
1122
  "slots": [],
@@ -1020,12 +1192,21 @@
1020
1192
  },
1021
1193
  {
1022
1194
  "name": "mode",
1023
- "description": "The mode determines which platform styles to use.",
1195
+ "description": "The mode determines the platform behaviors of the component.",
1024
1196
  "required": false,
1025
1197
  "value": {
1026
1198
  "kind": "expression",
1027
1199
  "type": "\"ios\" | \"md\""
1028
1200
  }
1201
+ },
1202
+ {
1203
+ "name": "theme",
1204
+ "description": "The theme determines the visual appearance of the component.",
1205
+ "required": false,
1206
+ "value": {
1207
+ "kind": "expression",
1208
+ "type": "\"ios\" | \"md\" | \"ionic\""
1209
+ }
1029
1210
  }
1030
1211
  ],
1031
1212
  "slots": [],
@@ -1100,7 +1281,7 @@
1100
1281
  },
1101
1282
  {
1102
1283
  "name": "fill",
1103
- "description": "Set to `\"clear\"` for a transparent button that resembles a flat button, to `\"outline\"`\nfor a transparent button with a border, or to `\"solid\"` for a button with a filled background.\nThe default fill is `\"solid\"` except inside of a toolbar, where the default is `\"clear\"`.",
1284
+ "description": "Set to `\"clear\"` for a transparent button that resembles a flat button, to `\"outline\"`\nfor a transparent button with a border, or to `\"solid\"` for a button with a filled background.\nThe default fill is `\"solid\"` except when inside of a buttons or datetime component, where\nthe default fill is `\"clear\"`.",
1104
1285
  "required": false,
1105
1286
  "value": {
1106
1287
  "kind": "expression",
@@ -1127,7 +1308,7 @@
1127
1308
  },
1128
1309
  {
1129
1310
  "name": "mode",
1130
- "description": "The mode determines which platform styles to use.",
1311
+ "description": "The mode determines the platform behaviors of the component.",
1131
1312
  "required": false,
1132
1313
  "value": {
1133
1314
  "kind": "expression",
@@ -1164,20 +1345,20 @@
1164
1345
  },
1165
1346
  {
1166
1347
  "name": "shape",
1167
- "description": "Set to `\"round\"` for a button with more rounded corners.",
1348
+ "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.",
1168
1349
  "required": false,
1169
1350
  "value": {
1170
1351
  "kind": "expression",
1171
- "type": "\"round\" | undefined"
1352
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
1172
1353
  }
1173
1354
  },
1174
1355
  {
1175
1356
  "name": "size",
1176
- "description": "Set to `\"small\"` for a button with less height and padding, to `\"default\"`\nfor a button with the default height and padding, or to `\"large\"` for a button\nwith more height and padding. By default the size is unset, unless the button\nis inside of an item, where the size is `\"small\"` by default. Set the size to\n`\"default\"` inside of an item to make it a standard size button.",
1357
+ "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.",
1177
1358
  "required": false,
1178
1359
  "value": {
1179
1360
  "kind": "expression",
1180
- "type": "\"default\" | \"large\" | \"small\" | undefined"
1361
+ "type": "\"default\" | \"large\" | \"medium\" | \"small\" | undefined"
1181
1362
  }
1182
1363
  },
1183
1364
  {
@@ -1199,6 +1380,15 @@
1199
1380
  "type": "string | undefined"
1200
1381
  }
1201
1382
  },
1383
+ {
1384
+ "name": "theme",
1385
+ "description": "The theme determines the visual appearance of the component.",
1386
+ "required": false,
1387
+ "value": {
1388
+ "kind": "expression",
1389
+ "type": "\"ios\" | \"md\" | \"ionic\""
1390
+ }
1391
+ },
1202
1392
  {
1203
1393
  "name": "type",
1204
1394
  "description": "The type of the button.",
@@ -1262,13 +1452,31 @@
1262
1452
  "attributes": [
1263
1453
  {
1264
1454
  "name": "collapse",
1265
- "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` mode 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)",
1455
+ "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)",
1266
1456
  "required": false,
1267
1457
  "default": "false",
1268
1458
  "value": {
1269
1459
  "kind": "expression",
1270
1460
  "type": "boolean"
1271
1461
  }
1462
+ },
1463
+ {
1464
+ "name": "mode",
1465
+ "description": "The mode determines the platform behaviors of the component.",
1466
+ "required": false,
1467
+ "value": {
1468
+ "kind": "expression",
1469
+ "type": "\"ios\" | \"md\""
1470
+ }
1471
+ },
1472
+ {
1473
+ "name": "theme",
1474
+ "description": "The theme determines the visual appearance of the component.",
1475
+ "required": false,
1476
+ "value": {
1477
+ "kind": "expression",
1478
+ "type": "\"ios\" | \"md\" | \"ionic\""
1479
+ }
1272
1480
  }
1273
1481
  ],
1274
1482
  "slots": [],
@@ -1332,7 +1540,7 @@
1332
1540
  },
1333
1541
  {
1334
1542
  "name": "mode",
1335
- "description": "The mode determines which platform styles to use.",
1543
+ "description": "The mode determines the platform behaviors of the component.",
1336
1544
  "required": false,
1337
1545
  "value": {
1338
1546
  "kind": "expression",
@@ -1367,6 +1575,16 @@
1367
1575
  "type": "\"back\" | \"forward\" | \"root\""
1368
1576
  }
1369
1577
  },
1578
+ {
1579
+ "name": "shape",
1580
+ "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\"`.",
1581
+ "required": false,
1582
+ "default": "'round'",
1583
+ "value": {
1584
+ "kind": "expression",
1585
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
1586
+ }
1587
+ },
1370
1588
  {
1371
1589
  "name": "target",
1372
1590
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
@@ -1376,6 +1594,15 @@
1376
1594
  "type": "string | undefined"
1377
1595
  }
1378
1596
  },
1597
+ {
1598
+ "name": "theme",
1599
+ "description": "The theme determines the visual appearance of the component.",
1600
+ "required": false,
1601
+ "value": {
1602
+ "kind": "expression",
1603
+ "type": "\"ios\" | \"md\" | \"ionic\""
1604
+ }
1605
+ },
1379
1606
  {
1380
1607
  "name": "type",
1381
1608
  "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
@@ -1401,12 +1628,21 @@
1401
1628
  "attributes": [
1402
1629
  {
1403
1630
  "name": "mode",
1404
- "description": "The mode determines which platform styles to use.",
1631
+ "description": "The mode determines the platform behaviors of the component.",
1405
1632
  "required": false,
1406
1633
  "value": {
1407
1634
  "kind": "expression",
1408
1635
  "type": "\"ios\" | \"md\""
1409
1636
  }
1637
+ },
1638
+ {
1639
+ "name": "theme",
1640
+ "description": "The theme determines the visual appearance of the component.",
1641
+ "required": false,
1642
+ "value": {
1643
+ "kind": "expression",
1644
+ "type": "\"ios\" | \"md\" | \"ionic\""
1645
+ }
1410
1646
  }
1411
1647
  ],
1412
1648
  "slots": [],
@@ -1432,16 +1668,25 @@
1432
1668
  },
1433
1669
  {
1434
1670
  "name": "mode",
1435
- "description": "The mode determines which platform styles to use.",
1671
+ "description": "The mode determines the platform behaviors of the component.",
1436
1672
  "required": false,
1437
1673
  "value": {
1438
1674
  "kind": "expression",
1439
1675
  "type": "\"ios\" | \"md\""
1440
1676
  }
1441
1677
  },
1678
+ {
1679
+ "name": "theme",
1680
+ "description": "The theme determines the visual appearance of the component.",
1681
+ "required": false,
1682
+ "value": {
1683
+ "kind": "expression",
1684
+ "type": "\"ios\" | \"md\" | \"ionic\""
1685
+ }
1686
+ },
1442
1687
  {
1443
1688
  "name": "translucent",
1444
- "description": "If `true`, the card header will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
1689
+ "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).",
1445
1690
  "required": false,
1446
1691
  "default": "false",
1447
1692
  "value": {
@@ -1473,12 +1718,21 @@
1473
1718
  },
1474
1719
  {
1475
1720
  "name": "mode",
1476
- "description": "The mode determines which platform styles to use.",
1721
+ "description": "The mode determines the platform behaviors of the component.",
1477
1722
  "required": false,
1478
1723
  "value": {
1479
1724
  "kind": "expression",
1480
1725
  "type": "\"ios\" | \"md\""
1481
1726
  }
1727
+ },
1728
+ {
1729
+ "name": "theme",
1730
+ "description": "The theme determines the visual appearance of the component.",
1731
+ "required": false,
1732
+ "value": {
1733
+ "kind": "expression",
1734
+ "type": "\"ios\" | \"md\" | \"ionic\""
1735
+ }
1482
1736
  }
1483
1737
  ],
1484
1738
  "slots": [],
@@ -1504,12 +1758,21 @@
1504
1758
  },
1505
1759
  {
1506
1760
  "name": "mode",
1507
- "description": "The mode determines which platform styles to use.",
1761
+ "description": "The mode determines the platform behaviors of the component.",
1508
1762
  "required": false,
1509
1763
  "value": {
1510
1764
  "kind": "expression",
1511
1765
  "type": "\"ios\" | \"md\""
1512
1766
  }
1767
+ },
1768
+ {
1769
+ "name": "theme",
1770
+ "description": "The theme determines the visual appearance of the component.",
1771
+ "required": false,
1772
+ "value": {
1773
+ "kind": "expression",
1774
+ "type": "\"ios\" | \"md\" | \"ionic\""
1775
+ }
1513
1776
  }
1514
1777
  ],
1515
1778
  "slots": [],
@@ -1611,7 +1874,7 @@
1611
1874
  },
1612
1875
  {
1613
1876
  "name": "mode",
1614
- "description": "The mode determines which platform styles to use.",
1877
+ "description": "The mode determines the platform behaviors of the component.",
1615
1878
  "required": false,
1616
1879
  "value": {
1617
1880
  "kind": "expression",
@@ -1638,6 +1901,34 @@
1638
1901
  "type": "boolean"
1639
1902
  }
1640
1903
  },
1904
+ {
1905
+ "name": "shape",
1906
+ "description": "Set to `\"soft\"` for a checkbox with more rounded corners. Only available when the theme is `\"ionic\"`.",
1907
+ "required": false,
1908
+ "default": "'soft'",
1909
+ "value": {
1910
+ "kind": "expression",
1911
+ "type": "\"rectangular\" | \"soft\" | undefined"
1912
+ }
1913
+ },
1914
+ {
1915
+ "name": "size",
1916
+ "description": "Set to `\"small\"` for a checkbox with less height and padding.",
1917
+ "required": false,
1918
+ "value": {
1919
+ "kind": "expression",
1920
+ "type": "\"small\" | undefined"
1921
+ }
1922
+ },
1923
+ {
1924
+ "name": "theme",
1925
+ "description": "The theme determines the visual appearance of the component.",
1926
+ "required": false,
1927
+ "value": {
1928
+ "kind": "expression",
1929
+ "type": "\"ios\" | \"md\" | \"ionic\""
1930
+ }
1931
+ },
1641
1932
  {
1642
1933
  "name": "value",
1643
1934
  "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>`.",
@@ -1668,7 +1959,7 @@
1668
1959
  },
1669
1960
  {
1670
1961
  "name": "ionChange",
1671
- "description": "Emitted when the checked property has changed as a result of a user action such as a click.\n\nThis event will not emit when programmatically setting the `checked` property.",
1962
+ "description": "Emitted when the checked property has changed\nas a result of a user action such as a click.\nThis event will not emit when programmatically\nsetting the `checked` property.",
1672
1963
  "arguments": [
1673
1964
  {
1674
1965
  "name": "detail",
@@ -1716,9 +2007,19 @@
1716
2007
  "type": "boolean"
1717
2008
  }
1718
2009
  },
2010
+ {
2011
+ "name": "hue",
2012
+ "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.",
2013
+ "required": false,
2014
+ "default": "'subtle'",
2015
+ "value": {
2016
+ "kind": "expression",
2017
+ "type": "\"bold\" | \"subtle\" | undefined"
2018
+ }
2019
+ },
1719
2020
  {
1720
2021
  "name": "mode",
1721
- "description": "The mode determines which platform styles to use.",
2022
+ "description": "The mode determines the platform behaviors of the component.",
1722
2023
  "required": false,
1723
2024
  "value": {
1724
2025
  "kind": "expression",
@@ -1734,23 +2035,59 @@
1734
2035
  "kind": "expression",
1735
2036
  "type": "boolean"
1736
2037
  }
1737
- }
1738
- ],
1739
- "slots": [],
1740
- "events": []
1741
- },
1742
- {
1743
- "name": "IonCol",
1744
- "doc-url": "https://ionicframework.com/docs/api/col",
1745
- "description": "",
1746
- "source": {
1747
- "module": "@ionic/core/src/components/col/col.d.ts",
1748
- "symbol": "Col"
1749
- },
1750
- "attributes": [
2038
+ },
1751
2039
  {
1752
- "name": "offset",
1753
- "description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available.",
2040
+ "name": "shape",
2041
+ "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.",
2042
+ "required": false,
2043
+ "value": {
2044
+ "kind": "expression",
2045
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
2046
+ }
2047
+ },
2048
+ {
2049
+ "name": "size",
2050
+ "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.",
2051
+ "required": false,
2052
+ "value": {
2053
+ "kind": "expression",
2054
+ "type": "\"large\" | \"small\" | undefined"
2055
+ }
2056
+ },
2057
+ {
2058
+ "name": "theme",
2059
+ "description": "The theme determines the visual appearance of the component.",
2060
+ "required": false,
2061
+ "value": {
2062
+ "kind": "expression",
2063
+ "type": "\"ios\" | \"md\" | \"ionic\""
2064
+ }
2065
+ }
2066
+ ],
2067
+ "slots": [],
2068
+ "events": []
2069
+ },
2070
+ {
2071
+ "name": "IonCol",
2072
+ "doc-url": "https://ionicframework.com/docs/api/col",
2073
+ "description": "",
2074
+ "source": {
2075
+ "module": "@ionic/core/src/components/col/col.d.ts",
2076
+ "symbol": "Col"
2077
+ },
2078
+ "attributes": [
2079
+ {
2080
+ "name": "mode",
2081
+ "description": "The mode determines the platform behaviors of the component.",
2082
+ "required": false,
2083
+ "value": {
2084
+ "kind": "expression",
2085
+ "type": "\"ios\" | \"md\""
2086
+ }
2087
+ },
2088
+ {
2089
+ "name": "offset",
2090
+ "description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available.",
1754
2091
  "required": false,
1755
2092
  "value": {
1756
2093
  "kind": "expression",
@@ -1802,6 +2139,60 @@
1802
2139
  "type": "string | undefined"
1803
2140
  }
1804
2141
  },
2142
+ {
2143
+ "name": "order",
2144
+ "description": "The order of the column, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
2145
+ "required": false,
2146
+ "value": {
2147
+ "kind": "expression",
2148
+ "type": "string | undefined"
2149
+ }
2150
+ },
2151
+ {
2152
+ "name": "order-lg",
2153
+ "description": "The order of the column for lg screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
2154
+ "required": false,
2155
+ "value": {
2156
+ "kind": "expression",
2157
+ "type": "string | undefined"
2158
+ }
2159
+ },
2160
+ {
2161
+ "name": "order-md",
2162
+ "description": "The order of the column for md screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
2163
+ "required": false,
2164
+ "value": {
2165
+ "kind": "expression",
2166
+ "type": "string | undefined"
2167
+ }
2168
+ },
2169
+ {
2170
+ "name": "order-sm",
2171
+ "description": "The order of the column for sm screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
2172
+ "required": false,
2173
+ "value": {
2174
+ "kind": "expression",
2175
+ "type": "string | undefined"
2176
+ }
2177
+ },
2178
+ {
2179
+ "name": "order-xl",
2180
+ "description": "The order of the column for xl screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
2181
+ "required": false,
2182
+ "value": {
2183
+ "kind": "expression",
2184
+ "type": "string | undefined"
2185
+ }
2186
+ },
2187
+ {
2188
+ "name": "order-xs",
2189
+ "description": "The order of the column for xs screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure.",
2190
+ "required": false,
2191
+ "value": {
2192
+ "kind": "expression",
2193
+ "type": "string | undefined"
2194
+ }
2195
+ },
1805
2196
  {
1806
2197
  "name": "pull",
1807
2198
  "description": "The amount to pull the column, in terms of how many columns it should shift to the start of\nthe total available.",
@@ -1963,6 +2354,15 @@
1963
2354
  "kind": "expression",
1964
2355
  "type": "string | undefined"
1965
2356
  }
2357
+ },
2358
+ {
2359
+ "name": "theme",
2360
+ "description": "The theme determines the visual appearance of the component.",
2361
+ "required": false,
2362
+ "value": {
2363
+ "kind": "expression",
2364
+ "type": "\"ios\" | \"md\" | \"ionic\""
2365
+ }
1966
2366
  }
1967
2367
  ],
1968
2368
  "slots": [],
@@ -2015,6 +2415,15 @@
2015
2415
  "type": "boolean"
2016
2416
  }
2017
2417
  },
2418
+ {
2419
+ "name": "mode",
2420
+ "description": "The mode determines the platform behaviors of the component.",
2421
+ "required": false,
2422
+ "value": {
2423
+ "kind": "expression",
2424
+ "type": "\"ios\" | \"md\""
2425
+ }
2426
+ },
2018
2427
  {
2019
2428
  "name": "scroll-events",
2020
2429
  "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`.",
@@ -2044,6 +2453,15 @@
2044
2453
  "kind": "expression",
2045
2454
  "type": "boolean"
2046
2455
  }
2456
+ },
2457
+ {
2458
+ "name": "theme",
2459
+ "description": "The theme determines the visual appearance of the component.",
2460
+ "required": false,
2461
+ "value": {
2462
+ "kind": "expression",
2463
+ "type": "\"ios\" | \"md\" | \"ionic\""
2464
+ }
2047
2465
  }
2048
2466
  ],
2049
2467
  "slots": [
@@ -2251,7 +2669,7 @@
2251
2669
  },
2252
2670
  {
2253
2671
  "name": "mode",
2254
- "description": "The mode determines which platform styles to use.",
2672
+ "description": "The mode determines the platform behaviors of the component.",
2255
2673
  "required": false,
2256
2674
  "value": {
2257
2675
  "kind": "expression",
@@ -2377,6 +2795,15 @@
2377
2795
  "type": "\"cover\" | \"fixed\""
2378
2796
  }
2379
2797
  },
2798
+ {
2799
+ "name": "theme",
2800
+ "description": "The theme determines the visual appearance of the component.",
2801
+ "required": false,
2802
+ "value": {
2803
+ "kind": "expression",
2804
+ "type": "\"ios\" | \"md\" | \"ionic\""
2805
+ }
2806
+ },
2380
2807
  {
2381
2808
  "name": "titleSelectedDatesFormatter",
2382
2809
  "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.",
@@ -2502,12 +2929,21 @@
2502
2929
  },
2503
2930
  {
2504
2931
  "name": "mode",
2505
- "description": "The mode determines which platform styles to use.",
2932
+ "description": "The mode determines the platform behaviors of the component.",
2506
2933
  "required": false,
2507
2934
  "value": {
2508
2935
  "kind": "expression",
2509
2936
  "type": "\"ios\" | \"md\""
2510
2937
  }
2938
+ },
2939
+ {
2940
+ "name": "theme",
2941
+ "description": "The theme determines the visual appearance of the component.",
2942
+ "required": false,
2943
+ "value": {
2944
+ "kind": "expression",
2945
+ "type": "\"ios\" | \"md\" | \"ionic\""
2946
+ }
2511
2947
  }
2512
2948
  ],
2513
2949
  "slots": [
@@ -2522,6 +2958,39 @@
2522
2958
  ],
2523
2959
  "events": []
2524
2960
  },
2961
+ {
2962
+ "name": "IonDivider",
2963
+ "doc-url": "https://ionicframework.com/docs/api/divider",
2964
+ "description": "",
2965
+ "source": {
2966
+ "module": "@ionic/core/src/components/divider/divider.d.ts",
2967
+ "symbol": "Divider"
2968
+ },
2969
+ "attributes": [
2970
+ {
2971
+ "name": "inset",
2972
+ "description": "If `true`, the divider will have horizontal margins\nBy default, it's `false`",
2973
+ "required": false,
2974
+ "default": "false",
2975
+ "value": {
2976
+ "kind": "expression",
2977
+ "type": "boolean"
2978
+ }
2979
+ },
2980
+ {
2981
+ "name": "spacing",
2982
+ "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\"`.",
2983
+ "required": false,
2984
+ "default": "'medium'",
2985
+ "value": {
2986
+ "kind": "expression",
2987
+ "type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | \"xxlarge\" | \"xxsmall\" | undefined"
2988
+ }
2989
+ }
2990
+ ],
2991
+ "slots": [],
2992
+ "events": []
2993
+ },
2525
2994
  {
2526
2995
  "name": "IonFab",
2527
2996
  "doc-url": "https://ionicframework.com/docs/api/fab",
@@ -2560,6 +3029,24 @@
2560
3029
  "type": "\"center\" | \"end\" | \"start\" | undefined"
2561
3030
  }
2562
3031
  },
3032
+ {
3033
+ "name": "mode",
3034
+ "description": "The mode determines the platform behaviors of the component.",
3035
+ "required": false,
3036
+ "value": {
3037
+ "kind": "expression",
3038
+ "type": "\"ios\" | \"md\""
3039
+ }
3040
+ },
3041
+ {
3042
+ "name": "theme",
3043
+ "description": "The theme determines the visual appearance of the component.",
3044
+ "required": false,
3045
+ "value": {
3046
+ "kind": "expression",
3047
+ "type": "\"ios\" | \"md\" | \"ionic\""
3048
+ }
3049
+ },
2563
3050
  {
2564
3051
  "name": "vertical",
2565
3052
  "description": "Where to align the fab vertically in the viewport.",
@@ -2596,10 +3083,9 @@
2596
3083
  "name": "close-icon",
2597
3084
  "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.",
2598
3085
  "required": false,
2599
- "default": "close",
2600
3086
  "value": {
2601
3087
  "kind": "expression",
2602
- "type": "string"
3088
+ "type": "string | undefined"
2603
3089
  }
2604
3090
  },
2605
3091
  {
@@ -2641,7 +3127,7 @@
2641
3127
  },
2642
3128
  {
2643
3129
  "name": "mode",
2644
- "description": "The mode determines which platform styles to use.",
3130
+ "description": "The mode determines the platform behaviors of the component.",
2645
3131
  "required": false,
2646
3132
  "value": {
2647
3133
  "kind": "expression",
@@ -2704,9 +3190,18 @@
2704
3190
  "type": "string | undefined"
2705
3191
  }
2706
3192
  },
3193
+ {
3194
+ "name": "theme",
3195
+ "description": "The theme determines the visual appearance of the component.",
3196
+ "required": false,
3197
+ "value": {
3198
+ "kind": "expression",
3199
+ "type": "\"ios\" | \"md\" | \"ionic\""
3200
+ }
3201
+ },
2707
3202
  {
2708
3203
  "name": "translucent",
2709
- "description": "If `true`, the fab button will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
3204
+ "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).",
2710
3205
  "required": false,
2711
3206
  "default": "false",
2712
3207
  "value": {
@@ -2768,6 +3263,15 @@
2768
3263
  "type": "boolean"
2769
3264
  }
2770
3265
  },
3266
+ {
3267
+ "name": "mode",
3268
+ "description": "The mode determines the platform behaviors of the component.",
3269
+ "required": false,
3270
+ "value": {
3271
+ "kind": "expression",
3272
+ "type": "\"ios\" | \"md\""
3273
+ }
3274
+ },
2771
3275
  {
2772
3276
  "name": "side",
2773
3277
  "description": "The side the fab list will show on relative to the main fab button.",
@@ -2777,6 +3281,15 @@
2777
3281
  "kind": "expression",
2778
3282
  "type": "\"bottom\" | \"end\" | \"start\" | \"top\""
2779
3283
  }
3284
+ },
3285
+ {
3286
+ "name": "theme",
3287
+ "description": "The theme determines the visual appearance of the component.",
3288
+ "required": false,
3289
+ "value": {
3290
+ "kind": "expression",
3291
+ "type": "\"ios\" | \"md\" | \"ionic\""
3292
+ }
2780
3293
  }
2781
3294
  ],
2782
3295
  "slots": [],
@@ -2793,7 +3306,7 @@
2793
3306
  "attributes": [
2794
3307
  {
2795
3308
  "name": "collapse",
2796
- "description": "Describes the scroll effect that will be applied to the footer.\nOnly applies in iOS mode.",
3309
+ "description": "Describes the scroll effect that will be applied to the footer.\nOnly applies when the theme is `\"ios\"`.",
2797
3310
  "required": false,
2798
3311
  "value": {
2799
3312
  "kind": "expression",
@@ -2802,16 +3315,25 @@
2802
3315
  },
2803
3316
  {
2804
3317
  "name": "mode",
2805
- "description": "The mode determines which platform styles to use.",
3318
+ "description": "The mode determines the platform behaviors of the component.",
2806
3319
  "required": false,
2807
3320
  "value": {
2808
3321
  "kind": "expression",
2809
3322
  "type": "\"ios\" | \"md\""
2810
3323
  }
2811
3324
  },
3325
+ {
3326
+ "name": "theme",
3327
+ "description": "The theme determines the visual appearance of the component.",
3328
+ "required": false,
3329
+ "value": {
3330
+ "kind": "expression",
3331
+ "type": "\"ios\" | \"md\" | \"ionic\""
3332
+ }
3333
+ },
2812
3334
  {
2813
3335
  "name": "translucent",
2814
- "description": "If `true`, the footer will be translucent.\nOnly applies when the mode 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.",
3336
+ "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.",
2815
3337
  "required": false,
2816
3338
  "default": "false",
2817
3339
  "value": {
@@ -2824,49 +3346,47 @@
2824
3346
  "events": []
2825
3347
  },
2826
3348
  {
2827
- "name": "IonGrid",
2828
- "doc-url": "https://ionicframework.com/docs/api/grid",
3349
+ "name": "IonGallery",
3350
+ "doc-url": "https://ionicframework.com/docs/api/gallery",
2829
3351
  "description": "",
2830
3352
  "source": {
2831
- "module": "@ionic/core/src/components/grid/grid.d.ts",
2832
- "symbol": "Grid"
3353
+ "module": "@ionic/core/src/components/gallery/gallery.d.ts",
3354
+ "symbol": "Gallery"
2833
3355
  },
2834
3356
  "attributes": [
2835
3357
  {
2836
- "name": "fixed",
2837
- "description": "If `true`, the grid will have a fixed width based on the screen size.",
3358
+ "name": "columns",
3359
+ "description": "The number of columns to display. Can be set as a number or an object of\nbreakpoint values (e.g. `{ xs: 2, sm: 3, md: 4 }`).",
2838
3360
  "required": false,
2839
- "default": "false",
3361
+ "default": "DEFAULT_COLUMNS",
2840
3362
  "value": {
2841
3363
  "kind": "expression",
2842
- "type": "boolean"
3364
+ "type": "GalleryBreakpoints<string | number> | number | string"
2843
3365
  }
2844
- }
2845
- ],
2846
- "slots": [],
2847
- "events": []
2848
- },
2849
- {
2850
- "name": "IonHeader",
2851
- "doc-url": "https://ionicframework.com/docs/api/header",
2852
- "description": "",
2853
- "source": {
2854
- "module": "@ionic/core/src/components/header/header.d.ts",
2855
- "symbol": "Header"
2856
- },
2857
- "attributes": [
3366
+ },
2858
3367
  {
2859
- "name": "collapse",
2860
- "description": "Describes the scroll effect that will be applied to the header.\nOnly applies in iOS mode.\n\nTypically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)",
3368
+ "name": "gap",
3369
+ "description": "The space between gallery items. Accepts valid CSS [length-percentage](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Values/length-percentage)\nvalues like `16px`, `1rem`, `20%`, math functions like `calc(10px + 20%)`,\nCSS variables like `var(--app-gallery-gap)`, or numbers (treated as pixel\nvalues). Can also be set as a breakpoint map\n(e.g. `{ xs: '8px', sm: '1rem', md: '24px' }`). Does not accept\nspace-separated values or CSS keyword values like `inherit`, `auto`, etc.",
2861
3370
  "required": false,
3371
+ "default": "DEFAULT_GAP",
2862
3372
  "value": {
2863
3373
  "kind": "expression",
2864
- "type": "\"condense\" | \"fade\" | undefined"
3374
+ "type": "GalleryBreakpoints<string | number> | number | string"
3375
+ }
3376
+ },
3377
+ {
3378
+ "name": "layout",
3379
+ "description": "The visual layout of the gallery. When `uniform`, rows take up the height\nof the tallest item and are spaced evenly across the gallery. Additionally,\nitems will have an aspect ratio of 1/1, forcing them to be square unless a\nheight is explicitly set. When `masonry`, items will be positioned under each\nother with only the specified gap between them.",
3380
+ "required": false,
3381
+ "default": "'uniform'",
3382
+ "value": {
3383
+ "kind": "expression",
3384
+ "type": "\"masonry\" | \"uniform\""
2865
3385
  }
2866
3386
  },
2867
3387
  {
2868
3388
  "name": "mode",
2869
- "description": "The mode determines which platform styles to use.",
3389
+ "description": "The mode determines the platform behaviors of the component.",
2870
3390
  "required": false,
2871
3391
  "value": {
2872
3392
  "kind": "expression",
@@ -2874,44 +3394,176 @@
2874
3394
  }
2875
3395
  },
2876
3396
  {
2877
- "name": "translucent",
2878
- "description": "If `true`, the header will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).\n\nNote: In order to scroll content behind the header, the `fullscreen`\nattribute needs to be set on the content.",
3397
+ "name": "order",
3398
+ "description": "The order in which items are positioned. Only applies when layout is\n`masonry`. When `sequential`, items are positioned in the order they are\nplaced in the DOM. When `best-fit`, items are positioned under the column\nwith the most available space. Defaults to `sequential` when layout is\n`masonry` and `order` is not explicitly set.",
2879
3399
  "required": false,
2880
- "default": "false",
2881
3400
  "value": {
2882
3401
  "kind": "expression",
2883
- "type": "boolean"
3402
+ "type": "\"best-fit\" | \"sequential\" | undefined"
3403
+ }
3404
+ },
3405
+ {
3406
+ "name": "theme",
3407
+ "description": "The theme determines the visual appearance of the component.",
3408
+ "required": false,
3409
+ "value": {
3410
+ "kind": "expression",
3411
+ "type": "\"ios\" | \"md\" | \"ionic\""
2884
3412
  }
2885
3413
  }
2886
3414
  ],
2887
- "slots": [],
3415
+ "slots": [
3416
+ {
3417
+ "name": "default",
3418
+ "description": "Content is placed in a responsive gallery layout."
3419
+ }
3420
+ ],
2888
3421
  "events": []
2889
3422
  },
2890
3423
  {
2891
- "name": "IonImg",
2892
- "doc-url": "https://ionicframework.com/docs/api/img",
3424
+ "name": "IonGrid",
3425
+ "doc-url": "https://ionicframework.com/docs/api/grid",
2893
3426
  "description": "",
2894
3427
  "source": {
2895
- "module": "@ionic/core/src/components/img/img.d.ts",
2896
- "symbol": "Img"
3428
+ "module": "@ionic/core/src/components/grid/grid.d.ts",
3429
+ "symbol": "Grid"
2897
3430
  },
2898
3431
  "attributes": [
2899
3432
  {
2900
- "name": "alt",
2901
- "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.",
3433
+ "name": "fixed",
3434
+ "description": "If `true`, the grid will have a fixed width based on the screen size.",
2902
3435
  "required": false,
3436
+ "default": "false",
2903
3437
  "value": {
2904
3438
  "kind": "expression",
2905
- "type": "string | undefined"
3439
+ "type": "boolean"
2906
3440
  }
2907
3441
  },
2908
3442
  {
2909
- "name": "src",
2910
- "description": "The image URL. This attribute is mandatory for the `<img>` element.",
3443
+ "name": "mode",
3444
+ "description": "The mode determines the platform behaviors of the component.",
2911
3445
  "required": false,
2912
3446
  "value": {
2913
3447
  "kind": "expression",
2914
- "type": "string | undefined"
3448
+ "type": "\"ios\" | \"md\""
3449
+ }
3450
+ },
3451
+ {
3452
+ "name": "theme",
3453
+ "description": "The theme determines the visual appearance of the component.",
3454
+ "required": false,
3455
+ "value": {
3456
+ "kind": "expression",
3457
+ "type": "\"ios\" | \"md\" | \"ionic\""
3458
+ }
3459
+ }
3460
+ ],
3461
+ "slots": [],
3462
+ "events": []
3463
+ },
3464
+ {
3465
+ "name": "IonHeader",
3466
+ "doc-url": "https://ionicframework.com/docs/api/header",
3467
+ "description": "",
3468
+ "source": {
3469
+ "module": "@ionic/core/src/components/header/header.d.ts",
3470
+ "symbol": "Header"
3471
+ },
3472
+ "attributes": [
3473
+ {
3474
+ "name": "collapse",
3475
+ "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)",
3476
+ "required": false,
3477
+ "value": {
3478
+ "kind": "expression",
3479
+ "type": "\"condense\" | \"fade\" | undefined"
3480
+ }
3481
+ },
3482
+ {
3483
+ "name": "divider",
3484
+ "description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes",
3485
+ "required": false,
3486
+ "default": "false",
3487
+ "value": {
3488
+ "kind": "expression",
3489
+ "type": "boolean"
3490
+ }
3491
+ },
3492
+ {
3493
+ "name": "mode",
3494
+ "description": "The mode determines the platform behaviors of the component.",
3495
+ "required": false,
3496
+ "value": {
3497
+ "kind": "expression",
3498
+ "type": "\"ios\" | \"md\""
3499
+ }
3500
+ },
3501
+ {
3502
+ "name": "theme",
3503
+ "description": "The theme determines the visual appearance of the component.",
3504
+ "required": false,
3505
+ "value": {
3506
+ "kind": "expression",
3507
+ "type": "\"ios\" | \"md\" | \"ionic\""
3508
+ }
3509
+ },
3510
+ {
3511
+ "name": "translucent",
3512
+ "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.",
3513
+ "required": false,
3514
+ "default": "false",
3515
+ "value": {
3516
+ "kind": "expression",
3517
+ "type": "boolean"
3518
+ }
3519
+ }
3520
+ ],
3521
+ "slots": [],
3522
+ "events": []
3523
+ },
3524
+ {
3525
+ "name": "IonImg",
3526
+ "doc-url": "https://ionicframework.com/docs/api/img",
3527
+ "description": "",
3528
+ "source": {
3529
+ "module": "@ionic/core/src/components/img/img.d.ts",
3530
+ "symbol": "Img"
3531
+ },
3532
+ "attributes": [
3533
+ {
3534
+ "name": "alt",
3535
+ "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.",
3536
+ "required": false,
3537
+ "value": {
3538
+ "kind": "expression",
3539
+ "type": "string | undefined"
3540
+ }
3541
+ },
3542
+ {
3543
+ "name": "mode",
3544
+ "description": "The mode determines the platform behaviors of the component.",
3545
+ "required": false,
3546
+ "value": {
3547
+ "kind": "expression",
3548
+ "type": "\"ios\" | \"md\""
3549
+ }
3550
+ },
3551
+ {
3552
+ "name": "src",
3553
+ "description": "The image URL. This attribute is mandatory for the `<img>` element.",
3554
+ "required": false,
3555
+ "value": {
3556
+ "kind": "expression",
3557
+ "type": "string | undefined"
3558
+ }
3559
+ },
3560
+ {
3561
+ "name": "theme",
3562
+ "description": "The theme determines the visual appearance of the component.",
3563
+ "required": false,
3564
+ "value": {
3565
+ "kind": "expression",
3566
+ "type": "\"ios\" | \"md\" | \"ionic\""
2915
3567
  }
2916
3568
  }
2917
3569
  ],
@@ -2968,6 +3620,15 @@
2968
3620
  "type": "boolean"
2969
3621
  }
2970
3622
  },
3623
+ {
3624
+ "name": "mode",
3625
+ "description": "The mode determines the platform behaviors of the component.",
3626
+ "required": false,
3627
+ "value": {
3628
+ "kind": "expression",
3629
+ "type": "\"ios\" | \"md\""
3630
+ }
3631
+ },
2971
3632
  {
2972
3633
  "name": "position",
2973
3634
  "description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
@@ -2978,6 +3639,25 @@
2978
3639
  "type": "\"bottom\" | \"top\""
2979
3640
  }
2980
3641
  },
3642
+ {
3643
+ "name": "preserve-rerender-scroll-position",
3644
+ "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.",
3645
+ "required": false,
3646
+ "default": "false",
3647
+ "value": {
3648
+ "kind": "expression",
3649
+ "type": "boolean"
3650
+ }
3651
+ },
3652
+ {
3653
+ "name": "theme",
3654
+ "description": "The theme determines the visual appearance of the component.",
3655
+ "required": false,
3656
+ "value": {
3657
+ "kind": "expression",
3658
+ "type": "\"ios\" | \"md\" | \"ionic\""
3659
+ }
3660
+ },
2981
3661
  {
2982
3662
  "name": "threshold",
2983
3663
  "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.",
@@ -3029,6 +3709,24 @@
3029
3709
  "kind": "expression",
3030
3710
  "type": "IonicSafeString | string | undefined"
3031
3711
  }
3712
+ },
3713
+ {
3714
+ "name": "mode",
3715
+ "description": "The mode determines the platform behaviors of the component.",
3716
+ "required": false,
3717
+ "value": {
3718
+ "kind": "expression",
3719
+ "type": "\"ios\" | \"md\""
3720
+ }
3721
+ },
3722
+ {
3723
+ "name": "theme",
3724
+ "description": "The theme determines the visual appearance of the component.",
3725
+ "required": false,
3726
+ "value": {
3727
+ "kind": "expression",
3728
+ "type": "\"ios\" | \"md\" | \"ionic\""
3729
+ }
3032
3730
  }
3033
3731
  ],
3034
3732
  "slots": [],
@@ -3067,10 +3765,10 @@
3067
3765
  "name": "autocorrect",
3068
3766
  "description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
3069
3767
  "required": false,
3070
- "default": "false",
3768
+ "default": "'off'",
3071
3769
  "value": {
3072
3770
  "kind": "expression",
3073
- "type": "boolean"
3771
+ "type": "\"off\" | \"on\""
3074
3772
  }
3075
3773
  },
3076
3774
  {
@@ -3178,7 +3876,7 @@
3178
3876
  },
3179
3877
  {
3180
3878
  "name": "fill",
3181
- "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 `md` mode.",
3879
+ "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\"`.",
3182
3880
  "required": false,
3183
3881
  "value": {
3184
3882
  "kind": "expression",
@@ -3214,12 +3912,11 @@
3214
3912
  },
3215
3913
  {
3216
3914
  "name": "label-placement",
3217
- "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 (\"...\").",
3915
+ "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.",
3218
3916
  "required": false,
3219
- "default": "'start'",
3220
3917
  "value": {
3221
3918
  "kind": "expression",
3222
- "type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\""
3919
+ "type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\" | undefined"
3223
3920
  }
3224
3921
  },
3225
3922
  {
@@ -3260,7 +3957,7 @@
3260
3957
  },
3261
3958
  {
3262
3959
  "name": "mode",
3263
- "description": "The mode determines which platform styles to use.",
3960
+ "description": "The mode determines the platform behaviors of the component.",
3264
3961
  "required": false,
3265
3962
  "value": {
3266
3963
  "kind": "expression",
@@ -3326,11 +4023,21 @@
3326
4023
  },
3327
4024
  {
3328
4025
  "name": "shape",
3329
- "description": "The shape of the input. If \"round\" it will have an increased border radius.",
4026
+ "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\"`.",
4027
+ "required": false,
4028
+ "value": {
4029
+ "kind": "expression",
4030
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
4031
+ }
4032
+ },
4033
+ {
4034
+ "name": "size",
4035
+ "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.",
3330
4036
  "required": false,
4037
+ "default": "'medium'",
3331
4038
  "value": {
3332
4039
  "kind": "expression",
3333
- "type": "\"round\" | undefined"
4040
+ "type": "\"large\" | \"medium\" | \"xlarge\" | undefined"
3334
4041
  }
3335
4042
  },
3336
4043
  {
@@ -3352,6 +4059,15 @@
3352
4059
  "type": "string | undefined"
3353
4060
  }
3354
4061
  },
4062
+ {
4063
+ "name": "theme",
4064
+ "description": "The theme determines the visual appearance of the component.",
4065
+ "required": false,
4066
+ "value": {
4067
+ "kind": "expression",
4068
+ "type": "\"ios\" | \"md\" | \"ionic\""
4069
+ }
4070
+ },
3355
4071
  {
3356
4072
  "name": "type",
3357
4073
  "description": "The type of control to display. The default type is text.",
@@ -3497,6 +4213,15 @@
3497
4213
  "type": "number"
3498
4214
  }
3499
4215
  },
4216
+ {
4217
+ "name": "mode",
4218
+ "description": "The mode determines the platform behaviors of the component.",
4219
+ "required": false,
4220
+ "value": {
4221
+ "kind": "expression",
4222
+ "type": "\"ios\" | \"md\""
4223
+ }
4224
+ },
3500
4225
  {
3501
4226
  "name": "pattern",
3502
4227
  "description": "A regex pattern string for allowed characters. Defaults based on type.\n\nFor numbers (`type=\"number\"`): `\"[\\p{N}]\"`\nFor text (`type=\"text\"`): `\"[\\p{L}\\p{N}]\"`",
@@ -3545,6 +4270,15 @@
3545
4270
  "type": "\"large\" | \"medium\" | \"small\""
3546
4271
  }
3547
4272
  },
4273
+ {
4274
+ "name": "theme",
4275
+ "description": "The theme determines the visual appearance of the component.",
4276
+ "required": false,
4277
+ "value": {
4278
+ "kind": "expression",
4279
+ "type": "\"ios\" | \"md\" | \"ionic\""
4280
+ }
4281
+ },
3548
4282
  {
3549
4283
  "name": "type",
3550
4284
  "description": "The type of input allowed in the input boxes.",
@@ -3699,7 +4433,7 @@
3699
4433
  },
3700
4434
  {
3701
4435
  "name": "detail",
3702
- "description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode`\nis `ios` and an `href` or `button` property is present.",
4436
+ "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.",
3703
4437
  "required": false,
3704
4438
  "value": {
3705
4439
  "kind": "expression",
@@ -3710,10 +4444,9 @@
3710
4444
  "name": "detail-icon",
3711
4445
  "description": "The icon to use when `detail` is set to `true`.",
3712
4446
  "required": false,
3713
- "default": "chevronForward",
3714
4447
  "value": {
3715
4448
  "kind": "expression",
3716
- "type": "string"
4449
+ "type": "string | undefined"
3717
4450
  }
3718
4451
  },
3719
4452
  {
@@ -3755,7 +4488,7 @@
3755
4488
  },
3756
4489
  {
3757
4490
  "name": "mode",
3758
- "description": "The mode determines which platform styles to use.",
4491
+ "description": "The mode determines the platform behaviors of the component.",
3759
4492
  "required": false,
3760
4493
  "value": {
3761
4494
  "kind": "expression",
@@ -3799,6 +4532,15 @@
3799
4532
  "type": "string | undefined"
3800
4533
  }
3801
4534
  },
4535
+ {
4536
+ "name": "theme",
4537
+ "description": "The theme determines the visual appearance of the component.",
4538
+ "required": false,
4539
+ "value": {
4540
+ "kind": "expression",
4541
+ "type": "\"ios\" | \"md\" | \"ionic\""
4542
+ }
4543
+ },
3802
4544
  {
3803
4545
  "name": "type",
3804
4546
  "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
@@ -3846,7 +4588,7 @@
3846
4588
  },
3847
4589
  {
3848
4590
  "name": "mode",
3849
- "description": "The mode determines which platform styles to use.",
4591
+ "description": "The mode determines the platform behaviors of the component.",
3850
4592
  "required": false,
3851
4593
  "value": {
3852
4594
  "kind": "expression",
@@ -3862,6 +4604,15 @@
3862
4604
  "kind": "expression",
3863
4605
  "type": "boolean"
3864
4606
  }
4607
+ },
4608
+ {
4609
+ "name": "theme",
4610
+ "description": "The theme determines the visual appearance of the component.",
4611
+ "required": false,
4612
+ "value": {
4613
+ "kind": "expression",
4614
+ "type": "\"ios\" | \"md\" | \"ionic\""
4615
+ }
3865
4616
  }
3866
4617
  ],
3867
4618
  "slots": [
@@ -3888,7 +4639,26 @@
3888
4639
  "module": "@ionic/core/src/components/item-group/item-group.d.ts",
3889
4640
  "symbol": "ItemGroup"
3890
4641
  },
3891
- "attributes": [],
4642
+ "attributes": [
4643
+ {
4644
+ "name": "mode",
4645
+ "description": "The mode determines the platform behaviors of the component.",
4646
+ "required": false,
4647
+ "value": {
4648
+ "kind": "expression",
4649
+ "type": "\"ios\" | \"md\""
4650
+ }
4651
+ },
4652
+ {
4653
+ "name": "theme",
4654
+ "description": "The theme determines the visual appearance of the component.",
4655
+ "required": false,
4656
+ "value": {
4657
+ "kind": "expression",
4658
+ "type": "\"ios\" | \"md\" | \"ionic\""
4659
+ }
4660
+ }
4661
+ ],
3892
4662
  "slots": [],
3893
4663
  "events": []
3894
4664
  },
@@ -3948,9 +4718,19 @@
3948
4718
  "type": "string | undefined"
3949
4719
  }
3950
4720
  },
4721
+ {
4722
+ "name": "hue",
4723
+ "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.",
4724
+ "required": false,
4725
+ "default": "'subtle'",
4726
+ "value": {
4727
+ "kind": "expression",
4728
+ "type": "\"bold\" | \"subtle\" | undefined"
4729
+ }
4730
+ },
3951
4731
  {
3952
4732
  "name": "mode",
3953
- "description": "The mode determines which platform styles to use.",
4733
+ "description": "The mode determines the platform behaviors of the component.",
3954
4734
  "required": false,
3955
4735
  "value": {
3956
4736
  "kind": "expression",
@@ -3966,6 +4746,15 @@
3966
4746
  "type": "string | undefined"
3967
4747
  }
3968
4748
  },
4749
+ {
4750
+ "name": "shape",
4751
+ "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.",
4752
+ "required": false,
4753
+ "value": {
4754
+ "kind": "expression",
4755
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
4756
+ }
4757
+ },
3969
4758
  {
3970
4759
  "name": "target",
3971
4760
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
@@ -3975,6 +4764,15 @@
3975
4764
  "type": "string | undefined"
3976
4765
  }
3977
4766
  },
4767
+ {
4768
+ "name": "theme",
4769
+ "description": "The theme determines the visual appearance of the component.",
4770
+ "required": false,
4771
+ "value": {
4772
+ "kind": "expression",
4773
+ "type": "\"ios\" | \"md\" | \"ionic\""
4774
+ }
4775
+ },
3978
4776
  {
3979
4777
  "name": "type",
3980
4778
  "description": "The type of the button.",
@@ -4023,6 +4821,15 @@
4023
4821
  "symbol": "ItemOptions"
4024
4822
  },
4025
4823
  "attributes": [
4824
+ {
4825
+ "name": "mode",
4826
+ "description": "The mode determines the platform behaviors of the component.",
4827
+ "required": false,
4828
+ "value": {
4829
+ "kind": "expression",
4830
+ "type": "\"ios\" | \"md\""
4831
+ }
4832
+ },
4026
4833
  {
4027
4834
  "name": "side",
4028
4835
  "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.",
@@ -4032,6 +4839,15 @@
4032
4839
  "kind": "expression",
4033
4840
  "type": "\"end\" | \"start\""
4034
4841
  }
4842
+ },
4843
+ {
4844
+ "name": "theme",
4845
+ "description": "The theme determines the visual appearance of the component.",
4846
+ "required": false,
4847
+ "value": {
4848
+ "kind": "expression",
4849
+ "type": "\"ios\" | \"md\" | \"ionic\""
4850
+ }
4035
4851
  }
4036
4852
  ],
4037
4853
  "slots": [],
@@ -4066,6 +4882,24 @@
4066
4882
  "kind": "expression",
4067
4883
  "type": "boolean"
4068
4884
  }
4885
+ },
4886
+ {
4887
+ "name": "mode",
4888
+ "description": "The mode determines the platform behaviors of the component.",
4889
+ "required": false,
4890
+ "value": {
4891
+ "kind": "expression",
4892
+ "type": "\"ios\" | \"md\""
4893
+ }
4894
+ },
4895
+ {
4896
+ "name": "theme",
4897
+ "description": "The theme determines the visual appearance of the component.",
4898
+ "required": false,
4899
+ "value": {
4900
+ "kind": "expression",
4901
+ "type": "\"ios\" | \"md\" | \"ionic\""
4902
+ }
4069
4903
  }
4070
4904
  ],
4071
4905
  "slots": [],
@@ -4102,7 +4936,7 @@
4102
4936
  },
4103
4937
  {
4104
4938
  "name": "mode",
4105
- "description": "The mode determines which platform styles to use.",
4939
+ "description": "The mode determines the platform behaviors of the component.",
4106
4940
  "required": false,
4107
4941
  "value": {
4108
4942
  "kind": "expression",
@@ -4117,6 +4951,15 @@
4117
4951
  "kind": "expression",
4118
4952
  "type": "\"fixed\" | \"floating\" | \"stacked\" | undefined"
4119
4953
  }
4954
+ },
4955
+ {
4956
+ "name": "theme",
4957
+ "description": "The theme determines the visual appearance of the component.",
4958
+ "required": false,
4959
+ "value": {
4960
+ "kind": "expression",
4961
+ "type": "\"ios\" | \"md\" | \"ionic\""
4962
+ }
4120
4963
  }
4121
4964
  ],
4122
4965
  "slots": [],
@@ -4152,12 +4995,30 @@
4152
4995
  },
4153
4996
  {
4154
4997
  "name": "mode",
4155
- "description": "The mode determines which platform styles to use.",
4998
+ "description": "The mode determines the platform behaviors of the component.",
4156
4999
  "required": false,
4157
5000
  "value": {
4158
5001
  "kind": "expression",
4159
5002
  "type": "\"ios\" | \"md\""
4160
5003
  }
5004
+ },
5005
+ {
5006
+ "name": "shape",
5007
+ "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.",
5008
+ "required": false,
5009
+ "value": {
5010
+ "kind": "expression",
5011
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
5012
+ }
5013
+ },
5014
+ {
5015
+ "name": "theme",
5016
+ "description": "The theme determines the visual appearance of the component.",
5017
+ "required": false,
5018
+ "value": {
5019
+ "kind": "expression",
5020
+ "type": "\"ios\" | \"md\" | \"ionic\""
5021
+ }
4161
5022
  }
4162
5023
  ],
4163
5024
  "slots": [],
@@ -4192,12 +5053,21 @@
4192
5053
  },
4193
5054
  {
4194
5055
  "name": "mode",
4195
- "description": "The mode determines which platform styles to use.",
5056
+ "description": "The mode determines the platform behaviors of the component.",
4196
5057
  "required": false,
4197
5058
  "value": {
4198
5059
  "kind": "expression",
4199
5060
  "type": "\"ios\" | \"md\""
4200
5061
  }
5062
+ },
5063
+ {
5064
+ "name": "theme",
5065
+ "description": "The theme determines the visual appearance of the component.",
5066
+ "required": false,
5067
+ "value": {
5068
+ "kind": "expression",
5069
+ "type": "\"ios\" | \"md\" | \"ionic\""
5070
+ }
4201
5071
  }
4202
5072
  ],
4203
5073
  "slots": [],
@@ -4309,7 +5179,7 @@
4309
5179
  },
4310
5180
  {
4311
5181
  "name": "mode",
4312
- "description": "The mode determines which platform styles to use.",
5182
+ "description": "The mode determines the platform behaviors of the component.",
4313
5183
  "required": false,
4314
5184
  "value": {
4315
5185
  "kind": "expression",
@@ -4335,9 +5205,18 @@
4335
5205
  "type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | null | undefined"
4336
5206
  }
4337
5207
  },
5208
+ {
5209
+ "name": "theme",
5210
+ "description": "The theme determines the visual appearance of the component.",
5211
+ "required": false,
5212
+ "value": {
5213
+ "kind": "expression",
5214
+ "type": "\"ios\" | \"md\" | \"ionic\""
5215
+ }
5216
+ },
4338
5217
  {
4339
5218
  "name": "translucent",
4340
- "description": "If `true`, the loading indicator will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
5219
+ "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).",
4341
5220
  "required": false,
4342
5221
  "default": "false",
4343
5222
  "value": {
@@ -4486,6 +5365,15 @@
4486
5365
  "type": "string | undefined"
4487
5366
  }
4488
5367
  },
5368
+ {
5369
+ "name": "mode",
5370
+ "description": "The mode determines the platform behaviors of the component.",
5371
+ "required": false,
5372
+ "value": {
5373
+ "kind": "expression",
5374
+ "type": "\"ios\" | \"md\""
5375
+ }
5376
+ },
4489
5377
  {
4490
5378
  "name": "side",
4491
5379
  "description": "Which side of the view the menu should be placed.",
@@ -4506,6 +5394,15 @@
4506
5394
  "type": "boolean"
4507
5395
  }
4508
5396
  },
5397
+ {
5398
+ "name": "theme",
5399
+ "description": "The theme determines the visual appearance of the component.",
5400
+ "required": false,
5401
+ "value": {
5402
+ "kind": "expression",
5403
+ "type": "\"ios\" | \"md\" | \"ionic\""
5404
+ }
5405
+ },
4509
5406
  {
4510
5407
  "name": "type",
4511
5408
  "description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
@@ -4609,13 +5506,22 @@
4609
5506
  },
4610
5507
  {
4611
5508
  "name": "mode",
4612
- "description": "The mode determines which platform styles to use.",
5509
+ "description": "The mode determines the platform behaviors of the component.",
4613
5510
  "required": false,
4614
5511
  "value": {
4615
5512
  "kind": "expression",
4616
5513
  "type": "\"ios\" | \"md\""
4617
5514
  }
4618
5515
  },
5516
+ {
5517
+ "name": "theme",
5518
+ "description": "The theme determines the visual appearance of the component.",
5519
+ "required": false,
5520
+ "value": {
5521
+ "kind": "expression",
5522
+ "type": "\"ios\" | \"md\" | \"ionic\""
5523
+ }
5524
+ },
4619
5525
  {
4620
5526
  "name": "type",
4621
5527
  "description": "The type of the button.",
@@ -4657,6 +5563,24 @@
4657
5563
  "kind": "expression",
4658
5564
  "type": "string | undefined"
4659
5565
  }
5566
+ },
5567
+ {
5568
+ "name": "mode",
5569
+ "description": "The mode determines the platform behaviors of the component.",
5570
+ "required": false,
5571
+ "value": {
5572
+ "kind": "expression",
5573
+ "type": "\"ios\" | \"md\""
5574
+ }
5575
+ },
5576
+ {
5577
+ "name": "theme",
5578
+ "description": "The theme determines the visual appearance of the component.",
5579
+ "required": false,
5580
+ "value": {
5581
+ "kind": "expression",
5582
+ "type": "\"ios\" | \"md\" | \"ionic\""
5583
+ }
4660
5584
  }
4661
5585
  ],
4662
5586
  "slots": [
@@ -4832,7 +5756,7 @@
4832
5756
  },
4833
5757
  {
4834
5758
  "name": "mode",
4835
- "description": "The mode determines which platform styles to use.",
5759
+ "description": "The mode determines the platform behaviors of the component.",
4836
5760
  "required": false,
4837
5761
  "value": {
4838
5762
  "kind": "expression",
@@ -4848,6 +5772,15 @@
4848
5772
  "type": "HTMLElement | undefined"
4849
5773
  }
4850
5774
  },
5775
+ {
5776
+ "name": "shape",
5777
+ "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.",
5778
+ "required": false,
5779
+ "value": {
5780
+ "kind": "expression",
5781
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
5782
+ }
5783
+ },
4851
5784
  {
4852
5785
  "name": "show-backdrop",
4853
5786
  "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.",
@@ -4858,6 +5791,15 @@
4858
5791
  "type": "boolean"
4859
5792
  }
4860
5793
  },
5794
+ {
5795
+ "name": "theme",
5796
+ "description": "The theme determines the visual appearance of the component.",
5797
+ "required": false,
5798
+ "value": {
5799
+ "kind": "expression",
5800
+ "type": "\"ios\" | \"md\" | \"ionic\""
5801
+ }
5802
+ },
4861
5803
  {
4862
5804
  "name": "trigger",
4863
5805
  "description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked.",
@@ -5017,12 +5959,21 @@
5017
5959
  },
5018
5960
  {
5019
5961
  "name": "mode",
5020
- "description": "The mode determines which platform styles to use.",
5962
+ "description": "The mode determines the platform behaviors of the component.",
5021
5963
  "required": false,
5022
5964
  "value": {
5023
5965
  "kind": "expression",
5024
5966
  "type": "\"ios\" | \"md\""
5025
5967
  }
5968
+ },
5969
+ {
5970
+ "name": "theme",
5971
+ "description": "The theme determines the visual appearance of the component.",
5972
+ "required": false,
5973
+ "value": {
5974
+ "kind": "expression",
5975
+ "type": "\"ios\" | \"md\" | \"ionic\""
5976
+ }
5026
5977
  }
5027
5978
  ],
5028
5979
  "slots": [],
@@ -5039,12 +5990,21 @@
5039
5990
  "attributes": [
5040
5991
  {
5041
5992
  "name": "mode",
5042
- "description": "The mode determines which platform styles to use.",
5993
+ "description": "The mode determines the platform behaviors of the component.",
5043
5994
  "required": false,
5044
5995
  "value": {
5045
5996
  "kind": "expression",
5046
5997
  "type": "\"ios\" | \"md\""
5047
5998
  }
5999
+ },
6000
+ {
6001
+ "name": "theme",
6002
+ "description": "The theme determines the visual appearance of the component.",
6003
+ "required": false,
6004
+ "value": {
6005
+ "kind": "expression",
6006
+ "type": "\"ios\" | \"md\" | \"ionic\""
6007
+ }
5048
6008
  }
5049
6009
  ],
5050
6010
  "slots": [],
@@ -5081,13 +6041,22 @@
5081
6041
  },
5082
6042
  {
5083
6043
  "name": "mode",
5084
- "description": "The mode determines which platform styles to use.",
6044
+ "description": "The mode determines the platform behaviors of the component.",
5085
6045
  "required": false,
5086
6046
  "value": {
5087
6047
  "kind": "expression",
5088
6048
  "type": "\"ios\" | \"md\""
5089
6049
  }
5090
6050
  },
6051
+ {
6052
+ "name": "theme",
6053
+ "description": "The theme determines the visual appearance of the component.",
6054
+ "required": false,
6055
+ "value": {
6056
+ "kind": "expression",
6057
+ "type": "\"ios\" | \"md\" | \"ionic\""
6058
+ }
6059
+ },
5091
6060
  {
5092
6061
  "name": "value",
5093
6062
  "description": "The selected option in the picker.",
@@ -5150,6 +6119,24 @@
5150
6119
  "type": "boolean"
5151
6120
  }
5152
6121
  },
6122
+ {
6123
+ "name": "mode",
6124
+ "description": "The mode determines the platform behaviors of the component.",
6125
+ "required": false,
6126
+ "value": {
6127
+ "kind": "expression",
6128
+ "type": "\"ios\" | \"md\""
6129
+ }
6130
+ },
6131
+ {
6132
+ "name": "theme",
6133
+ "description": "The theme determines the visual appearance of the component.",
6134
+ "required": false,
6135
+ "value": {
6136
+ "kind": "expression",
6137
+ "type": "\"ios\" | \"md\" | \"ionic\""
6138
+ }
6139
+ },
5153
6140
  {
5154
6141
  "name": "value",
5155
6142
  "description": "The text value of the option.",
@@ -5163,6 +6150,243 @@
5163
6150
  "slots": [],
5164
6151
  "events": []
5165
6152
  },
6153
+ {
6154
+ "name": "IonPickerLegacy",
6155
+ "doc-url": "https://ionicframework.com/docs/api/picker-legacy",
6156
+ "description": "",
6157
+ "source": {
6158
+ "module": "@ionic/core/src/components/picker-legacy/picker.d.ts",
6159
+ "symbol": "PickerLegacy"
6160
+ },
6161
+ "attributes": [
6162
+ {
6163
+ "name": "animated",
6164
+ "description": "If `true`, the picker will animate.",
6165
+ "required": false,
6166
+ "default": "true",
6167
+ "value": {
6168
+ "kind": "expression",
6169
+ "type": "boolean"
6170
+ }
6171
+ },
6172
+ {
6173
+ "name": "backdrop-dismiss",
6174
+ "description": "If `true`, the picker will be dismissed when the backdrop is clicked.",
6175
+ "required": false,
6176
+ "default": "true",
6177
+ "value": {
6178
+ "kind": "expression",
6179
+ "type": "boolean"
6180
+ }
6181
+ },
6182
+ {
6183
+ "name": "buttons",
6184
+ "description": "Array of buttons to be displayed at the top of the picker.",
6185
+ "required": false,
6186
+ "default": "[]",
6187
+ "value": {
6188
+ "kind": "expression",
6189
+ "type": "PickerButton[]"
6190
+ }
6191
+ },
6192
+ {
6193
+ "name": "columns",
6194
+ "description": "Array of columns to be displayed in the picker.",
6195
+ "required": false,
6196
+ "default": "[]",
6197
+ "value": {
6198
+ "kind": "expression",
6199
+ "type": "PickerColumn[]"
6200
+ }
6201
+ },
6202
+ {
6203
+ "name": "css-class",
6204
+ "description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces.",
6205
+ "required": false,
6206
+ "value": {
6207
+ "kind": "expression",
6208
+ "type": "string | string[] | undefined"
6209
+ }
6210
+ },
6211
+ {
6212
+ "name": "duration",
6213
+ "description": "Number of milliseconds to wait before dismissing the picker.",
6214
+ "required": false,
6215
+ "default": "0",
6216
+ "value": {
6217
+ "kind": "expression",
6218
+ "type": "number"
6219
+ }
6220
+ },
6221
+ {
6222
+ "name": "enterAnimation",
6223
+ "description": "Animation to use when the picker is presented.",
6224
+ "required": false,
6225
+ "value": {
6226
+ "kind": "expression",
6227
+ "type": "((baseEl: any, opts?: any) => Animation) | undefined"
6228
+ }
6229
+ },
6230
+ {
6231
+ "name": "htmlAttributes",
6232
+ "description": "Additional attributes to pass to the picker.",
6233
+ "required": false,
6234
+ "value": {
6235
+ "kind": "expression",
6236
+ "type": "undefined | { [key: string]: any; }"
6237
+ }
6238
+ },
6239
+ {
6240
+ "name": "is-open",
6241
+ "description": "If `true`, the picker will open. If `false`, the picker will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the pickerController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe picker dismisses. You will need to do that in your code.",
6242
+ "required": false,
6243
+ "default": "false",
6244
+ "value": {
6245
+ "kind": "expression",
6246
+ "type": "boolean"
6247
+ }
6248
+ },
6249
+ {
6250
+ "name": "keyboard-close",
6251
+ "description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented.",
6252
+ "required": false,
6253
+ "default": "true",
6254
+ "value": {
6255
+ "kind": "expression",
6256
+ "type": "boolean"
6257
+ }
6258
+ },
6259
+ {
6260
+ "name": "leaveAnimation",
6261
+ "description": "Animation to use when the picker is dismissed.",
6262
+ "required": false,
6263
+ "value": {
6264
+ "kind": "expression",
6265
+ "type": "((baseEl: any, opts?: any) => Animation) | undefined"
6266
+ }
6267
+ },
6268
+ {
6269
+ "name": "mode",
6270
+ "description": "The mode determines the platform behaviors of the component.",
6271
+ "required": false,
6272
+ "value": {
6273
+ "kind": "expression",
6274
+ "type": "\"ios\" | \"md\""
6275
+ }
6276
+ },
6277
+ {
6278
+ "name": "show-backdrop",
6279
+ "description": "If `true`, a backdrop will be displayed behind the picker.",
6280
+ "required": false,
6281
+ "default": "true",
6282
+ "value": {
6283
+ "kind": "expression",
6284
+ "type": "boolean"
6285
+ }
6286
+ },
6287
+ {
6288
+ "name": "theme",
6289
+ "description": "The theme determines the visual appearance of the component.",
6290
+ "required": false,
6291
+ "value": {
6292
+ "kind": "expression",
6293
+ "type": "\"ios\" | \"md\" | \"ionic\""
6294
+ }
6295
+ },
6296
+ {
6297
+ "name": "trigger",
6298
+ "description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
6299
+ "required": false,
6300
+ "value": {
6301
+ "kind": "expression",
6302
+ "type": "string | undefined"
6303
+ }
6304
+ }
6305
+ ],
6306
+ "slots": [],
6307
+ "events": [
6308
+ {
6309
+ "name": "didDismiss",
6310
+ "description": "Emitted after the picker has dismissed.\nShorthand for ionPickerDidDismiss.",
6311
+ "arguments": [
6312
+ {
6313
+ "name": "detail",
6314
+ "type": "OverlayEventDetail<any>"
6315
+ }
6316
+ ]
6317
+ },
6318
+ {
6319
+ "name": "didPresent",
6320
+ "description": "Emitted after the picker has presented.\nShorthand for ionPickerWillDismiss.",
6321
+ "arguments": [
6322
+ {
6323
+ "name": "detail",
6324
+ "type": "void"
6325
+ }
6326
+ ]
6327
+ },
6328
+ {
6329
+ "name": "ionPickerDidDismiss",
6330
+ "description": "Emitted after the picker has dismissed.",
6331
+ "arguments": [
6332
+ {
6333
+ "name": "detail",
6334
+ "type": "OverlayEventDetail<any>"
6335
+ }
6336
+ ]
6337
+ },
6338
+ {
6339
+ "name": "ionPickerDidPresent",
6340
+ "description": "Emitted after the picker has presented.",
6341
+ "arguments": [
6342
+ {
6343
+ "name": "detail",
6344
+ "type": "void"
6345
+ }
6346
+ ]
6347
+ },
6348
+ {
6349
+ "name": "ionPickerWillDismiss",
6350
+ "description": "Emitted before the picker has dismissed.",
6351
+ "arguments": [
6352
+ {
6353
+ "name": "detail",
6354
+ "type": "OverlayEventDetail<any>"
6355
+ }
6356
+ ]
6357
+ },
6358
+ {
6359
+ "name": "ionPickerWillPresent",
6360
+ "description": "Emitted before the picker has presented.",
6361
+ "arguments": [
6362
+ {
6363
+ "name": "detail",
6364
+ "type": "void"
6365
+ }
6366
+ ]
6367
+ },
6368
+ {
6369
+ "name": "willDismiss",
6370
+ "description": "Emitted before the picker has dismissed.\nShorthand for ionPickerWillDismiss.",
6371
+ "arguments": [
6372
+ {
6373
+ "name": "detail",
6374
+ "type": "OverlayEventDetail<any>"
6375
+ }
6376
+ ]
6377
+ },
6378
+ {
6379
+ "name": "willPresent",
6380
+ "description": "Emitted before the picker has presented.\nShorthand for ionPickerWillPresent.",
6381
+ "arguments": [
6382
+ {
6383
+ "name": "detail",
6384
+ "type": "void"
6385
+ }
6386
+ ]
6387
+ }
6388
+ ]
6389
+ },
5166
6390
  {
5167
6391
  "name": "IonPopover",
5168
6392
  "doc-url": "https://ionicframework.com/docs/api/popover",
@@ -5174,7 +6398,7 @@
5174
6398
  "attributes": [
5175
6399
  {
5176
6400
  "name": "alignment",
5177
- "description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `ios` mode, and `\"start\"` for `md` mode.",
6401
+ "description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
5178
6402
  "required": false,
5179
6403
  "value": {
5180
6404
  "kind": "expression",
@@ -5193,7 +6417,7 @@
5193
6417
  },
5194
6418
  {
5195
6419
  "name": "arrow",
5196
- "description": "If `true`, the popover will display an arrow that points at the\n`reference` when running in `ios` mode. Does not apply in `md` mode.",
6420
+ "description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme.",
5197
6421
  "required": false,
5198
6422
  "default": "true",
5199
6423
  "value": {
@@ -5317,7 +6541,7 @@
5317
6541
  },
5318
6542
  {
5319
6543
  "name": "mode",
5320
- "description": "The mode determines which platform styles to use.",
6544
+ "description": "The mode determines the platform behaviors of the component.",
5321
6545
  "required": false,
5322
6546
  "value": {
5323
6547
  "kind": "expression",
@@ -5364,9 +6588,18 @@
5364
6588
  "type": "\"auto\" | \"cover\""
5365
6589
  }
5366
6590
  },
6591
+ {
6592
+ "name": "theme",
6593
+ "description": "The theme determines the visual appearance of the component.",
6594
+ "required": false,
6595
+ "value": {
6596
+ "kind": "expression",
6597
+ "type": "\"ios\" | \"md\" | \"ionic\""
6598
+ }
6599
+ },
5367
6600
  {
5368
6601
  "name": "translucent",
5369
- "description": "If `true`, the popover will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
6602
+ "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).",
5370
6603
  "required": false,
5371
6604
  "default": "false",
5372
6605
  "value": {
@@ -5513,7 +6746,7 @@
5513
6746
  },
5514
6747
  {
5515
6748
  "name": "mode",
5516
- "description": "The mode determines which platform styles to use.",
6749
+ "description": "The mode determines the platform behaviors of the component.",
5517
6750
  "required": false,
5518
6751
  "value": {
5519
6752
  "kind": "expression",
@@ -5521,13 +6754,31 @@
5521
6754
  }
5522
6755
  },
5523
6756
  {
5524
- "name": "reversed",
5525
- "description": "If true, reverse the progress bar direction.",
6757
+ "name": "reversed",
6758
+ "description": "If true, reverse the progress bar direction.",
6759
+ "required": false,
6760
+ "default": "false",
6761
+ "value": {
6762
+ "kind": "expression",
6763
+ "type": "boolean"
6764
+ }
6765
+ },
6766
+ {
6767
+ "name": "shape",
6768
+ "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.",
6769
+ "required": false,
6770
+ "value": {
6771
+ "kind": "expression",
6772
+ "type": "\"rectangular\" | \"round\" | undefined"
6773
+ }
6774
+ },
6775
+ {
6776
+ "name": "theme",
6777
+ "description": "The theme determines the visual appearance of the component.",
5526
6778
  "required": false,
5527
- "default": "false",
5528
6779
  "value": {
5529
6780
  "kind": "expression",
5530
- "type": "boolean"
6781
+ "type": "\"ios\" | \"md\" | \"ionic\""
5531
6782
  }
5532
6783
  },
5533
6784
  {
@@ -5612,7 +6863,7 @@
5612
6863
  },
5613
6864
  {
5614
6865
  "name": "mode",
5615
- "description": "The mode determines which platform styles to use.",
6866
+ "description": "The mode determines the platform behaviors of the component.",
5616
6867
  "required": false,
5617
6868
  "value": {
5618
6869
  "kind": "expression",
@@ -5629,6 +6880,15 @@
5629
6880
  "type": "string"
5630
6881
  }
5631
6882
  },
6883
+ {
6884
+ "name": "theme",
6885
+ "description": "The theme determines the visual appearance of the component.",
6886
+ "required": false,
6887
+ "value": {
6888
+ "kind": "expression",
6889
+ "type": "\"ios\" | \"md\" | \"ionic\""
6890
+ }
6891
+ },
5632
6892
  {
5633
6893
  "name": "value",
5634
6894
  "description": "the value of the radio.",
@@ -5714,6 +6974,15 @@
5714
6974
  "type": "string | undefined"
5715
6975
  }
5716
6976
  },
6977
+ {
6978
+ "name": "mode",
6979
+ "description": "The mode determines the platform behaviors of the component.",
6980
+ "required": false,
6981
+ "value": {
6982
+ "kind": "expression",
6983
+ "type": "\"ios\" | \"md\""
6984
+ }
6985
+ },
5717
6986
  {
5718
6987
  "name": "name",
5719
6988
  "description": "The name of the control, which is submitted with the form data.",
@@ -5724,6 +6993,15 @@
5724
6993
  "type": "string"
5725
6994
  }
5726
6995
  },
6996
+ {
6997
+ "name": "theme",
6998
+ "description": "The theme determines the visual appearance of the component.",
6999
+ "required": false,
7000
+ "value": {
7001
+ "kind": "expression",
7002
+ "type": "\"ios\" | \"md\" | \"ionic\""
7003
+ }
7004
+ },
5727
7005
  {
5728
7006
  "name": "value",
5729
7007
  "description": "the value of the radio group.",
@@ -5845,7 +7123,7 @@
5845
7123
  },
5846
7124
  {
5847
7125
  "name": "mode",
5848
- "description": "The mode determines which platform styles to use.",
7126
+ "description": "The mode determines the platform behaviors of the component.",
5849
7127
  "required": false,
5850
7128
  "value": {
5851
7129
  "kind": "expression",
@@ -5902,6 +7180,15 @@
5902
7180
  "type": "number"
5903
7181
  }
5904
7182
  },
7183
+ {
7184
+ "name": "theme",
7185
+ "description": "The theme determines the visual appearance of the component.",
7186
+ "required": false,
7187
+ "value": {
7188
+ "kind": "expression",
7189
+ "type": "\"ios\" | \"md\" | \"ionic\""
7190
+ }
7191
+ },
5905
7192
  {
5906
7193
  "name": "ticks",
5907
7194
  "description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
@@ -6031,7 +7318,7 @@
6031
7318
  },
6032
7319
  {
6033
7320
  "name": "mode",
6034
- "description": "The mode determines which platform styles to use.",
7321
+ "description": "The mode determines the platform behaviors of the component.",
6035
7322
  "required": false,
6036
7323
  "value": {
6037
7324
  "kind": "expression",
@@ -6077,6 +7364,15 @@
6077
7364
  "kind": "expression",
6078
7365
  "type": "string"
6079
7366
  }
7367
+ },
7368
+ {
7369
+ "name": "theme",
7370
+ "description": "The theme determines the visual appearance of the component.",
7371
+ "required": false,
7372
+ "value": {
7373
+ "kind": "expression",
7374
+ "type": "\"ios\" | \"md\" | \"ionic\""
7375
+ }
6080
7376
  }
6081
7377
  ],
6082
7378
  "slots": [],
@@ -6142,6 +7438,15 @@
6142
7438
  "symbol": "RefresherContent"
6143
7439
  },
6144
7440
  "attributes": [
7441
+ {
7442
+ "name": "mode",
7443
+ "description": "The mode determines the platform behaviors of the component.",
7444
+ "required": false,
7445
+ "value": {
7446
+ "kind": "expression",
7447
+ "type": "\"ios\" | \"md\""
7448
+ }
7449
+ },
6145
7450
  {
6146
7451
  "name": "pulling-icon",
6147
7452
  "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.",
@@ -6177,6 +7482,15 @@
6177
7482
  "kind": "expression",
6178
7483
  "type": "IonicSafeString | string | undefined"
6179
7484
  }
7485
+ },
7486
+ {
7487
+ "name": "theme",
7488
+ "description": "The theme determines the visual appearance of the component.",
7489
+ "required": false,
7490
+ "value": {
7491
+ "kind": "expression",
7492
+ "type": "\"ios\" | \"md\" | \"ionic\""
7493
+ }
6180
7494
  }
6181
7495
  ],
6182
7496
  "slots": [],
@@ -6190,7 +7504,26 @@
6190
7504
  "module": "@ionic/core/src/components/reorder/reorder.d.ts",
6191
7505
  "symbol": "Reorder"
6192
7506
  },
6193
- "attributes": [],
7507
+ "attributes": [
7508
+ {
7509
+ "name": "mode",
7510
+ "description": "The mode determines the platform behaviors of the component.",
7511
+ "required": false,
7512
+ "value": {
7513
+ "kind": "expression",
7514
+ "type": "\"ios\" | \"md\""
7515
+ }
7516
+ },
7517
+ {
7518
+ "name": "theme",
7519
+ "description": "The theme determines the visual appearance of the component.",
7520
+ "required": false,
7521
+ "value": {
7522
+ "kind": "expression",
7523
+ "type": "\"ios\" | \"md\" | \"ionic\""
7524
+ }
7525
+ }
7526
+ ],
6194
7527
  "slots": [],
6195
7528
  "events": []
6196
7529
  },
@@ -6212,6 +7545,24 @@
6212
7545
  "kind": "expression",
6213
7546
  "type": "boolean"
6214
7547
  }
7548
+ },
7549
+ {
7550
+ "name": "mode",
7551
+ "description": "The mode determines the platform behaviors of the component.",
7552
+ "required": false,
7553
+ "value": {
7554
+ "kind": "expression",
7555
+ "type": "\"ios\" | \"md\""
7556
+ }
7557
+ },
7558
+ {
7559
+ "name": "theme",
7560
+ "description": "The theme determines the visual appearance of the component.",
7561
+ "required": false,
7562
+ "value": {
7563
+ "kind": "expression",
7564
+ "type": "\"ios\" | \"md\" | \"ionic\""
7565
+ }
6215
7566
  }
6216
7567
  ],
6217
7568
  "slots": [],
@@ -6267,6 +7618,24 @@
6267
7618
  "symbol": "RippleEffect"
6268
7619
  },
6269
7620
  "attributes": [
7621
+ {
7622
+ "name": "mode",
7623
+ "description": "The mode determines the platform behaviors of the component.",
7624
+ "required": false,
7625
+ "value": {
7626
+ "kind": "expression",
7627
+ "type": "\"ios\" | \"md\""
7628
+ }
7629
+ },
7630
+ {
7631
+ "name": "theme",
7632
+ "description": "The theme determines the visual appearance of the component.",
7633
+ "required": false,
7634
+ "value": {
7635
+ "kind": "expression",
7636
+ "type": "\"ios\" | \"md\" | \"ionic\""
7637
+ }
7638
+ },
6270
7639
  {
6271
7640
  "name": "type",
6272
7641
  "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.",
@@ -6326,6 +7695,24 @@
6326
7695
  "type": "undefined | { [key: string]: any; }"
6327
7696
  }
6328
7697
  },
7698
+ {
7699
+ "name": "mode",
7700
+ "description": "The mode determines the platform behaviors of the component.",
7701
+ "required": false,
7702
+ "value": {
7703
+ "kind": "expression",
7704
+ "type": "\"ios\" | \"md\""
7705
+ }
7706
+ },
7707
+ {
7708
+ "name": "theme",
7709
+ "description": "The theme determines the visual appearance of the component.",
7710
+ "required": false,
7711
+ "value": {
7712
+ "kind": "expression",
7713
+ "type": "\"ios\" | \"md\" | \"ionic\""
7714
+ }
7715
+ },
6329
7716
  {
6330
7717
  "name": "url",
6331
7718
  "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.",
@@ -6359,7 +7746,26 @@
6359
7746
  "module": "@ionic/core/src/components/row/row.d.ts",
6360
7747
  "symbol": "Row"
6361
7748
  },
6362
- "attributes": [],
7749
+ "attributes": [
7750
+ {
7751
+ "name": "mode",
7752
+ "description": "The mode determines the platform behaviors of the component.",
7753
+ "required": false,
7754
+ "value": {
7755
+ "kind": "expression",
7756
+ "type": "\"ios\" | \"md\""
7757
+ }
7758
+ },
7759
+ {
7760
+ "name": "theme",
7761
+ "description": "The theme determines the visual appearance of the component.",
7762
+ "required": false,
7763
+ "value": {
7764
+ "kind": "expression",
7765
+ "type": "\"ios\" | \"md\" | \"ionic\""
7766
+ }
7767
+ }
7768
+ ],
6363
7769
  "slots": [],
6364
7770
  "events": []
6365
7771
  },
@@ -6406,25 +7812,24 @@
6406
7812
  "name": "autocorrect",
6407
7813
  "description": "Set the input's autocorrect property.",
6408
7814
  "required": false,
6409
- "default": "false",
7815
+ "default": "'off'",
6410
7816
  "value": {
6411
7817
  "kind": "expression",
6412
- "type": "boolean"
7818
+ "type": "\"off\" | \"on\""
6413
7819
  }
6414
7820
  },
6415
7821
  {
6416
7822
  "name": "cancel-button-icon",
6417
- "description": "Set the cancel button icon. Only applies to `md` mode.\nDefaults to `arrow-back-sharp`.",
7823
+ "description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`.",
6418
7824
  "required": false,
6419
- "default": "config.get('backButtonIcon', arrowBackSharp) as string",
6420
7825
  "value": {
6421
7826
  "kind": "expression",
6422
- "type": "string"
7827
+ "type": "string | undefined"
6423
7828
  }
6424
7829
  },
6425
7830
  {
6426
7831
  "name": "cancel-button-text",
6427
- "description": "Set the cancel button text. Only applies to `ios` mode.",
7832
+ "description": "Set the cancel button text. Only available when the theme is `\"ios\"`.",
6428
7833
  "required": false,
6429
7834
  "default": "'Cancel'",
6430
7835
  "value": {
@@ -6434,7 +7839,7 @@
6434
7839
  },
6435
7840
  {
6436
7841
  "name": "clear-icon",
6437
- "description": "Set the clear icon. Defaults to `close-circle` for `ios` and `close-sharp` for `md`.",
7842
+ "description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme.",
6438
7843
  "required": false,
6439
7844
  "value": {
6440
7845
  "kind": "expression",
@@ -6507,7 +7912,7 @@
6507
7912
  },
6508
7913
  {
6509
7914
  "name": "mode",
6510
- "description": "The mode determines which platform styles to use.",
7915
+ "description": "The mode determines the platform behaviors of the component.",
6511
7916
  "required": false,
6512
7917
  "value": {
6513
7918
  "kind": "expression",
@@ -6536,11 +7941,20 @@
6536
7941
  },
6537
7942
  {
6538
7943
  "name": "search-icon",
6539
- "description": "The icon to use as the search icon. Defaults to `search-outline` in\n`ios` mode and `search-sharp` in `md` mode.",
7944
+ "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.",
6540
7945
  "required": false,
6541
7946
  "value": {
6542
7947
  "kind": "expression",
6543
- "type": "string | undefined"
7948
+ "type": "boolean | string | undefined"
7949
+ }
7950
+ },
7951
+ {
7952
+ "name": "shape",
7953
+ "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.",
7954
+ "required": false,
7955
+ "value": {
7956
+ "kind": "expression",
7957
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
6544
7958
  }
6545
7959
  },
6546
7960
  {
@@ -6563,6 +7977,15 @@
6563
7977
  "type": "\"always\" | \"focus\" | \"never\""
6564
7978
  }
6565
7979
  },
7980
+ {
7981
+ "name": "size",
7982
+ "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.",
7983
+ "required": false,
7984
+ "value": {
7985
+ "kind": "expression",
7986
+ "type": "\"large\" | \"medium\" | \"small\" | undefined"
7987
+ }
7988
+ },
6566
7989
  {
6567
7990
  "name": "spellcheck",
6568
7991
  "description": "If `true`, enable spellcheck on the input.",
@@ -6573,6 +7996,15 @@
6573
7996
  "type": "boolean"
6574
7997
  }
6575
7998
  },
7999
+ {
8000
+ "name": "theme",
8001
+ "description": "The theme determines the visual appearance of the component.",
8002
+ "required": false,
8003
+ "value": {
8004
+ "kind": "expression",
8005
+ "type": "\"ios\" | \"md\" | \"ionic\""
8006
+ }
8007
+ },
6576
8008
  {
6577
8009
  "name": "type",
6578
8010
  "description": "Set the type of the input.",
@@ -6688,7 +8120,7 @@
6688
8120
  },
6689
8121
  {
6690
8122
  "name": "mode",
6691
- "description": "The mode determines which platform styles to use.",
8123
+ "description": "The mode determines the platform behaviors of the component.",
6692
8124
  "required": false,
6693
8125
  "value": {
6694
8126
  "kind": "expression",
@@ -6725,6 +8157,15 @@
6725
8157
  "type": "boolean"
6726
8158
  }
6727
8159
  },
8160
+ {
8161
+ "name": "theme",
8162
+ "description": "The theme determines the visual appearance of the component.",
8163
+ "required": false,
8164
+ "value": {
8165
+ "kind": "expression",
8166
+ "type": "\"ios\" | \"md\" | \"ionic\""
8167
+ }
8168
+ },
6728
8169
  {
6729
8170
  "name": "value",
6730
8171
  "description": "the value of the segment.",
@@ -6789,13 +8230,22 @@
6789
8230
  },
6790
8231
  {
6791
8232
  "name": "mode",
6792
- "description": "The mode determines which platform styles to use.",
8233
+ "description": "The mode determines the platform behaviors of the component.",
6793
8234
  "required": false,
6794
8235
  "value": {
6795
8236
  "kind": "expression",
6796
8237
  "type": "\"ios\" | \"md\""
6797
8238
  }
6798
8239
  },
8240
+ {
8241
+ "name": "theme",
8242
+ "description": "The theme determines the visual appearance of the component.",
8243
+ "required": false,
8244
+ "value": {
8245
+ "kind": "expression",
8246
+ "type": "\"ios\" | \"md\" | \"ionic\""
8247
+ }
8248
+ },
6799
8249
  {
6800
8250
  "name": "type",
6801
8251
  "description": "The type of the button.",
@@ -6885,6 +8335,16 @@
6885
8335
  "symbol": "Select"
6886
8336
  },
6887
8337
  "attributes": [
8338
+ {
8339
+ "name": "cancel-icon",
8340
+ "description": "If `true`, the cancel button will display an icon instead of the `cancelText`.\nOnly applies when `interface` is set to `\"modal\"`. Has no effect on `\"action-sheet\"`,\n`\"alert\"`, or `\"popover\"` interfaces.\nWhen `cancelIcon` is `true`, the `cancelText` property is ignored for display\nbut is used as the accessible label for the icon button.",
8341
+ "required": false,
8342
+ "default": "false",
8343
+ "value": {
8344
+ "kind": "expression",
8345
+ "type": "boolean"
8346
+ }
8347
+ },
6888
8348
  {
6889
8349
  "name": "cancel-text",
6890
8350
  "description": "The text to display on the cancel button.",
@@ -6934,7 +8394,7 @@
6934
8394
  },
6935
8395
  {
6936
8396
  "name": "expanded-icon",
6937
- "description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in `md` mode will be disabled. If undefined, `toggleIcon`\nwill be used for when the select is both open and closed.",
8397
+ "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.",
6938
8398
  "required": false,
6939
8399
  "value": {
6940
8400
  "kind": "expression",
@@ -6943,7 +8403,7 @@
6943
8403
  },
6944
8404
  {
6945
8405
  "name": "fill",
6946
- "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 `md` mode.",
8406
+ "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.",
6947
8407
  "required": false,
6948
8408
  "value": {
6949
8409
  "kind": "expression",
@@ -7009,7 +8469,7 @@
7009
8469
  },
7010
8470
  {
7011
8471
  "name": "mode",
7012
- "description": "The mode determines which platform styles to use.",
8472
+ "description": "The mode determines the platform behaviors of the component.",
7013
8473
  "required": false,
7014
8474
  "value": {
7015
8475
  "kind": "expression",
@@ -7076,16 +8536,34 @@
7076
8536
  },
7077
8537
  {
7078
8538
  "name": "shape",
7079
- "description": "The shape of the select. If \"round\" it will have an increased border radius.",
8539
+ "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.",
8540
+ "required": false,
8541
+ "value": {
8542
+ "kind": "expression",
8543
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
8544
+ }
8545
+ },
8546
+ {
8547
+ "name": "size",
8548
+ "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.",
8549
+ "required": false,
8550
+ "value": {
8551
+ "kind": "expression",
8552
+ "type": "\"large\" | \"medium\" | \"small\" | undefined"
8553
+ }
8554
+ },
8555
+ {
8556
+ "name": "theme",
8557
+ "description": "The theme determines the visual appearance of the component.",
7080
8558
  "required": false,
7081
8559
  "value": {
7082
8560
  "kind": "expression",
7083
- "type": "\"round\" | undefined"
8561
+ "type": "\"ios\" | \"md\" | \"ionic\""
7084
8562
  }
7085
8563
  },
7086
8564
  {
7087
8565
  "name": "toggle-icon",
7088
- "description": "The toggle icon to use. Defaults to `chevronExpand` for `ios` mode,\nor `caretDownSharp` for `md` mode.",
8566
+ "description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes.",
7089
8567
  "required": false,
7090
8568
  "value": {
7091
8569
  "kind": "expression",
@@ -7178,6 +8656,16 @@
7178
8656
  "symbol": "SelectModal"
7179
8657
  },
7180
8658
  "attributes": [
8659
+ {
8660
+ "name": "cancel-icon",
8661
+ "description": "If `true`, the cancel button will display a close icon instead of the `cancelText`.\nWhen `cancelIcon` is `true`, `cancelText` is not displayed visually but is still used\nas the accessible label (`aria-label`) for the button.",
8662
+ "required": false,
8663
+ "default": "false",
8664
+ "value": {
8665
+ "kind": "expression",
8666
+ "type": "boolean"
8667
+ }
8668
+ },
7181
8669
  {
7182
8670
  "name": "cancel-text",
7183
8671
  "description": "The text to display on the cancel button.",
@@ -7203,40 +8691,85 @@
7203
8691
  "required": false,
7204
8692
  "value": {
7205
8693
  "kind": "expression",
7206
- "type": "boolean | undefined"
8694
+ "type": "boolean | undefined"
8695
+ }
8696
+ },
8697
+ {
8698
+ "name": "options",
8699
+ "description": "",
8700
+ "required": false,
8701
+ "default": "[]",
8702
+ "value": {
8703
+ "kind": "expression",
8704
+ "type": "SelectModalOption[]"
8705
+ }
8706
+ }
8707
+ ],
8708
+ "slots": [],
8709
+ "events": []
8710
+ },
8711
+ {
8712
+ "name": "IonSelectOption",
8713
+ "doc-url": "https://ionicframework.com/docs/api/select-option",
8714
+ "description": "",
8715
+ "source": {
8716
+ "module": "@ionic/core/src/components/select-option/select-option.d.ts",
8717
+ "symbol": "SelectOption"
8718
+ },
8719
+ "attributes": [
8720
+ {
8721
+ "name": "description",
8722
+ "description": "Text that is placed underneath the option text to provide additional details about the option.",
8723
+ "required": false,
8724
+ "value": {
8725
+ "kind": "expression",
8726
+ "type": "string | undefined"
8727
+ }
8728
+ },
8729
+ {
8730
+ "name": "disabled",
8731
+ "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.",
8732
+ "required": false,
8733
+ "default": "false",
8734
+ "value": {
8735
+ "kind": "expression",
8736
+ "type": "boolean"
8737
+ }
8738
+ },
8739
+ {
8740
+ "name": "justify",
8741
+ "description": "How to pack the label and the option's selection control within a line.\n`\"start\"`: The label and radio will appear on the left in LTR and\non the right in RTL.\n`\"end\"`: The label and radio will appear on the right in LTR and\non the left in RTL.\n`\"space-between\"`: The label and radio will appear on opposite\nends of the line with space between the two elements.\n\nApplies to the `alert`, `popover`, and `modal` interfaces, but has no\nvisible effect on radio options in `popover` or `modal` on the `md`\nand `ionic` themes (the radio control is hidden there).\n\nWhen unset, the interface picks a default based on theme and control\ntype.",
8742
+ "required": false,
8743
+ "value": {
8744
+ "kind": "expression",
8745
+ "type": "\"end\" | \"space-between\" | \"start\" | undefined"
8746
+ }
8747
+ },
8748
+ {
8749
+ "name": "label-placement",
8750
+ "description": "Where the label is placed relative to the option's selection control\n(radio circle or checkbox box) when the option is rendered in an\n`alert`, `popover`, or `modal` interface.\n`\"start\"`: The label will appear to the left of the radio in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the radio in LTR and to the left in RTL.\n\nApplies to the `alert`, `popover`, and `modal` interfaces, but has no\nvisible effect on radio options in `popover` or `modal` on the `md`\nand `ionic` themes (the radio control is hidden there).\n\nWhen unset, the interface picks a default based on theme and control\ntype.",
8751
+ "required": false,
8752
+ "value": {
8753
+ "kind": "expression",
8754
+ "type": "\"end\" | \"start\" | undefined"
7207
8755
  }
7208
8756
  },
7209
8757
  {
7210
- "name": "options",
7211
- "description": "",
8758
+ "name": "mode",
8759
+ "description": "The mode determines the platform behaviors of the component.",
7212
8760
  "required": false,
7213
- "default": "[]",
7214
8761
  "value": {
7215
8762
  "kind": "expression",
7216
- "type": "SelectModalOption[]"
8763
+ "type": "\"ios\" | \"md\""
7217
8764
  }
7218
- }
7219
- ],
7220
- "slots": [],
7221
- "events": []
7222
- },
7223
- {
7224
- "name": "IonSelectOption",
7225
- "doc-url": "https://ionicframework.com/docs/api/select-option",
7226
- "description": "",
7227
- "source": {
7228
- "module": "@ionic/core/src/components/select-option/select-option.d.ts",
7229
- "symbol": "SelectOption"
7230
- },
7231
- "attributes": [
8765
+ },
7232
8766
  {
7233
- "name": "disabled",
7234
- "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.",
8767
+ "name": "theme",
8768
+ "description": "The theme determines the visual appearance of the component.",
7235
8769
  "required": false,
7236
- "default": "false",
7237
8770
  "value": {
7238
8771
  "kind": "expression",
7239
- "type": "boolean"
8772
+ "type": "\"ios\" | \"md\" | \"ionic\""
7240
8773
  }
7241
8774
  },
7242
8775
  {
@@ -7249,7 +8782,20 @@
7249
8782
  }
7250
8783
  }
7251
8784
  ],
7252
- "slots": [],
8785
+ "slots": [
8786
+ {
8787
+ "name": "default",
8788
+ "description": "Content is placed between the named slots if provided without a slot."
8789
+ },
8790
+ {
8791
+ "name": "end",
8792
+ "description": "Content is placed to the right of the select option text in LTR, and to the left in RTL."
8793
+ },
8794
+ {
8795
+ "name": "start",
8796
+ "description": "Content is placed to the left of the select option text in LTR, and to the right in RTL."
8797
+ }
8798
+ ],
7253
8799
  "events": []
7254
8800
  },
7255
8801
  {
@@ -7270,6 +8816,24 @@
7270
8816
  "kind": "expression",
7271
8817
  "type": "boolean"
7272
8818
  }
8819
+ },
8820
+ {
8821
+ "name": "mode",
8822
+ "description": "The mode determines the platform behaviors of the component.",
8823
+ "required": false,
8824
+ "value": {
8825
+ "kind": "expression",
8826
+ "type": "\"ios\" | \"md\""
8827
+ }
8828
+ },
8829
+ {
8830
+ "name": "theme",
8831
+ "description": "The theme determines the visual appearance of the component.",
8832
+ "required": false,
8833
+ "value": {
8834
+ "kind": "expression",
8835
+ "type": "\"ios\" | \"md\" | \"ionic\""
8836
+ }
7273
8837
  }
7274
8838
  ],
7275
8839
  "slots": [],
@@ -7302,6 +8866,15 @@
7302
8866
  "type": "number | undefined"
7303
8867
  }
7304
8868
  },
8869
+ {
8870
+ "name": "mode",
8871
+ "description": "The mode determines the platform behaviors of the component.",
8872
+ "required": false,
8873
+ "value": {
8874
+ "kind": "expression",
8875
+ "type": "\"ios\" | \"md\""
8876
+ }
8877
+ },
7305
8878
  {
7306
8879
  "name": "name",
7307
8880
  "description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
@@ -7320,6 +8893,24 @@
7320
8893
  "kind": "expression",
7321
8894
  "type": "boolean"
7322
8895
  }
8896
+ },
8897
+ {
8898
+ "name": "size",
8899
+ "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.",
8900
+ "required": false,
8901
+ "value": {
8902
+ "kind": "expression",
8903
+ "type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined"
8904
+ }
8905
+ },
8906
+ {
8907
+ "name": "theme",
8908
+ "description": "The theme determines the visual appearance of the component.",
8909
+ "required": false,
8910
+ "value": {
8911
+ "kind": "expression",
8912
+ "type": "\"ios\" | \"md\" | \"ionic\""
8913
+ }
7323
8914
  }
7324
8915
  ],
7325
8916
  "slots": [],
@@ -7353,11 +8944,29 @@
7353
8944
  "type": "boolean"
7354
8945
  }
7355
8946
  },
8947
+ {
8948
+ "name": "mode",
8949
+ "description": "The mode determines the platform behaviors of the component.",
8950
+ "required": false,
8951
+ "value": {
8952
+ "kind": "expression",
8953
+ "type": "\"ios\" | \"md\""
8954
+ }
8955
+ },
8956
+ {
8957
+ "name": "theme",
8958
+ "description": "The theme determines the visual appearance of the component.",
8959
+ "required": false,
8960
+ "value": {
8961
+ "kind": "expression",
8962
+ "type": "\"ios\" | \"md\" | \"ionic\""
8963
+ }
8964
+ },
7356
8965
  {
7357
8966
  "name": "when",
7358
8967
  "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.",
7359
8968
  "required": false,
7360
- "default": "'(min-width: 992px)'",
8969
+ "default": "QUERY['lg']",
7361
8970
  "value": {
7362
8971
  "kind": "expression",
7363
8972
  "type": "boolean | string"
@@ -7396,6 +9005,15 @@
7396
9005
  "type": "Function | HTMLElement | null | string | undefined"
7397
9006
  }
7398
9007
  },
9008
+ {
9009
+ "name": "mode",
9010
+ "description": "The mode determines the platform behaviors of the component.",
9011
+ "required": false,
9012
+ "value": {
9013
+ "kind": "expression",
9014
+ "type": "\"ios\" | \"md\""
9015
+ }
9016
+ },
7399
9017
  {
7400
9018
  "name": "tab",
7401
9019
  "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.",
@@ -7404,6 +9022,15 @@
7404
9022
  "kind": "expression",
7405
9023
  "type": "string"
7406
9024
  }
9025
+ },
9026
+ {
9027
+ "name": "theme",
9028
+ "description": "The theme determines the visual appearance of the component.",
9029
+ "required": false,
9030
+ "value": {
9031
+ "kind": "expression",
9032
+ "type": "\"ios\" | \"md\" | \"ionic\""
9033
+ }
7407
9034
  }
7408
9035
  ],
7409
9036
  "slots": [],
@@ -7427,9 +9054,29 @@
7427
9054
  "type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
7428
9055
  }
7429
9056
  },
9057
+ {
9058
+ "name": "expand",
9059
+ "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\"`.",
9060
+ "required": false,
9061
+ "default": "'full'",
9062
+ "value": {
9063
+ "kind": "expression",
9064
+ "type": "\"compact\" | \"full\""
9065
+ }
9066
+ },
9067
+ {
9068
+ "name": "hide-on-scroll",
9069
+ "description": "If `true`, the tab bar will be hidden when the user scrolls down\nand shown when the user scrolls up.\nOnly applies when the theme is `\"ionic\"` and `expand` is `\"compact\"`.",
9070
+ "required": false,
9071
+ "default": "false",
9072
+ "value": {
9073
+ "kind": "expression",
9074
+ "type": "boolean"
9075
+ }
9076
+ },
7430
9077
  {
7431
9078
  "name": "mode",
7432
- "description": "The mode determines which platform styles to use.",
9079
+ "description": "The mode determines the platform behaviors of the component.",
7433
9080
  "required": false,
7434
9081
  "value": {
7435
9082
  "kind": "expression",
@@ -7445,9 +9092,27 @@
7445
9092
  "type": "string | undefined"
7446
9093
  }
7447
9094
  },
9095
+ {
9096
+ "name": "shape",
9097
+ "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.",
9098
+ "required": false,
9099
+ "value": {
9100
+ "kind": "expression",
9101
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
9102
+ }
9103
+ },
9104
+ {
9105
+ "name": "theme",
9106
+ "description": "The theme determines the visual appearance of the component.",
9107
+ "required": false,
9108
+ "value": {
9109
+ "kind": "expression",
9110
+ "type": "\"ios\" | \"md\" | \"ionic\""
9111
+ }
9112
+ },
7448
9113
  {
7449
9114
  "name": "translucent",
7450
- "description": "If `true`, the tab bar will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
9115
+ "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).",
7451
9116
  "required": false,
7452
9117
  "default": "false",
7453
9118
  "value": {
@@ -7507,7 +9172,7 @@
7507
9172
  },
7508
9173
  {
7509
9174
  "name": "mode",
7510
- "description": "The mode determines which platform styles to use.",
9175
+ "description": "The mode determines the platform behaviors of the component.",
7511
9176
  "required": false,
7512
9177
  "value": {
7513
9178
  "kind": "expression",
@@ -7533,6 +9198,15 @@
7533
9198
  "type": "boolean"
7534
9199
  }
7535
9200
  },
9201
+ {
9202
+ "name": "shape",
9203
+ "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.",
9204
+ "required": false,
9205
+ "value": {
9206
+ "kind": "expression",
9207
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
9208
+ }
9209
+ },
7536
9210
  {
7537
9211
  "name": "tab",
7538
9212
  "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.",
@@ -7550,6 +9224,15 @@
7550
9224
  "kind": "expression",
7551
9225
  "type": "string | undefined"
7552
9226
  }
9227
+ },
9228
+ {
9229
+ "name": "theme",
9230
+ "description": "The theme determines the visual appearance of the component.",
9231
+ "required": false,
9232
+ "value": {
9233
+ "kind": "expression",
9234
+ "type": "\"ios\" | \"md\" | \"ionic\""
9235
+ }
7553
9236
  }
7554
9237
  ],
7555
9238
  "slots": [],
@@ -7563,7 +9246,26 @@
7563
9246
  "module": "@ionic/core/src/components/tabs/tabs.d.ts",
7564
9247
  "symbol": "Tabs"
7565
9248
  },
7566
- "attributes": [],
9249
+ "attributes": [
9250
+ {
9251
+ "name": "mode",
9252
+ "description": "The mode determines the platform behaviors of the component.",
9253
+ "required": false,
9254
+ "value": {
9255
+ "kind": "expression",
9256
+ "type": "\"ios\" | \"md\""
9257
+ }
9258
+ },
9259
+ {
9260
+ "name": "theme",
9261
+ "description": "The theme determines the visual appearance of the component.",
9262
+ "required": false,
9263
+ "value": {
9264
+ "kind": "expression",
9265
+ "type": "\"ios\" | \"md\" | \"ionic\""
9266
+ }
9267
+ }
9268
+ ],
7567
9269
  "slots": [
7568
9270
  {
7569
9271
  "name": "default",
@@ -7621,12 +9323,21 @@
7621
9323
  },
7622
9324
  {
7623
9325
  "name": "mode",
7624
- "description": "The mode determines which platform styles to use.",
9326
+ "description": "The mode determines the platform behaviors of the component.",
7625
9327
  "required": false,
7626
9328
  "value": {
7627
9329
  "kind": "expression",
7628
9330
  "type": "\"ios\" | \"md\""
7629
9331
  }
9332
+ },
9333
+ {
9334
+ "name": "theme",
9335
+ "description": "The theme determines the visual appearance of the component.",
9336
+ "required": false,
9337
+ "value": {
9338
+ "kind": "expression",
9339
+ "type": "\"ios\" | \"md\" | \"ionic\""
9340
+ }
7630
9341
  }
7631
9342
  ],
7632
9343
  "slots": [],
@@ -7757,7 +9468,7 @@
7757
9468
  },
7758
9469
  {
7759
9470
  "name": "fill",
7760
- "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 `md` mode.",
9471
+ "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\"`.",
7761
9472
  "required": false,
7762
9473
  "value": {
7763
9474
  "kind": "expression",
@@ -7821,7 +9532,7 @@
7821
9532
  },
7822
9533
  {
7823
9534
  "name": "mode",
7824
- "description": "The mode determines which platform styles to use.",
9535
+ "description": "The mode determines the platform behaviors of the component.",
7825
9536
  "required": false,
7826
9537
  "value": {
7827
9538
  "kind": "expression",
@@ -7878,11 +9589,21 @@
7878
9589
  },
7879
9590
  {
7880
9591
  "name": "shape",
7881
- "description": "The shape of the textarea. If \"round\" it will have an increased border radius.",
9592
+ "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.",
9593
+ "required": false,
9594
+ "value": {
9595
+ "kind": "expression",
9596
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
9597
+ }
9598
+ },
9599
+ {
9600
+ "name": "size",
9601
+ "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.",
7882
9602
  "required": false,
9603
+ "default": "'medium'",
7883
9604
  "value": {
7884
9605
  "kind": "expression",
7885
- "type": "\"round\" | undefined"
9606
+ "type": "\"large\" | \"medium\" | \"small\" | undefined"
7886
9607
  }
7887
9608
  },
7888
9609
  {
@@ -7895,6 +9616,15 @@
7895
9616
  "type": "boolean"
7896
9617
  }
7897
9618
  },
9619
+ {
9620
+ "name": "theme",
9621
+ "description": "The theme determines the visual appearance of the component.",
9622
+ "required": false,
9623
+ "value": {
9624
+ "kind": "expression",
9625
+ "type": "\"ios\" | \"md\" | \"ionic\""
9626
+ }
9627
+ },
7898
9628
  {
7899
9629
  "name": "value",
7900
9630
  "description": "The value of the textarea.",
@@ -7980,7 +9710,26 @@
7980
9710
  "module": "@ionic/core/src/components/thumbnail/thumbnail.d.ts",
7981
9711
  "symbol": "Thumbnail"
7982
9712
  },
7983
- "attributes": [],
9713
+ "attributes": [
9714
+ {
9715
+ "name": "mode",
9716
+ "description": "The mode determines the platform behaviors of the component.",
9717
+ "required": false,
9718
+ "value": {
9719
+ "kind": "expression",
9720
+ "type": "\"ios\" | \"md\""
9721
+ }
9722
+ },
9723
+ {
9724
+ "name": "theme",
9725
+ "description": "The theme determines the visual appearance of the component.",
9726
+ "required": false,
9727
+ "value": {
9728
+ "kind": "expression",
9729
+ "type": "\"ios\" | \"md\" | \"ionic\""
9730
+ }
9731
+ }
9732
+ ],
7984
9733
  "slots": [],
7985
9734
  "events": []
7986
9735
  },
@@ -8002,6 +9751,15 @@
8002
9751
  "type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
8003
9752
  }
8004
9753
  },
9754
+ {
9755
+ "name": "mode",
9756
+ "description": "The mode determines the platform behaviors of the component.",
9757
+ "required": false,
9758
+ "value": {
9759
+ "kind": "expression",
9760
+ "type": "\"ios\" | \"md\""
9761
+ }
9762
+ },
8005
9763
  {
8006
9764
  "name": "size",
8007
9765
  "description": "The size of the toolbar title.",
@@ -8010,6 +9768,15 @@
8010
9768
  "kind": "expression",
8011
9769
  "type": "\"large\" | \"small\" | undefined"
8012
9770
  }
9771
+ },
9772
+ {
9773
+ "name": "theme",
9774
+ "description": "The theme determines the visual appearance of the component.",
9775
+ "required": false,
9776
+ "value": {
9777
+ "kind": "expression",
9778
+ "type": "\"ios\" | \"md\" | \"ionic\""
9779
+ }
8013
9780
  }
8014
9781
  ],
8015
9782
  "slots": [],
@@ -8098,6 +9865,16 @@
8098
9865
  "type": "undefined | { [key: string]: any; }"
8099
9866
  }
8100
9867
  },
9868
+ {
9869
+ "name": "hue",
9870
+ "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.",
9871
+ "required": false,
9872
+ "default": "'subtle'",
9873
+ "value": {
9874
+ "kind": "expression",
9875
+ "type": "\"bold\" | \"subtle\" | undefined"
9876
+ }
9877
+ },
8101
9878
  {
8102
9879
  "name": "icon",
8103
9880
  "description": "The name of the icon to display, or the path to a valid SVG file. See `ion-icon`.\nhttps://ionic.io/ionicons",
@@ -8157,7 +9934,7 @@
8157
9934
  },
8158
9935
  {
8159
9936
  "name": "mode",
8160
- "description": "The mode determines which platform styles to use.",
9937
+ "description": "The mode determines the platform behaviors of the component.",
8161
9938
  "required": false,
8162
9939
  "value": {
8163
9940
  "kind": "expression",
@@ -8183,6 +9960,15 @@
8183
9960
  "type": "HTMLElement | string | undefined"
8184
9961
  }
8185
9962
  },
9963
+ {
9964
+ "name": "shape",
9965
+ "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.",
9966
+ "required": false,
9967
+ "value": {
9968
+ "kind": "expression",
9969
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
9970
+ }
9971
+ },
8186
9972
  {
8187
9973
  "name": "swipe-gesture",
8188
9974
  "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.",
@@ -8192,9 +9978,18 @@
8192
9978
  "type": "\"vertical\" | undefined"
8193
9979
  }
8194
9980
  },
9981
+ {
9982
+ "name": "theme",
9983
+ "description": "The theme determines the visual appearance of the component.",
9984
+ "required": false,
9985
+ "value": {
9986
+ "kind": "expression",
9987
+ "type": "\"ios\" | \"md\" | \"ionic\""
9988
+ }
9989
+ },
8195
9990
  {
8196
9991
  "name": "translucent",
8197
- "description": "If `true`, the toast will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).",
9992
+ "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).",
8198
9993
  "required": false,
8199
9994
  "default": "false",
8200
9995
  "value": {
@@ -8392,7 +10187,7 @@
8392
10187
  },
8393
10188
  {
8394
10189
  "name": "mode",
8395
- "description": "The mode determines which platform styles to use.",
10190
+ "description": "The mode determines the platform behaviors of the component.",
8396
10191
  "required": false,
8397
10192
  "value": {
8398
10193
  "kind": "expression",
@@ -8419,6 +10214,15 @@
8419
10214
  "type": "boolean"
8420
10215
  }
8421
10216
  },
10217
+ {
10218
+ "name": "theme",
10219
+ "description": "The theme determines the visual appearance of the component.",
10220
+ "required": false,
10221
+ "value": {
10222
+ "kind": "expression",
10223
+ "type": "\"ios\" | \"md\" | \"ionic\""
10224
+ }
10225
+ },
8422
10226
  {
8423
10227
  "name": "value",
8424
10228
  "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>`.",
@@ -8489,12 +10293,30 @@
8489
10293
  },
8490
10294
  {
8491
10295
  "name": "mode",
8492
- "description": "The mode determines which platform styles to use.",
10296
+ "description": "The mode determines the platform behaviors of the component.",
8493
10297
  "required": false,
8494
10298
  "value": {
8495
10299
  "kind": "expression",
8496
10300
  "type": "\"ios\" | \"md\""
8497
10301
  }
10302
+ },
10303
+ {
10304
+ "name": "theme",
10305
+ "description": "The theme determines the visual appearance of the component.",
10306
+ "required": false,
10307
+ "value": {
10308
+ "kind": "expression",
10309
+ "type": "\"ios\" | \"md\" | \"ionic\""
10310
+ }
10311
+ },
10312
+ {
10313
+ "name": "title-placement",
10314
+ "description": "Where to place the title relative to the other toolbar content.\n`\"start\"`: The title will appear to the left of the toolbar content in LTR and to the right in RTL.\n`\"center\"`: The title will appear in the center of the toolbar.\n`\"end\"`: The title will appear to the right of the toolbar content in LTR and to the left in RTL.\n\nOnly applies in the `ionic` theme.",
10315
+ "required": false,
10316
+ "value": {
10317
+ "kind": "expression",
10318
+ "type": "\"center\" | \"end\" | \"start\" | undefined"
10319
+ }
8498
10320
  }
8499
10321
  ],
8500
10322
  "slots": [
@@ -8508,11 +10330,11 @@
8508
10330
  },
8509
10331
  {
8510
10332
  "name": "primary",
8511
- "description": "Content is placed to the right of the toolbar text in `ios` mode, and to the far right in `md` mode."
10333
+ "description": "Content is placed to the right of the toolbar text in the `\"ios\"` theme, and to the far right in the `\"md\"` theme."
8512
10334
  },
8513
10335
  {
8514
10336
  "name": "secondary",
8515
- "description": "Content is placed to the left of the toolbar text in `ios` mode, and directly to the right in `md` mode."
10337
+ "description": "Content is placed to the left of the toolbar text in the `\"ios\"` theme, and directly to the right in the `\"md\"` theme."
8516
10338
  },
8517
10339
  {
8518
10340
  "name": "start",