@ionic/vue 8.8.18 → 8.8.19-dev.11786610762.137bbb21

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 (52) 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 +217 -162
  47. package/dist/index.js.map +1 -1
  48. package/dist/types/proxies.d.ts +3 -0
  49. package/dist/vetur/attributes.json +1668 -104
  50. package/dist/vetur/tags.json +252 -45
  51. package/dist/web-types.json +1806 -159
  52. package/package.json +2 -2
@@ -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.18",
5
+ "version": "8.8.19-dev.11786610762.137bbb21",
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
  {
@@ -2650,7 +3136,7 @@
2650
3136
  },
2651
3137
  {
2652
3138
  "name": "mode",
2653
- "description": "The mode determines which platform styles to use.",
3139
+ "description": "The mode determines the platform behaviors of the component.",
2654
3140
  "required": false,
2655
3141
  "value": {
2656
3142
  "kind": "expression",
@@ -2713,9 +3199,18 @@
2713
3199
  "type": "string | undefined"
2714
3200
  }
2715
3201
  },
3202
+ {
3203
+ "name": "theme",
3204
+ "description": "The theme determines the visual appearance of the component.",
3205
+ "required": false,
3206
+ "value": {
3207
+ "kind": "expression",
3208
+ "type": "\"ios\" | \"md\" | \"ionic\""
3209
+ }
3210
+ },
2716
3211
  {
2717
3212
  "name": "translucent",
2718
- "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).",
3213
+ "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).",
2719
3214
  "required": false,
2720
3215
  "default": "false",
2721
3216
  "value": {
@@ -2777,6 +3272,15 @@
2777
3272
  "type": "boolean"
2778
3273
  }
2779
3274
  },
3275
+ {
3276
+ "name": "mode",
3277
+ "description": "The mode determines the platform behaviors of the component.",
3278
+ "required": false,
3279
+ "value": {
3280
+ "kind": "expression",
3281
+ "type": "\"ios\" | \"md\""
3282
+ }
3283
+ },
2780
3284
  {
2781
3285
  "name": "side",
2782
3286
  "description": "The side the fab list will show on relative to the main fab button.",
@@ -2786,6 +3290,15 @@
2786
3290
  "kind": "expression",
2787
3291
  "type": "\"bottom\" | \"end\" | \"start\" | \"top\""
2788
3292
  }
3293
+ },
3294
+ {
3295
+ "name": "theme",
3296
+ "description": "The theme determines the visual appearance of the component.",
3297
+ "required": false,
3298
+ "value": {
3299
+ "kind": "expression",
3300
+ "type": "\"ios\" | \"md\" | \"ionic\""
3301
+ }
2789
3302
  }
2790
3303
  ],
2791
3304
  "slots": [],
@@ -2802,7 +3315,7 @@
2802
3315
  "attributes": [
2803
3316
  {
2804
3317
  "name": "collapse",
2805
- "description": "Describes the scroll effect that will be applied to the footer.\nOnly applies in iOS mode.",
3318
+ "description": "Describes the scroll effect that will be applied to the footer.\nOnly applies when the theme is `\"ios\"`.",
2806
3319
  "required": false,
2807
3320
  "value": {
2808
3321
  "kind": "expression",
@@ -2811,16 +3324,34 @@
2811
3324
  },
2812
3325
  {
2813
3326
  "name": "mode",
2814
- "description": "The mode determines which platform styles to use.",
3327
+ "description": "The mode determines the platform behaviors of the component.",
2815
3328
  "required": false,
2816
3329
  "value": {
2817
3330
  "kind": "expression",
2818
3331
  "type": "\"ios\" | \"md\""
2819
3332
  }
2820
3333
  },
3334
+ {
3335
+ "name": "scroll-effect",
3336
+ "description": "Describes the scroll effect that will be applied to the footer.\n`\"hide\"` slides the footer out of view when scrolling down and back in\nwhen scrolling up.\n`\"fade\"` fades the toolbar background on scroll.",
3337
+ "required": false,
3338
+ "value": {
3339
+ "kind": "expression",
3340
+ "type": "\"fade\" | \"hide\" | undefined"
3341
+ }
3342
+ },
3343
+ {
3344
+ "name": "theme",
3345
+ "description": "The theme determines the visual appearance of the component.",
3346
+ "required": false,
3347
+ "value": {
3348
+ "kind": "expression",
3349
+ "type": "\"ios\" | \"md\" | \"ionic\""
3350
+ }
3351
+ },
2821
3352
  {
2822
3353
  "name": "translucent",
2823
- "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.",
3354
+ "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.",
2824
3355
  "required": false,
2825
3356
  "default": "false",
2826
3357
  "value": {
@@ -2832,6 +3363,117 @@
2832
3363
  "slots": [],
2833
3364
  "events": []
2834
3365
  },
3366
+ {
3367
+ "name": "IonGallery",
3368
+ "doc-url": "https://ionicframework.com/docs/api/gallery",
3369
+ "description": "",
3370
+ "source": {
3371
+ "module": "@ionic/core/src/components/gallery/gallery.d.ts",
3372
+ "symbol": "Gallery"
3373
+ },
3374
+ "attributes": [
3375
+ {
3376
+ "name": "columns",
3377
+ "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 }`).",
3378
+ "required": false,
3379
+ "default": "{\n xs: 2,\n sm: 3,\n md: 4,\n lg: 6,\n xl: 8,\n xxl: 10,\n}",
3380
+ "value": {
3381
+ "kind": "expression",
3382
+ "type": "GalleryBreakpoints<string | number> | number | string"
3383
+ }
3384
+ },
3385
+ {
3386
+ "name": "gap",
3387
+ "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.",
3388
+ "required": false,
3389
+ "default": "'16px'",
3390
+ "value": {
3391
+ "kind": "expression",
3392
+ "type": "GalleryBreakpoints<string | number> | number | string"
3393
+ }
3394
+ },
3395
+ {
3396
+ "name": "layout",
3397
+ "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.",
3398
+ "required": false,
3399
+ "default": "'uniform'",
3400
+ "value": {
3401
+ "kind": "expression",
3402
+ "type": "\"masonry\" | \"uniform\""
3403
+ }
3404
+ },
3405
+ {
3406
+ "name": "mode",
3407
+ "description": "The mode determines the platform behaviors of the component.",
3408
+ "required": false,
3409
+ "value": {
3410
+ "kind": "expression",
3411
+ "type": "\"ios\" | \"md\""
3412
+ }
3413
+ },
3414
+ {
3415
+ "name": "order",
3416
+ "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.",
3417
+ "required": false,
3418
+ "value": {
3419
+ "kind": "expression",
3420
+ "type": "\"best-fit\" | \"sequential\" | undefined"
3421
+ }
3422
+ },
3423
+ {
3424
+ "name": "theme",
3425
+ "description": "The theme determines the visual appearance of the component.",
3426
+ "required": false,
3427
+ "value": {
3428
+ "kind": "expression",
3429
+ "type": "\"ios\" | \"md\" | \"ionic\""
3430
+ }
3431
+ }
3432
+ ],
3433
+ "slots": [
3434
+ {
3435
+ "name": "default",
3436
+ "description": "One or more `ion-gallery-item` components, placed in a responsive\ngallery layout."
3437
+ }
3438
+ ],
3439
+ "events": []
3440
+ },
3441
+ {
3442
+ "name": "IonGalleryItem",
3443
+ "doc-url": "https://ionicframework.com/docs/api/gallery-item",
3444
+ "description": "",
3445
+ "source": {
3446
+ "module": "@ionic/core/src/components/gallery-item/gallery-item.d.ts",
3447
+ "symbol": "GalleryItem"
3448
+ },
3449
+ "attributes": [
3450
+ {
3451
+ "name": "mode",
3452
+ "description": "The mode determines the platform behaviors of the component.",
3453
+ "required": false,
3454
+ "value": {
3455
+ "kind": "expression",
3456
+ "type": "\"ios\" | \"md\""
3457
+ }
3458
+ },
3459
+ {
3460
+ "name": "theme",
3461
+ "description": "The theme determines the visual appearance of the component.",
3462
+ "required": false,
3463
+ "value": {
3464
+ "kind": "expression",
3465
+ "type": "\"ios\" | \"md\" | \"ionic\""
3466
+ }
3467
+ }
3468
+ ],
3469
+ "slots": [
3470
+ {
3471
+ "name": "default",
3472
+ "description": "The content placed inside of the gallery item. This is typically an\n`img`, but can be any element (e.g. a `figure` wrapping an image and caption)."
3473
+ }
3474
+ ],
3475
+ "events": []
3476
+ },
2835
3477
  {
2836
3478
  "name": "IonGrid",
2837
3479
  "doc-url": "https://ionicframework.com/docs/api/grid",
@@ -2850,6 +3492,24 @@
2850
3492
  "kind": "expression",
2851
3493
  "type": "boolean"
2852
3494
  }
3495
+ },
3496
+ {
3497
+ "name": "mode",
3498
+ "description": "The mode determines the platform behaviors of the component.",
3499
+ "required": false,
3500
+ "value": {
3501
+ "kind": "expression",
3502
+ "type": "\"ios\" | \"md\""
3503
+ }
3504
+ },
3505
+ {
3506
+ "name": "theme",
3507
+ "description": "The theme determines the visual appearance of the component.",
3508
+ "required": false,
3509
+ "value": {
3510
+ "kind": "expression",
3511
+ "type": "\"ios\" | \"md\" | \"ionic\""
3512
+ }
2853
3513
  }
2854
3514
  ],
2855
3515
  "slots": [],
@@ -2866,25 +3526,53 @@
2866
3526
  "attributes": [
2867
3527
  {
2868
3528
  "name": "collapse",
2869
- "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)",
3529
+ "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)",
2870
3530
  "required": false,
2871
3531
  "value": {
2872
3532
  "kind": "expression",
2873
3533
  "type": "\"condense\" | \"fade\" | undefined"
2874
3534
  }
2875
3535
  },
3536
+ {
3537
+ "name": "divider",
3538
+ "description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes",
3539
+ "required": false,
3540
+ "default": "false",
3541
+ "value": {
3542
+ "kind": "expression",
3543
+ "type": "boolean"
3544
+ }
3545
+ },
2876
3546
  {
2877
3547
  "name": "mode",
2878
- "description": "The mode determines which platform styles to use.",
3548
+ "description": "The mode determines the platform behaviors of the component.",
2879
3549
  "required": false,
2880
3550
  "value": {
2881
3551
  "kind": "expression",
2882
3552
  "type": "\"ios\" | \"md\""
2883
3553
  }
2884
3554
  },
3555
+ {
3556
+ "name": "scroll-effect",
3557
+ "description": "Describes the scroll effect that will be applied to the header.\n`\"hide\"` slides the header out of view when scrolling down and back in\nwhen scrolling up.\n`\"condense\"` collapses the large title into the main toolbar on scroll.\n`\"fade\"` fades the toolbar background on scroll.",
3558
+ "required": false,
3559
+ "value": {
3560
+ "kind": "expression",
3561
+ "type": "\"condense\" | \"fade\" | \"hide\" | undefined"
3562
+ }
3563
+ },
3564
+ {
3565
+ "name": "theme",
3566
+ "description": "The theme determines the visual appearance of the component.",
3567
+ "required": false,
3568
+ "value": {
3569
+ "kind": "expression",
3570
+ "type": "\"ios\" | \"md\" | \"ionic\""
3571
+ }
3572
+ },
2885
3573
  {
2886
3574
  "name": "translucent",
2887
- "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.",
3575
+ "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.",
2888
3576
  "required": false,
2889
3577
  "default": "false",
2890
3578
  "value": {
@@ -2914,6 +3602,15 @@
2914
3602
  "type": "string | undefined"
2915
3603
  }
2916
3604
  },
3605
+ {
3606
+ "name": "mode",
3607
+ "description": "The mode determines the platform behaviors of the component.",
3608
+ "required": false,
3609
+ "value": {
3610
+ "kind": "expression",
3611
+ "type": "\"ios\" | \"md\""
3612
+ }
3613
+ },
2917
3614
  {
2918
3615
  "name": "src",
2919
3616
  "description": "The image URL. This attribute is mandatory for the `<img>` element.",
@@ -2922,6 +3619,15 @@
2922
3619
  "kind": "expression",
2923
3620
  "type": "string | undefined"
2924
3621
  }
3622
+ },
3623
+ {
3624
+ "name": "theme",
3625
+ "description": "The theme determines the visual appearance of the component.",
3626
+ "required": false,
3627
+ "value": {
3628
+ "kind": "expression",
3629
+ "type": "\"ios\" | \"md\" | \"ionic\""
3630
+ }
2925
3631
  }
2926
3632
  ],
2927
3633
  "slots": [],
@@ -2977,6 +3683,15 @@
2977
3683
  "type": "boolean"
2978
3684
  }
2979
3685
  },
3686
+ {
3687
+ "name": "mode",
3688
+ "description": "The mode determines the platform behaviors of the component.",
3689
+ "required": false,
3690
+ "value": {
3691
+ "kind": "expression",
3692
+ "type": "\"ios\" | \"md\""
3693
+ }
3694
+ },
2980
3695
  {
2981
3696
  "name": "position",
2982
3697
  "description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
@@ -2987,6 +3702,25 @@
2987
3702
  "type": "\"bottom\" | \"top\""
2988
3703
  }
2989
3704
  },
3705
+ {
3706
+ "name": "preserve-rerender-scroll-position",
3707
+ "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.",
3708
+ "required": false,
3709
+ "default": "false",
3710
+ "value": {
3711
+ "kind": "expression",
3712
+ "type": "boolean"
3713
+ }
3714
+ },
3715
+ {
3716
+ "name": "theme",
3717
+ "description": "The theme determines the visual appearance of the component.",
3718
+ "required": false,
3719
+ "value": {
3720
+ "kind": "expression",
3721
+ "type": "\"ios\" | \"md\" | \"ionic\""
3722
+ }
3723
+ },
2990
3724
  {
2991
3725
  "name": "threshold",
2992
3726
  "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.",
@@ -3038,6 +3772,24 @@
3038
3772
  "kind": "expression",
3039
3773
  "type": "IonicSafeString | string | undefined"
3040
3774
  }
3775
+ },
3776
+ {
3777
+ "name": "mode",
3778
+ "description": "The mode determines the platform behaviors of the component.",
3779
+ "required": false,
3780
+ "value": {
3781
+ "kind": "expression",
3782
+ "type": "\"ios\" | \"md\""
3783
+ }
3784
+ },
3785
+ {
3786
+ "name": "theme",
3787
+ "description": "The theme determines the visual appearance of the component.",
3788
+ "required": false,
3789
+ "value": {
3790
+ "kind": "expression",
3791
+ "type": "\"ios\" | \"md\" | \"ionic\""
3792
+ }
3041
3793
  }
3042
3794
  ],
3043
3795
  "slots": [],
@@ -3187,7 +3939,7 @@
3187
3939
  },
3188
3940
  {
3189
3941
  "name": "fill",
3190
- "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.",
3942
+ "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\"`.",
3191
3943
  "required": false,
3192
3944
  "value": {
3193
3945
  "kind": "expression",
@@ -3223,12 +3975,11 @@
3223
3975
  },
3224
3976
  {
3225
3977
  "name": "label-placement",
3226
- "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 (\"...\").",
3978
+ "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.",
3227
3979
  "required": false,
3228
- "default": "'start'",
3229
3980
  "value": {
3230
3981
  "kind": "expression",
3231
- "type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\""
3982
+ "type": "\"end\" | \"fixed\" | \"floating\" | \"stacked\" | \"start\" | undefined"
3232
3983
  }
3233
3984
  },
3234
3985
  {
@@ -3269,7 +4020,7 @@
3269
4020
  },
3270
4021
  {
3271
4022
  "name": "mode",
3272
- "description": "The mode determines which platform styles to use.",
4023
+ "description": "The mode determines the platform behaviors of the component.",
3273
4024
  "required": false,
3274
4025
  "value": {
3275
4026
  "kind": "expression",
@@ -3327,19 +4078,29 @@
3327
4078
  "name": "required",
3328
4079
  "description": "If `true`, the user must fill in a value before submitting a form.",
3329
4080
  "required": false,
3330
- "default": "false",
4081
+ "default": "false",
4082
+ "value": {
4083
+ "kind": "expression",
4084
+ "type": "boolean"
4085
+ }
4086
+ },
4087
+ {
4088
+ "name": "shape",
4089
+ "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\"`.",
4090
+ "required": false,
3331
4091
  "value": {
3332
4092
  "kind": "expression",
3333
- "type": "boolean"
4093
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
3334
4094
  }
3335
4095
  },
3336
4096
  {
3337
- "name": "shape",
3338
- "description": "The shape of the input. If \"round\" it will have an increased border radius.",
4097
+ "name": "size",
4098
+ "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.",
3339
4099
  "required": false,
4100
+ "default": "'medium'",
3340
4101
  "value": {
3341
4102
  "kind": "expression",
3342
- "type": "\"round\" | undefined"
4103
+ "type": "\"large\" | \"medium\" | \"xlarge\" | undefined"
3343
4104
  }
3344
4105
  },
3345
4106
  {
@@ -3361,6 +4122,15 @@
3361
4122
  "type": "string | undefined"
3362
4123
  }
3363
4124
  },
4125
+ {
4126
+ "name": "theme",
4127
+ "description": "The theme determines the visual appearance of the component.",
4128
+ "required": false,
4129
+ "value": {
4130
+ "kind": "expression",
4131
+ "type": "\"ios\" | \"md\" | \"ionic\""
4132
+ }
4133
+ },
3364
4134
  {
3365
4135
  "name": "type",
3366
4136
  "description": "The type of control to display. The default type is text.",
@@ -3506,6 +4276,15 @@
3506
4276
  "type": "number"
3507
4277
  }
3508
4278
  },
4279
+ {
4280
+ "name": "mode",
4281
+ "description": "The mode determines the platform behaviors of the component.",
4282
+ "required": false,
4283
+ "value": {
4284
+ "kind": "expression",
4285
+ "type": "\"ios\" | \"md\""
4286
+ }
4287
+ },
3509
4288
  {
3510
4289
  "name": "pattern",
3511
4290
  "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}]\"`",
@@ -3554,6 +4333,15 @@
3554
4333
  "type": "\"large\" | \"medium\" | \"small\""
3555
4334
  }
3556
4335
  },
4336
+ {
4337
+ "name": "theme",
4338
+ "description": "The theme determines the visual appearance of the component.",
4339
+ "required": false,
4340
+ "value": {
4341
+ "kind": "expression",
4342
+ "type": "\"ios\" | \"md\" | \"ionic\""
4343
+ }
4344
+ },
3557
4345
  {
3558
4346
  "name": "type",
3559
4347
  "description": "The type of input allowed in the input boxes.",
@@ -3708,7 +4496,7 @@
3708
4496
  },
3709
4497
  {
3710
4498
  "name": "detail",
3711
- "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.",
4499
+ "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.",
3712
4500
  "required": false,
3713
4501
  "value": {
3714
4502
  "kind": "expression",
@@ -3719,10 +4507,9 @@
3719
4507
  "name": "detail-icon",
3720
4508
  "description": "The icon to use when `detail` is set to `true`.",
3721
4509
  "required": false,
3722
- "default": "chevronForward",
3723
4510
  "value": {
3724
4511
  "kind": "expression",
3725
- "type": "string"
4512
+ "type": "string | undefined"
3726
4513
  }
3727
4514
  },
3728
4515
  {
@@ -3764,7 +4551,7 @@
3764
4551
  },
3765
4552
  {
3766
4553
  "name": "mode",
3767
- "description": "The mode determines which platform styles to use.",
4554
+ "description": "The mode determines the platform behaviors of the component.",
3768
4555
  "required": false,
3769
4556
  "value": {
3770
4557
  "kind": "expression",
@@ -3808,6 +4595,15 @@
3808
4595
  "type": "string | undefined"
3809
4596
  }
3810
4597
  },
4598
+ {
4599
+ "name": "theme",
4600
+ "description": "The theme determines the visual appearance of the component.",
4601
+ "required": false,
4602
+ "value": {
4603
+ "kind": "expression",
4604
+ "type": "\"ios\" | \"md\" | \"ionic\""
4605
+ }
4606
+ },
3811
4607
  {
3812
4608
  "name": "type",
3813
4609
  "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
@@ -3855,7 +4651,7 @@
3855
4651
  },
3856
4652
  {
3857
4653
  "name": "mode",
3858
- "description": "The mode determines which platform styles to use.",
4654
+ "description": "The mode determines the platform behaviors of the component.",
3859
4655
  "required": false,
3860
4656
  "value": {
3861
4657
  "kind": "expression",
@@ -3871,6 +4667,15 @@
3871
4667
  "kind": "expression",
3872
4668
  "type": "boolean"
3873
4669
  }
4670
+ },
4671
+ {
4672
+ "name": "theme",
4673
+ "description": "The theme determines the visual appearance of the component.",
4674
+ "required": false,
4675
+ "value": {
4676
+ "kind": "expression",
4677
+ "type": "\"ios\" | \"md\" | \"ionic\""
4678
+ }
3874
4679
  }
3875
4680
  ],
3876
4681
  "slots": [
@@ -3897,7 +4702,26 @@
3897
4702
  "module": "@ionic/core/src/components/item-group/item-group.d.ts",
3898
4703
  "symbol": "ItemGroup"
3899
4704
  },
3900
- "attributes": [],
4705
+ "attributes": [
4706
+ {
4707
+ "name": "mode",
4708
+ "description": "The mode determines the platform behaviors of the component.",
4709
+ "required": false,
4710
+ "value": {
4711
+ "kind": "expression",
4712
+ "type": "\"ios\" | \"md\""
4713
+ }
4714
+ },
4715
+ {
4716
+ "name": "theme",
4717
+ "description": "The theme determines the visual appearance of the component.",
4718
+ "required": false,
4719
+ "value": {
4720
+ "kind": "expression",
4721
+ "type": "\"ios\" | \"md\" | \"ionic\""
4722
+ }
4723
+ }
4724
+ ],
3901
4725
  "slots": [],
3902
4726
  "events": []
3903
4727
  },
@@ -3957,9 +4781,19 @@
3957
4781
  "type": "string | undefined"
3958
4782
  }
3959
4783
  },
4784
+ {
4785
+ "name": "hue",
4786
+ "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.",
4787
+ "required": false,
4788
+ "default": "'subtle'",
4789
+ "value": {
4790
+ "kind": "expression",
4791
+ "type": "\"bold\" | \"subtle\" | undefined"
4792
+ }
4793
+ },
3960
4794
  {
3961
4795
  "name": "mode",
3962
- "description": "The mode determines which platform styles to use.",
4796
+ "description": "The mode determines the platform behaviors of the component.",
3963
4797
  "required": false,
3964
4798
  "value": {
3965
4799
  "kind": "expression",
@@ -3975,6 +4809,15 @@
3975
4809
  "type": "string | undefined"
3976
4810
  }
3977
4811
  },
4812
+ {
4813
+ "name": "shape",
4814
+ "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.",
4815
+ "required": false,
4816
+ "value": {
4817
+ "kind": "expression",
4818
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
4819
+ }
4820
+ },
3978
4821
  {
3979
4822
  "name": "target",
3980
4823
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.",
@@ -3984,6 +4827,15 @@
3984
4827
  "type": "string | undefined"
3985
4828
  }
3986
4829
  },
4830
+ {
4831
+ "name": "theme",
4832
+ "description": "The theme determines the visual appearance of the component.",
4833
+ "required": false,
4834
+ "value": {
4835
+ "kind": "expression",
4836
+ "type": "\"ios\" | \"md\" | \"ionic\""
4837
+ }
4838
+ },
3987
4839
  {
3988
4840
  "name": "type",
3989
4841
  "description": "The type of the button.",
@@ -4032,6 +4884,15 @@
4032
4884
  "symbol": "ItemOptions"
4033
4885
  },
4034
4886
  "attributes": [
4887
+ {
4888
+ "name": "mode",
4889
+ "description": "The mode determines the platform behaviors of the component.",
4890
+ "required": false,
4891
+ "value": {
4892
+ "kind": "expression",
4893
+ "type": "\"ios\" | \"md\""
4894
+ }
4895
+ },
4035
4896
  {
4036
4897
  "name": "side",
4037
4898
  "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.",
@@ -4041,6 +4902,15 @@
4041
4902
  "kind": "expression",
4042
4903
  "type": "\"end\" | \"start\""
4043
4904
  }
4905
+ },
4906
+ {
4907
+ "name": "theme",
4908
+ "description": "The theme determines the visual appearance of the component.",
4909
+ "required": false,
4910
+ "value": {
4911
+ "kind": "expression",
4912
+ "type": "\"ios\" | \"md\" | \"ionic\""
4913
+ }
4044
4914
  }
4045
4915
  ],
4046
4916
  "slots": [],
@@ -4075,6 +4945,24 @@
4075
4945
  "kind": "expression",
4076
4946
  "type": "boolean"
4077
4947
  }
4948
+ },
4949
+ {
4950
+ "name": "mode",
4951
+ "description": "The mode determines the platform behaviors of the component.",
4952
+ "required": false,
4953
+ "value": {
4954
+ "kind": "expression",
4955
+ "type": "\"ios\" | \"md\""
4956
+ }
4957
+ },
4958
+ {
4959
+ "name": "theme",
4960
+ "description": "The theme determines the visual appearance of the component.",
4961
+ "required": false,
4962
+ "value": {
4963
+ "kind": "expression",
4964
+ "type": "\"ios\" | \"md\" | \"ionic\""
4965
+ }
4078
4966
  }
4079
4967
  ],
4080
4968
  "slots": [],
@@ -4111,7 +4999,7 @@
4111
4999
  },
4112
5000
  {
4113
5001
  "name": "mode",
4114
- "description": "The mode determines which platform styles to use.",
5002
+ "description": "The mode determines the platform behaviors of the component.",
4115
5003
  "required": false,
4116
5004
  "value": {
4117
5005
  "kind": "expression",
@@ -4126,6 +5014,15 @@
4126
5014
  "kind": "expression",
4127
5015
  "type": "\"fixed\" | \"floating\" | \"stacked\" | undefined"
4128
5016
  }
5017
+ },
5018
+ {
5019
+ "name": "theme",
5020
+ "description": "The theme determines the visual appearance of the component.",
5021
+ "required": false,
5022
+ "value": {
5023
+ "kind": "expression",
5024
+ "type": "\"ios\" | \"md\" | \"ionic\""
5025
+ }
4129
5026
  }
4130
5027
  ],
4131
5028
  "slots": [],
@@ -4161,12 +5058,30 @@
4161
5058
  },
4162
5059
  {
4163
5060
  "name": "mode",
4164
- "description": "The mode determines which platform styles to use.",
5061
+ "description": "The mode determines the platform behaviors of the component.",
4165
5062
  "required": false,
4166
5063
  "value": {
4167
5064
  "kind": "expression",
4168
5065
  "type": "\"ios\" | \"md\""
4169
5066
  }
5067
+ },
5068
+ {
5069
+ "name": "shape",
5070
+ "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.",
5071
+ "required": false,
5072
+ "value": {
5073
+ "kind": "expression",
5074
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
5075
+ }
5076
+ },
5077
+ {
5078
+ "name": "theme",
5079
+ "description": "The theme determines the visual appearance of the component.",
5080
+ "required": false,
5081
+ "value": {
5082
+ "kind": "expression",
5083
+ "type": "\"ios\" | \"md\" | \"ionic\""
5084
+ }
4170
5085
  }
4171
5086
  ],
4172
5087
  "slots": [],
@@ -4201,12 +5116,21 @@
4201
5116
  },
4202
5117
  {
4203
5118
  "name": "mode",
4204
- "description": "The mode determines which platform styles to use.",
5119
+ "description": "The mode determines the platform behaviors of the component.",
4205
5120
  "required": false,
4206
5121
  "value": {
4207
5122
  "kind": "expression",
4208
5123
  "type": "\"ios\" | \"md\""
4209
5124
  }
5125
+ },
5126
+ {
5127
+ "name": "theme",
5128
+ "description": "The theme determines the visual appearance of the component.",
5129
+ "required": false,
5130
+ "value": {
5131
+ "kind": "expression",
5132
+ "type": "\"ios\" | \"md\" | \"ionic\""
5133
+ }
4210
5134
  }
4211
5135
  ],
4212
5136
  "slots": [],
@@ -4318,7 +5242,7 @@
4318
5242
  },
4319
5243
  {
4320
5244
  "name": "mode",
4321
- "description": "The mode determines which platform styles to use.",
5245
+ "description": "The mode determines the platform behaviors of the component.",
4322
5246
  "required": false,
4323
5247
  "value": {
4324
5248
  "kind": "expression",
@@ -4344,9 +5268,18 @@
4344
5268
  "type": "\"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines\" | \"lines-sharp\" | \"lines-sharp-small\" | \"lines-small\" | null | undefined"
4345
5269
  }
4346
5270
  },
5271
+ {
5272
+ "name": "theme",
5273
+ "description": "The theme determines the visual appearance of the component.",
5274
+ "required": false,
5275
+ "value": {
5276
+ "kind": "expression",
5277
+ "type": "\"ios\" | \"md\" | \"ionic\""
5278
+ }
5279
+ },
4347
5280
  {
4348
5281
  "name": "translucent",
4349
- "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).",
5282
+ "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).",
4350
5283
  "required": false,
4351
5284
  "default": "false",
4352
5285
  "value": {
@@ -4495,6 +5428,15 @@
4495
5428
  "type": "string | undefined"
4496
5429
  }
4497
5430
  },
5431
+ {
5432
+ "name": "mode",
5433
+ "description": "The mode determines the platform behaviors of the component.",
5434
+ "required": false,
5435
+ "value": {
5436
+ "kind": "expression",
5437
+ "type": "\"ios\" | \"md\""
5438
+ }
5439
+ },
4498
5440
  {
4499
5441
  "name": "side",
4500
5442
  "description": "Which side of the view the menu should be placed.",
@@ -4515,6 +5457,15 @@
4515
5457
  "type": "boolean"
4516
5458
  }
4517
5459
  },
5460
+ {
5461
+ "name": "theme",
5462
+ "description": "The theme determines the visual appearance of the component.",
5463
+ "required": false,
5464
+ "value": {
5465
+ "kind": "expression",
5466
+ "type": "\"ios\" | \"md\" | \"ionic\""
5467
+ }
5468
+ },
4518
5469
  {
4519
5470
  "name": "type",
4520
5471
  "description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
@@ -4618,13 +5569,22 @@
4618
5569
  },
4619
5570
  {
4620
5571
  "name": "mode",
4621
- "description": "The mode determines which platform styles to use.",
5572
+ "description": "The mode determines the platform behaviors of the component.",
4622
5573
  "required": false,
4623
5574
  "value": {
4624
5575
  "kind": "expression",
4625
5576
  "type": "\"ios\" | \"md\""
4626
5577
  }
4627
5578
  },
5579
+ {
5580
+ "name": "theme",
5581
+ "description": "The theme determines the visual appearance of the component.",
5582
+ "required": false,
5583
+ "value": {
5584
+ "kind": "expression",
5585
+ "type": "\"ios\" | \"md\" | \"ionic\""
5586
+ }
5587
+ },
4628
5588
  {
4629
5589
  "name": "type",
4630
5590
  "description": "The type of the button.",
@@ -4666,6 +5626,24 @@
4666
5626
  "kind": "expression",
4667
5627
  "type": "string | undefined"
4668
5628
  }
5629
+ },
5630
+ {
5631
+ "name": "mode",
5632
+ "description": "The mode determines the platform behaviors of the component.",
5633
+ "required": false,
5634
+ "value": {
5635
+ "kind": "expression",
5636
+ "type": "\"ios\" | \"md\""
5637
+ }
5638
+ },
5639
+ {
5640
+ "name": "theme",
5641
+ "description": "The theme determines the visual appearance of the component.",
5642
+ "required": false,
5643
+ "value": {
5644
+ "kind": "expression",
5645
+ "type": "\"ios\" | \"md\" | \"ionic\""
5646
+ }
4669
5647
  }
4670
5648
  ],
4671
5649
  "slots": [
@@ -4841,7 +5819,7 @@
4841
5819
  },
4842
5820
  {
4843
5821
  "name": "mode",
4844
- "description": "The mode determines which platform styles to use.",
5822
+ "description": "The mode determines the platform behaviors of the component.",
4845
5823
  "required": false,
4846
5824
  "value": {
4847
5825
  "kind": "expression",
@@ -4857,6 +5835,15 @@
4857
5835
  "type": "HTMLElement | undefined"
4858
5836
  }
4859
5837
  },
5838
+ {
5839
+ "name": "shape",
5840
+ "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.",
5841
+ "required": false,
5842
+ "value": {
5843
+ "kind": "expression",
5844
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
5845
+ }
5846
+ },
4860
5847
  {
4861
5848
  "name": "show-backdrop",
4862
5849
  "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.",
@@ -4867,6 +5854,15 @@
4867
5854
  "type": "boolean"
4868
5855
  }
4869
5856
  },
5857
+ {
5858
+ "name": "theme",
5859
+ "description": "The theme determines the visual appearance of the component.",
5860
+ "required": false,
5861
+ "value": {
5862
+ "kind": "expression",
5863
+ "type": "\"ios\" | \"md\" | \"ionic\""
5864
+ }
5865
+ },
4870
5866
  {
4871
5867
  "name": "trigger",
4872
5868
  "description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked.",
@@ -5026,12 +6022,21 @@
5026
6022
  },
5027
6023
  {
5028
6024
  "name": "mode",
5029
- "description": "The mode determines which platform styles to use.",
6025
+ "description": "The mode determines the platform behaviors of the component.",
5030
6026
  "required": false,
5031
6027
  "value": {
5032
6028
  "kind": "expression",
5033
6029
  "type": "\"ios\" | \"md\""
5034
6030
  }
6031
+ },
6032
+ {
6033
+ "name": "theme",
6034
+ "description": "The theme determines the visual appearance of the component.",
6035
+ "required": false,
6036
+ "value": {
6037
+ "kind": "expression",
6038
+ "type": "\"ios\" | \"md\" | \"ionic\""
6039
+ }
5035
6040
  }
5036
6041
  ],
5037
6042
  "slots": [],
@@ -5048,12 +6053,21 @@
5048
6053
  "attributes": [
5049
6054
  {
5050
6055
  "name": "mode",
5051
- "description": "The mode determines which platform styles to use.",
6056
+ "description": "The mode determines the platform behaviors of the component.",
5052
6057
  "required": false,
5053
6058
  "value": {
5054
6059
  "kind": "expression",
5055
6060
  "type": "\"ios\" | \"md\""
5056
6061
  }
6062
+ },
6063
+ {
6064
+ "name": "theme",
6065
+ "description": "The theme determines the visual appearance of the component.",
6066
+ "required": false,
6067
+ "value": {
6068
+ "kind": "expression",
6069
+ "type": "\"ios\" | \"md\" | \"ionic\""
6070
+ }
5057
6071
  }
5058
6072
  ],
5059
6073
  "slots": [],
@@ -5090,13 +6104,22 @@
5090
6104
  },
5091
6105
  {
5092
6106
  "name": "mode",
5093
- "description": "The mode determines which platform styles to use.",
6107
+ "description": "The mode determines the platform behaviors of the component.",
5094
6108
  "required": false,
5095
6109
  "value": {
5096
6110
  "kind": "expression",
5097
6111
  "type": "\"ios\" | \"md\""
5098
6112
  }
5099
6113
  },
6114
+ {
6115
+ "name": "theme",
6116
+ "description": "The theme determines the visual appearance of the component.",
6117
+ "required": false,
6118
+ "value": {
6119
+ "kind": "expression",
6120
+ "type": "\"ios\" | \"md\" | \"ionic\""
6121
+ }
6122
+ },
5100
6123
  {
5101
6124
  "name": "value",
5102
6125
  "description": "The selected option in the picker.",
@@ -5159,6 +6182,24 @@
5159
6182
  "type": "boolean"
5160
6183
  }
5161
6184
  },
6185
+ {
6186
+ "name": "mode",
6187
+ "description": "The mode determines the platform behaviors of the component.",
6188
+ "required": false,
6189
+ "value": {
6190
+ "kind": "expression",
6191
+ "type": "\"ios\" | \"md\""
6192
+ }
6193
+ },
6194
+ {
6195
+ "name": "theme",
6196
+ "description": "The theme determines the visual appearance of the component.",
6197
+ "required": false,
6198
+ "value": {
6199
+ "kind": "expression",
6200
+ "type": "\"ios\" | \"md\" | \"ionic\""
6201
+ }
6202
+ },
5162
6203
  {
5163
6204
  "name": "value",
5164
6205
  "description": "The text value of the option.",
@@ -5289,7 +6330,7 @@
5289
6330
  },
5290
6331
  {
5291
6332
  "name": "mode",
5292
- "description": "The mode determines which platform styles to use.",
6333
+ "description": "The mode determines the platform behaviors of the component.",
5293
6334
  "required": false,
5294
6335
  "value": {
5295
6336
  "kind": "expression",
@@ -5306,6 +6347,15 @@
5306
6347
  "type": "boolean"
5307
6348
  }
5308
6349
  },
6350
+ {
6351
+ "name": "theme",
6352
+ "description": "The theme determines the visual appearance of the component.",
6353
+ "required": false,
6354
+ "value": {
6355
+ "kind": "expression",
6356
+ "type": "\"ios\" | \"md\" | \"ionic\""
6357
+ }
6358
+ },
5309
6359
  {
5310
6360
  "name": "trigger",
5311
6361
  "description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
@@ -5411,7 +6461,7 @@
5411
6461
  "attributes": [
5412
6462
  {
5413
6463
  "name": "alignment",
5414
- "description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `ios` mode, and `\"start\"` for `md` mode.",
6464
+ "description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
5415
6465
  "required": false,
5416
6466
  "value": {
5417
6467
  "kind": "expression",
@@ -5430,7 +6480,7 @@
5430
6480
  },
5431
6481
  {
5432
6482
  "name": "arrow",
5433
- "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.",
6483
+ "description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme.",
5434
6484
  "required": false,
5435
6485
  "default": "true",
5436
6486
  "value": {
@@ -5554,7 +6604,7 @@
5554
6604
  },
5555
6605
  {
5556
6606
  "name": "mode",
5557
- "description": "The mode determines which platform styles to use.",
6607
+ "description": "The mode determines the platform behaviors of the component.",
5558
6608
  "required": false,
5559
6609
  "value": {
5560
6610
  "kind": "expression",
@@ -5601,9 +6651,18 @@
5601
6651
  "type": "\"auto\" | \"cover\""
5602
6652
  }
5603
6653
  },
6654
+ {
6655
+ "name": "theme",
6656
+ "description": "The theme determines the visual appearance of the component.",
6657
+ "required": false,
6658
+ "value": {
6659
+ "kind": "expression",
6660
+ "type": "\"ios\" | \"md\" | \"ionic\""
6661
+ }
6662
+ },
5604
6663
  {
5605
6664
  "name": "translucent",
5606
- "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).",
6665
+ "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).",
5607
6666
  "required": false,
5608
6667
  "default": "false",
5609
6668
  "value": {
@@ -5750,21 +6809,39 @@
5750
6809
  },
5751
6810
  {
5752
6811
  "name": "mode",
5753
- "description": "The mode determines which platform styles to use.",
6812
+ "description": "The mode determines the platform behaviors of the component.",
6813
+ "required": false,
6814
+ "value": {
6815
+ "kind": "expression",
6816
+ "type": "\"ios\" | \"md\""
6817
+ }
6818
+ },
6819
+ {
6820
+ "name": "reversed",
6821
+ "description": "If true, reverse the progress bar direction.",
6822
+ "required": false,
6823
+ "default": "false",
6824
+ "value": {
6825
+ "kind": "expression",
6826
+ "type": "boolean"
6827
+ }
6828
+ },
6829
+ {
6830
+ "name": "shape",
6831
+ "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.",
5754
6832
  "required": false,
5755
6833
  "value": {
5756
6834
  "kind": "expression",
5757
- "type": "\"ios\" | \"md\""
6835
+ "type": "\"rectangular\" | \"round\" | undefined"
5758
6836
  }
5759
6837
  },
5760
6838
  {
5761
- "name": "reversed",
5762
- "description": "If true, reverse the progress bar direction.",
6839
+ "name": "theme",
6840
+ "description": "The theme determines the visual appearance of the component.",
5763
6841
  "required": false,
5764
- "default": "false",
5765
6842
  "value": {
5766
6843
  "kind": "expression",
5767
- "type": "boolean"
6844
+ "type": "\"ios\" | \"md\" | \"ionic\""
5768
6845
  }
5769
6846
  },
5770
6847
  {
@@ -5849,7 +6926,7 @@
5849
6926
  },
5850
6927
  {
5851
6928
  "name": "mode",
5852
- "description": "The mode determines which platform styles to use.",
6929
+ "description": "The mode determines the platform behaviors of the component.",
5853
6930
  "required": false,
5854
6931
  "value": {
5855
6932
  "kind": "expression",
@@ -5866,6 +6943,15 @@
5866
6943
  "type": "string"
5867
6944
  }
5868
6945
  },
6946
+ {
6947
+ "name": "theme",
6948
+ "description": "The theme determines the visual appearance of the component.",
6949
+ "required": false,
6950
+ "value": {
6951
+ "kind": "expression",
6952
+ "type": "\"ios\" | \"md\" | \"ionic\""
6953
+ }
6954
+ },
5869
6955
  {
5870
6956
  "name": "value",
5871
6957
  "description": "the value of the radio.",
@@ -5951,6 +7037,15 @@
5951
7037
  "type": "string | undefined"
5952
7038
  }
5953
7039
  },
7040
+ {
7041
+ "name": "mode",
7042
+ "description": "The mode determines the platform behaviors of the component.",
7043
+ "required": false,
7044
+ "value": {
7045
+ "kind": "expression",
7046
+ "type": "\"ios\" | \"md\""
7047
+ }
7048
+ },
5954
7049
  {
5955
7050
  "name": "name",
5956
7051
  "description": "The name of the control, which is submitted with the form data.",
@@ -5961,6 +7056,15 @@
5961
7056
  "type": "string"
5962
7057
  }
5963
7058
  },
7059
+ {
7060
+ "name": "theme",
7061
+ "description": "The theme determines the visual appearance of the component.",
7062
+ "required": false,
7063
+ "value": {
7064
+ "kind": "expression",
7065
+ "type": "\"ios\" | \"md\" | \"ionic\""
7066
+ }
7067
+ },
5964
7068
  {
5965
7069
  "name": "value",
5966
7070
  "description": "the value of the radio group.",
@@ -6082,7 +7186,7 @@
6082
7186
  },
6083
7187
  {
6084
7188
  "name": "mode",
6085
- "description": "The mode determines which platform styles to use.",
7189
+ "description": "The mode determines the platform behaviors of the component.",
6086
7190
  "required": false,
6087
7191
  "value": {
6088
7192
  "kind": "expression",
@@ -6139,6 +7243,15 @@
6139
7243
  "type": "number"
6140
7244
  }
6141
7245
  },
7246
+ {
7247
+ "name": "theme",
7248
+ "description": "The theme determines the visual appearance of the component.",
7249
+ "required": false,
7250
+ "value": {
7251
+ "kind": "expression",
7252
+ "type": "\"ios\" | \"md\" | \"ionic\""
7253
+ }
7254
+ },
6142
7255
  {
6143
7256
  "name": "ticks",
6144
7257
  "description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`.",
@@ -6268,7 +7381,7 @@
6268
7381
  },
6269
7382
  {
6270
7383
  "name": "mode",
6271
- "description": "The mode determines which platform styles to use.",
7384
+ "description": "The mode determines the platform behaviors of the component.",
6272
7385
  "required": false,
6273
7386
  "value": {
6274
7387
  "kind": "expression",
@@ -6314,6 +7427,15 @@
6314
7427
  "kind": "expression",
6315
7428
  "type": "string"
6316
7429
  }
7430
+ },
7431
+ {
7432
+ "name": "theme",
7433
+ "description": "The theme determines the visual appearance of the component.",
7434
+ "required": false,
7435
+ "value": {
7436
+ "kind": "expression",
7437
+ "type": "\"ios\" | \"md\" | \"ionic\""
7438
+ }
6317
7439
  }
6318
7440
  ],
6319
7441
  "slots": [],
@@ -6379,6 +7501,15 @@
6379
7501
  "symbol": "RefresherContent"
6380
7502
  },
6381
7503
  "attributes": [
7504
+ {
7505
+ "name": "mode",
7506
+ "description": "The mode determines the platform behaviors of the component.",
7507
+ "required": false,
7508
+ "value": {
7509
+ "kind": "expression",
7510
+ "type": "\"ios\" | \"md\""
7511
+ }
7512
+ },
6382
7513
  {
6383
7514
  "name": "pulling-icon",
6384
7515
  "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.",
@@ -6414,6 +7545,15 @@
6414
7545
  "kind": "expression",
6415
7546
  "type": "IonicSafeString | string | undefined"
6416
7547
  }
7548
+ },
7549
+ {
7550
+ "name": "theme",
7551
+ "description": "The theme determines the visual appearance of the component.",
7552
+ "required": false,
7553
+ "value": {
7554
+ "kind": "expression",
7555
+ "type": "\"ios\" | \"md\" | \"ionic\""
7556
+ }
6417
7557
  }
6418
7558
  ],
6419
7559
  "slots": [],
@@ -6427,7 +7567,26 @@
6427
7567
  "module": "@ionic/core/src/components/reorder/reorder.d.ts",
6428
7568
  "symbol": "Reorder"
6429
7569
  },
6430
- "attributes": [],
7570
+ "attributes": [
7571
+ {
7572
+ "name": "mode",
7573
+ "description": "The mode determines the platform behaviors of the component.",
7574
+ "required": false,
7575
+ "value": {
7576
+ "kind": "expression",
7577
+ "type": "\"ios\" | \"md\""
7578
+ }
7579
+ },
7580
+ {
7581
+ "name": "theme",
7582
+ "description": "The theme determines the visual appearance of the component.",
7583
+ "required": false,
7584
+ "value": {
7585
+ "kind": "expression",
7586
+ "type": "\"ios\" | \"md\" | \"ionic\""
7587
+ }
7588
+ }
7589
+ ],
6431
7590
  "slots": [],
6432
7591
  "events": []
6433
7592
  },
@@ -6449,6 +7608,24 @@
6449
7608
  "kind": "expression",
6450
7609
  "type": "boolean"
6451
7610
  }
7611
+ },
7612
+ {
7613
+ "name": "mode",
7614
+ "description": "The mode determines the platform behaviors of the component.",
7615
+ "required": false,
7616
+ "value": {
7617
+ "kind": "expression",
7618
+ "type": "\"ios\" | \"md\""
7619
+ }
7620
+ },
7621
+ {
7622
+ "name": "theme",
7623
+ "description": "The theme determines the visual appearance of the component.",
7624
+ "required": false,
7625
+ "value": {
7626
+ "kind": "expression",
7627
+ "type": "\"ios\" | \"md\" | \"ionic\""
7628
+ }
6452
7629
  }
6453
7630
  ],
6454
7631
  "slots": [],
@@ -6504,6 +7681,24 @@
6504
7681
  "symbol": "RippleEffect"
6505
7682
  },
6506
7683
  "attributes": [
7684
+ {
7685
+ "name": "mode",
7686
+ "description": "The mode determines the platform behaviors of the component.",
7687
+ "required": false,
7688
+ "value": {
7689
+ "kind": "expression",
7690
+ "type": "\"ios\" | \"md\""
7691
+ }
7692
+ },
7693
+ {
7694
+ "name": "theme",
7695
+ "description": "The theme determines the visual appearance of the component.",
7696
+ "required": false,
7697
+ "value": {
7698
+ "kind": "expression",
7699
+ "type": "\"ios\" | \"md\" | \"ionic\""
7700
+ }
7701
+ },
6507
7702
  {
6508
7703
  "name": "type",
6509
7704
  "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.",
@@ -6563,6 +7758,24 @@
6563
7758
  "type": "undefined | { [key: string]: any; }"
6564
7759
  }
6565
7760
  },
7761
+ {
7762
+ "name": "mode",
7763
+ "description": "The mode determines the platform behaviors of the component.",
7764
+ "required": false,
7765
+ "value": {
7766
+ "kind": "expression",
7767
+ "type": "\"ios\" | \"md\""
7768
+ }
7769
+ },
7770
+ {
7771
+ "name": "theme",
7772
+ "description": "The theme determines the visual appearance of the component.",
7773
+ "required": false,
7774
+ "value": {
7775
+ "kind": "expression",
7776
+ "type": "\"ios\" | \"md\" | \"ionic\""
7777
+ }
7778
+ },
6566
7779
  {
6567
7780
  "name": "url",
6568
7781
  "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.",
@@ -6596,7 +7809,26 @@
6596
7809
  "module": "@ionic/core/src/components/row/row.d.ts",
6597
7810
  "symbol": "Row"
6598
7811
  },
6599
- "attributes": [],
7812
+ "attributes": [
7813
+ {
7814
+ "name": "mode",
7815
+ "description": "The mode determines the platform behaviors of the component.",
7816
+ "required": false,
7817
+ "value": {
7818
+ "kind": "expression",
7819
+ "type": "\"ios\" | \"md\""
7820
+ }
7821
+ },
7822
+ {
7823
+ "name": "theme",
7824
+ "description": "The theme determines the visual appearance of the component.",
7825
+ "required": false,
7826
+ "value": {
7827
+ "kind": "expression",
7828
+ "type": "\"ios\" | \"md\" | \"ionic\""
7829
+ }
7830
+ }
7831
+ ],
6600
7832
  "slots": [],
6601
7833
  "events": []
6602
7834
  },
@@ -6651,17 +7883,16 @@
6651
7883
  },
6652
7884
  {
6653
7885
  "name": "cancel-button-icon",
6654
- "description": "Set the cancel button icon. Only applies to `md` mode.\nDefaults to `arrow-back-sharp`.",
7886
+ "description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`.",
6655
7887
  "required": false,
6656
- "default": "config.get('backButtonIcon', arrowBackSharp) as string",
6657
7888
  "value": {
6658
7889
  "kind": "expression",
6659
- "type": "string"
7890
+ "type": "string | undefined"
6660
7891
  }
6661
7892
  },
6662
7893
  {
6663
7894
  "name": "cancel-button-text",
6664
- "description": "Set the cancel button text. Only applies to `ios` mode.",
7895
+ "description": "Set the cancel button text. Only available when the theme is `\"ios\"`.",
6665
7896
  "required": false,
6666
7897
  "default": "'Cancel'",
6667
7898
  "value": {
@@ -6671,7 +7902,7 @@
6671
7902
  },
6672
7903
  {
6673
7904
  "name": "clear-icon",
6674
- "description": "Set the clear icon. Defaults to `close-circle` for `ios` and `close-sharp` for `md`.",
7905
+ "description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme.",
6675
7906
  "required": false,
6676
7907
  "value": {
6677
7908
  "kind": "expression",
@@ -6744,7 +7975,7 @@
6744
7975
  },
6745
7976
  {
6746
7977
  "name": "mode",
6747
- "description": "The mode determines which platform styles to use.",
7978
+ "description": "The mode determines the platform behaviors of the component.",
6748
7979
  "required": false,
6749
7980
  "value": {
6750
7981
  "kind": "expression",
@@ -6773,11 +8004,20 @@
6773
8004
  },
6774
8005
  {
6775
8006
  "name": "search-icon",
6776
- "description": "The icon to use as the search icon. Defaults to `search-outline` in\n`ios` mode and `search-sharp` in `md` mode.",
8007
+ "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.",
6777
8008
  "required": false,
6778
8009
  "value": {
6779
8010
  "kind": "expression",
6780
- "type": "string | undefined"
8011
+ "type": "boolean | string | undefined"
8012
+ }
8013
+ },
8014
+ {
8015
+ "name": "shape",
8016
+ "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.",
8017
+ "required": false,
8018
+ "value": {
8019
+ "kind": "expression",
8020
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
6781
8021
  }
6782
8022
  },
6783
8023
  {
@@ -6800,6 +8040,15 @@
6800
8040
  "type": "\"always\" | \"focus\" | \"never\""
6801
8041
  }
6802
8042
  },
8043
+ {
8044
+ "name": "size",
8045
+ "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.",
8046
+ "required": false,
8047
+ "value": {
8048
+ "kind": "expression",
8049
+ "type": "\"large\" | \"medium\" | \"small\" | undefined"
8050
+ }
8051
+ },
6803
8052
  {
6804
8053
  "name": "spellcheck",
6805
8054
  "description": "If `true`, enable spellcheck on the input.",
@@ -6810,6 +8059,15 @@
6810
8059
  "type": "boolean"
6811
8060
  }
6812
8061
  },
8062
+ {
8063
+ "name": "theme",
8064
+ "description": "The theme determines the visual appearance of the component.",
8065
+ "required": false,
8066
+ "value": {
8067
+ "kind": "expression",
8068
+ "type": "\"ios\" | \"md\" | \"ionic\""
8069
+ }
8070
+ },
6813
8071
  {
6814
8072
  "name": "type",
6815
8073
  "description": "Set the type of the input.",
@@ -6925,7 +8183,7 @@
6925
8183
  },
6926
8184
  {
6927
8185
  "name": "mode",
6928
- "description": "The mode determines which platform styles to use.",
8186
+ "description": "The mode determines the platform behaviors of the component.",
6929
8187
  "required": false,
6930
8188
  "value": {
6931
8189
  "kind": "expression",
@@ -6962,6 +8220,15 @@
6962
8220
  "type": "boolean"
6963
8221
  }
6964
8222
  },
8223
+ {
8224
+ "name": "theme",
8225
+ "description": "The theme determines the visual appearance of the component.",
8226
+ "required": false,
8227
+ "value": {
8228
+ "kind": "expression",
8229
+ "type": "\"ios\" | \"md\" | \"ionic\""
8230
+ }
8231
+ },
6965
8232
  {
6966
8233
  "name": "value",
6967
8234
  "description": "the value of the segment.",
@@ -7026,13 +8293,22 @@
7026
8293
  },
7027
8294
  {
7028
8295
  "name": "mode",
7029
- "description": "The mode determines which platform styles to use.",
8296
+ "description": "The mode determines the platform behaviors of the component.",
7030
8297
  "required": false,
7031
8298
  "value": {
7032
8299
  "kind": "expression",
7033
8300
  "type": "\"ios\" | \"md\""
7034
8301
  }
7035
8302
  },
8303
+ {
8304
+ "name": "theme",
8305
+ "description": "The theme determines the visual appearance of the component.",
8306
+ "required": false,
8307
+ "value": {
8308
+ "kind": "expression",
8309
+ "type": "\"ios\" | \"md\" | \"ionic\""
8310
+ }
8311
+ },
7036
8312
  {
7037
8313
  "name": "type",
7038
8314
  "description": "The type of the button.",
@@ -7122,6 +8398,16 @@
7122
8398
  "symbol": "Select"
7123
8399
  },
7124
8400
  "attributes": [
8401
+ {
8402
+ "name": "cancel-icon",
8403
+ "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.",
8404
+ "required": false,
8405
+ "default": "false",
8406
+ "value": {
8407
+ "kind": "expression",
8408
+ "type": "boolean"
8409
+ }
8410
+ },
7125
8411
  {
7126
8412
  "name": "cancel-text",
7127
8413
  "description": "The text to display on the cancel button.",
@@ -7171,7 +8457,7 @@
7171
8457
  },
7172
8458
  {
7173
8459
  "name": "expanded-icon",
7174
- "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.",
8460
+ "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.",
7175
8461
  "required": false,
7176
8462
  "value": {
7177
8463
  "kind": "expression",
@@ -7180,7 +8466,7 @@
7180
8466
  },
7181
8467
  {
7182
8468
  "name": "fill",
7183
- "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.",
8469
+ "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.",
7184
8470
  "required": false,
7185
8471
  "value": {
7186
8472
  "kind": "expression",
@@ -7246,7 +8532,7 @@
7246
8532
  },
7247
8533
  {
7248
8534
  "name": "mode",
7249
- "description": "The mode determines which platform styles to use.",
8535
+ "description": "The mode determines the platform behaviors of the component.",
7250
8536
  "required": false,
7251
8537
  "value": {
7252
8538
  "kind": "expression",
@@ -7313,16 +8599,34 @@
7313
8599
  },
7314
8600
  {
7315
8601
  "name": "shape",
7316
- "description": "The shape of the select. If \"round\" it will have an increased border radius.",
8602
+ "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.",
8603
+ "required": false,
8604
+ "value": {
8605
+ "kind": "expression",
8606
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
8607
+ }
8608
+ },
8609
+ {
8610
+ "name": "size",
8611
+ "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.",
8612
+ "required": false,
8613
+ "value": {
8614
+ "kind": "expression",
8615
+ "type": "\"large\" | \"medium\" | \"small\" | undefined"
8616
+ }
8617
+ },
8618
+ {
8619
+ "name": "theme",
8620
+ "description": "The theme determines the visual appearance of the component.",
7317
8621
  "required": false,
7318
8622
  "value": {
7319
8623
  "kind": "expression",
7320
- "type": "\"round\" | undefined"
8624
+ "type": "\"ios\" | \"md\" | \"ionic\""
7321
8625
  }
7322
8626
  },
7323
8627
  {
7324
8628
  "name": "toggle-icon",
7325
- "description": "The toggle icon to use. Defaults to `chevronExpand` for `ios` mode,\nor `caretDownSharp` for `md` mode.",
8629
+ "description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes.",
7326
8630
  "required": false,
7327
8631
  "value": {
7328
8632
  "kind": "expression",
@@ -7415,6 +8719,16 @@
7415
8719
  "symbol": "SelectModal"
7416
8720
  },
7417
8721
  "attributes": [
8722
+ {
8723
+ "name": "cancel-icon",
8724
+ "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.",
8725
+ "required": false,
8726
+ "default": "false",
8727
+ "value": {
8728
+ "kind": "expression",
8729
+ "type": "boolean"
8730
+ }
8731
+ },
7418
8732
  {
7419
8733
  "name": "cancel-text",
7420
8734
  "description": "The text to display on the cancel button.",
@@ -7435,45 +8749,90 @@
7435
8749
  }
7436
8750
  },
7437
8751
  {
7438
- "name": "multiple",
7439
- "description": "",
8752
+ "name": "multiple",
8753
+ "description": "",
8754
+ "required": false,
8755
+ "value": {
8756
+ "kind": "expression",
8757
+ "type": "boolean | undefined"
8758
+ }
8759
+ },
8760
+ {
8761
+ "name": "options",
8762
+ "description": "",
8763
+ "required": false,
8764
+ "default": "[]",
8765
+ "value": {
8766
+ "kind": "expression",
8767
+ "type": "SelectModalOption[]"
8768
+ }
8769
+ }
8770
+ ],
8771
+ "slots": [],
8772
+ "events": []
8773
+ },
8774
+ {
8775
+ "name": "IonSelectOption",
8776
+ "doc-url": "https://ionicframework.com/docs/api/select-option",
8777
+ "description": "",
8778
+ "source": {
8779
+ "module": "@ionic/core/src/components/select-option/select-option.d.ts",
8780
+ "symbol": "SelectOption"
8781
+ },
8782
+ "attributes": [
8783
+ {
8784
+ "name": "description",
8785
+ "description": "Text that is placed underneath the option text to provide additional details about the option.",
8786
+ "required": false,
8787
+ "value": {
8788
+ "kind": "expression",
8789
+ "type": "string | undefined"
8790
+ }
8791
+ },
8792
+ {
8793
+ "name": "disabled",
8794
+ "description": "If `true`, the user cannot interact with the select option.",
8795
+ "required": false,
8796
+ "default": "false",
8797
+ "value": {
8798
+ "kind": "expression",
8799
+ "type": "boolean"
8800
+ }
8801
+ },
8802
+ {
8803
+ "name": "justify",
8804
+ "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.",
8805
+ "required": false,
8806
+ "value": {
8807
+ "kind": "expression",
8808
+ "type": "\"end\" | \"space-between\" | \"start\" | undefined"
8809
+ }
8810
+ },
8811
+ {
8812
+ "name": "label-placement",
8813
+ "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.",
7440
8814
  "required": false,
7441
8815
  "value": {
7442
8816
  "kind": "expression",
7443
- "type": "boolean | undefined"
8817
+ "type": "\"end\" | \"start\" | undefined"
7444
8818
  }
7445
8819
  },
7446
8820
  {
7447
- "name": "options",
7448
- "description": "",
8821
+ "name": "mode",
8822
+ "description": "The mode determines the platform behaviors of the component.",
7449
8823
  "required": false,
7450
- "default": "[]",
7451
8824
  "value": {
7452
8825
  "kind": "expression",
7453
- "type": "SelectModalOption[]"
8826
+ "type": "\"ios\" | \"md\""
7454
8827
  }
7455
- }
7456
- ],
7457
- "slots": [],
7458
- "events": []
7459
- },
7460
- {
7461
- "name": "IonSelectOption",
7462
- "doc-url": "https://ionicframework.com/docs/api/select-option",
7463
- "description": "",
7464
- "source": {
7465
- "module": "@ionic/core/src/components/select-option/select-option.d.ts",
7466
- "symbol": "SelectOption"
7467
- },
7468
- "attributes": [
8828
+ },
7469
8829
  {
7470
- "name": "disabled",
7471
- "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.",
8830
+ "name": "theme",
8831
+ "description": "The theme determines the visual appearance of the component.",
7472
8832
  "required": false,
7473
- "default": "false",
7474
8833
  "value": {
7475
8834
  "kind": "expression",
7476
- "type": "boolean"
8835
+ "type": "\"ios\" | \"md\" | \"ionic\""
7477
8836
  }
7478
8837
  },
7479
8838
  {
@@ -7486,7 +8845,20 @@
7486
8845
  }
7487
8846
  }
7488
8847
  ],
7489
- "slots": [],
8848
+ "slots": [
8849
+ {
8850
+ "name": "default",
8851
+ "description": "Content is placed between the named slots if provided without a slot."
8852
+ },
8853
+ {
8854
+ "name": "end",
8855
+ "description": "Content is placed to the right of the select option text in LTR, and to the left in RTL."
8856
+ },
8857
+ {
8858
+ "name": "start",
8859
+ "description": "Content is placed to the left of the select option text in LTR, and to the right in RTL."
8860
+ }
8861
+ ],
7490
8862
  "events": []
7491
8863
  },
7492
8864
  {
@@ -7507,6 +8879,24 @@
7507
8879
  "kind": "expression",
7508
8880
  "type": "boolean"
7509
8881
  }
8882
+ },
8883
+ {
8884
+ "name": "mode",
8885
+ "description": "The mode determines the platform behaviors of the component.",
8886
+ "required": false,
8887
+ "value": {
8888
+ "kind": "expression",
8889
+ "type": "\"ios\" | \"md\""
8890
+ }
8891
+ },
8892
+ {
8893
+ "name": "theme",
8894
+ "description": "The theme determines the visual appearance of the component.",
8895
+ "required": false,
8896
+ "value": {
8897
+ "kind": "expression",
8898
+ "type": "\"ios\" | \"md\" | \"ionic\""
8899
+ }
7510
8900
  }
7511
8901
  ],
7512
8902
  "slots": [],
@@ -7539,6 +8929,15 @@
7539
8929
  "type": "number | undefined"
7540
8930
  }
7541
8931
  },
8932
+ {
8933
+ "name": "mode",
8934
+ "description": "The mode determines the platform behaviors of the component.",
8935
+ "required": false,
8936
+ "value": {
8937
+ "kind": "expression",
8938
+ "type": "\"ios\" | \"md\""
8939
+ }
8940
+ },
7542
8941
  {
7543
8942
  "name": "name",
7544
8943
  "description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
@@ -7557,6 +8956,24 @@
7557
8956
  "kind": "expression",
7558
8957
  "type": "boolean"
7559
8958
  }
8959
+ },
8960
+ {
8961
+ "name": "size",
8962
+ "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.",
8963
+ "required": false,
8964
+ "value": {
8965
+ "kind": "expression",
8966
+ "type": "\"large\" | \"medium\" | \"small\" | \"xlarge\" | \"xsmall\" | undefined"
8967
+ }
8968
+ },
8969
+ {
8970
+ "name": "theme",
8971
+ "description": "The theme determines the visual appearance of the component.",
8972
+ "required": false,
8973
+ "value": {
8974
+ "kind": "expression",
8975
+ "type": "\"ios\" | \"md\" | \"ionic\""
8976
+ }
7560
8977
  }
7561
8978
  ],
7562
8979
  "slots": [],
@@ -7590,6 +9007,24 @@
7590
9007
  "type": "boolean"
7591
9008
  }
7592
9009
  },
9010
+ {
9011
+ "name": "mode",
9012
+ "description": "The mode determines the platform behaviors of the component.",
9013
+ "required": false,
9014
+ "value": {
9015
+ "kind": "expression",
9016
+ "type": "\"ios\" | \"md\""
9017
+ }
9018
+ },
9019
+ {
9020
+ "name": "theme",
9021
+ "description": "The theme determines the visual appearance of the component.",
9022
+ "required": false,
9023
+ "value": {
9024
+ "kind": "expression",
9025
+ "type": "\"ios\" | \"md\" | \"ionic\""
9026
+ }
9027
+ },
7593
9028
  {
7594
9029
  "name": "when",
7595
9030
  "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.",
@@ -7633,6 +9068,15 @@
7633
9068
  "type": "Function | HTMLElement | null | string | undefined"
7634
9069
  }
7635
9070
  },
9071
+ {
9072
+ "name": "mode",
9073
+ "description": "The mode determines the platform behaviors of the component.",
9074
+ "required": false,
9075
+ "value": {
9076
+ "kind": "expression",
9077
+ "type": "\"ios\" | \"md\""
9078
+ }
9079
+ },
7636
9080
  {
7637
9081
  "name": "tab",
7638
9082
  "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.",
@@ -7641,6 +9085,15 @@
7641
9085
  "kind": "expression",
7642
9086
  "type": "string"
7643
9087
  }
9088
+ },
9089
+ {
9090
+ "name": "theme",
9091
+ "description": "The theme determines the visual appearance of the component.",
9092
+ "required": false,
9093
+ "value": {
9094
+ "kind": "expression",
9095
+ "type": "\"ios\" | \"md\" | \"ionic\""
9096
+ }
7644
9097
  }
7645
9098
  ],
7646
9099
  "slots": [],
@@ -7664,15 +9117,34 @@
7664
9117
  "type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
7665
9118
  }
7666
9119
  },
9120
+ {
9121
+ "name": "expand",
9122
+ "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\"`.",
9123
+ "required": false,
9124
+ "default": "'full'",
9125
+ "value": {
9126
+ "kind": "expression",
9127
+ "type": "\"compact\" | \"full\""
9128
+ }
9129
+ },
7667
9130
  {
7668
9131
  "name": "mode",
7669
- "description": "The mode determines which platform styles to use.",
9132
+ "description": "The mode determines the platform behaviors of the component.",
7670
9133
  "required": false,
7671
9134
  "value": {
7672
9135
  "kind": "expression",
7673
9136
  "type": "\"ios\" | \"md\""
7674
9137
  }
7675
9138
  },
9139
+ {
9140
+ "name": "scroll-effect",
9141
+ "description": "Describes the scroll effect that will be applied to the tab bar.\n`\"hide\"` slides the tab bar out of view when scrolling down and back in\nwhen scrolling up.\n\nNote: `\"hide\"` is ignored when the tab bar is nested inside an\n`ion-footer` to avoid leaving an empty footer visible on screen.\nSet `scroll-effect=\"hide\"` on the footer instead so the entire\nfooter hides together.",
9142
+ "required": false,
9143
+ "value": {
9144
+ "kind": "expression",
9145
+ "type": "\"hide\" | undefined"
9146
+ }
9147
+ },
7676
9148
  {
7677
9149
  "name": "selected-tab",
7678
9150
  "description": "The selected tab component",
@@ -7682,9 +9154,27 @@
7682
9154
  "type": "string | undefined"
7683
9155
  }
7684
9156
  },
9157
+ {
9158
+ "name": "shape",
9159
+ "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.",
9160
+ "required": false,
9161
+ "value": {
9162
+ "kind": "expression",
9163
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
9164
+ }
9165
+ },
9166
+ {
9167
+ "name": "theme",
9168
+ "description": "The theme determines the visual appearance of the component.",
9169
+ "required": false,
9170
+ "value": {
9171
+ "kind": "expression",
9172
+ "type": "\"ios\" | \"md\" | \"ionic\""
9173
+ }
9174
+ },
7685
9175
  {
7686
9176
  "name": "translucent",
7687
- "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).",
9177
+ "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).",
7688
9178
  "required": false,
7689
9179
  "default": "false",
7690
9180
  "value": {
@@ -7744,7 +9234,7 @@
7744
9234
  },
7745
9235
  {
7746
9236
  "name": "mode",
7747
- "description": "The mode determines which platform styles to use.",
9237
+ "description": "The mode determines the platform behaviors of the component.",
7748
9238
  "required": false,
7749
9239
  "value": {
7750
9240
  "kind": "expression",
@@ -7770,6 +9260,15 @@
7770
9260
  "type": "boolean"
7771
9261
  }
7772
9262
  },
9263
+ {
9264
+ "name": "shape",
9265
+ "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.",
9266
+ "required": false,
9267
+ "value": {
9268
+ "kind": "expression",
9269
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
9270
+ }
9271
+ },
7773
9272
  {
7774
9273
  "name": "tab",
7775
9274
  "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.",
@@ -7787,6 +9286,15 @@
7787
9286
  "kind": "expression",
7788
9287
  "type": "string | undefined"
7789
9288
  }
9289
+ },
9290
+ {
9291
+ "name": "theme",
9292
+ "description": "The theme determines the visual appearance of the component.",
9293
+ "required": false,
9294
+ "value": {
9295
+ "kind": "expression",
9296
+ "type": "\"ios\" | \"md\" | \"ionic\""
9297
+ }
7790
9298
  }
7791
9299
  ],
7792
9300
  "slots": [],
@@ -7800,7 +9308,26 @@
7800
9308
  "module": "@ionic/core/src/components/tabs/tabs.d.ts",
7801
9309
  "symbol": "Tabs"
7802
9310
  },
7803
- "attributes": [],
9311
+ "attributes": [
9312
+ {
9313
+ "name": "mode",
9314
+ "description": "The mode determines the platform behaviors of the component.",
9315
+ "required": false,
9316
+ "value": {
9317
+ "kind": "expression",
9318
+ "type": "\"ios\" | \"md\""
9319
+ }
9320
+ },
9321
+ {
9322
+ "name": "theme",
9323
+ "description": "The theme determines the visual appearance of the component.",
9324
+ "required": false,
9325
+ "value": {
9326
+ "kind": "expression",
9327
+ "type": "\"ios\" | \"md\" | \"ionic\""
9328
+ }
9329
+ }
9330
+ ],
7804
9331
  "slots": [
7805
9332
  {
7806
9333
  "name": "default",
@@ -7858,12 +9385,21 @@
7858
9385
  },
7859
9386
  {
7860
9387
  "name": "mode",
7861
- "description": "The mode determines which platform styles to use.",
9388
+ "description": "The mode determines the platform behaviors of the component.",
7862
9389
  "required": false,
7863
9390
  "value": {
7864
9391
  "kind": "expression",
7865
9392
  "type": "\"ios\" | \"md\""
7866
9393
  }
9394
+ },
9395
+ {
9396
+ "name": "theme",
9397
+ "description": "The theme determines the visual appearance of the component.",
9398
+ "required": false,
9399
+ "value": {
9400
+ "kind": "expression",
9401
+ "type": "\"ios\" | \"md\" | \"ionic\""
9402
+ }
7867
9403
  }
7868
9404
  ],
7869
9405
  "slots": [],
@@ -7994,7 +9530,7 @@
7994
9530
  },
7995
9531
  {
7996
9532
  "name": "fill",
7997
- "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.",
9533
+ "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\"`.",
7998
9534
  "required": false,
7999
9535
  "value": {
8000
9536
  "kind": "expression",
@@ -8058,7 +9594,7 @@
8058
9594
  },
8059
9595
  {
8060
9596
  "name": "mode",
8061
- "description": "The mode determines which platform styles to use.",
9597
+ "description": "The mode determines the platform behaviors of the component.",
8062
9598
  "required": false,
8063
9599
  "value": {
8064
9600
  "kind": "expression",
@@ -8115,11 +9651,21 @@
8115
9651
  },
8116
9652
  {
8117
9653
  "name": "shape",
8118
- "description": "The shape of the textarea. If \"round\" it will have an increased border radius.",
9654
+ "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.",
9655
+ "required": false,
9656
+ "value": {
9657
+ "kind": "expression",
9658
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
9659
+ }
9660
+ },
9661
+ {
9662
+ "name": "size",
9663
+ "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.",
8119
9664
  "required": false,
9665
+ "default": "'medium'",
8120
9666
  "value": {
8121
9667
  "kind": "expression",
8122
- "type": "\"round\" | undefined"
9668
+ "type": "\"large\" | \"medium\" | \"small\" | undefined"
8123
9669
  }
8124
9670
  },
8125
9671
  {
@@ -8132,6 +9678,15 @@
8132
9678
  "type": "boolean"
8133
9679
  }
8134
9680
  },
9681
+ {
9682
+ "name": "theme",
9683
+ "description": "The theme determines the visual appearance of the component.",
9684
+ "required": false,
9685
+ "value": {
9686
+ "kind": "expression",
9687
+ "type": "\"ios\" | \"md\" | \"ionic\""
9688
+ }
9689
+ },
8135
9690
  {
8136
9691
  "name": "value",
8137
9692
  "description": "The value of the textarea.",
@@ -8217,7 +9772,26 @@
8217
9772
  "module": "@ionic/core/src/components/thumbnail/thumbnail.d.ts",
8218
9773
  "symbol": "Thumbnail"
8219
9774
  },
8220
- "attributes": [],
9775
+ "attributes": [
9776
+ {
9777
+ "name": "mode",
9778
+ "description": "The mode determines the platform behaviors of the component.",
9779
+ "required": false,
9780
+ "value": {
9781
+ "kind": "expression",
9782
+ "type": "\"ios\" | \"md\""
9783
+ }
9784
+ },
9785
+ {
9786
+ "name": "theme",
9787
+ "description": "The theme determines the visual appearance of the component.",
9788
+ "required": false,
9789
+ "value": {
9790
+ "kind": "expression",
9791
+ "type": "\"ios\" | \"md\" | \"ionic\""
9792
+ }
9793
+ }
9794
+ ],
8221
9795
  "slots": [],
8222
9796
  "events": []
8223
9797
  },
@@ -8239,6 +9813,15 @@
8239
9813
  "type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
8240
9814
  }
8241
9815
  },
9816
+ {
9817
+ "name": "mode",
9818
+ "description": "The mode determines the platform behaviors of the component.",
9819
+ "required": false,
9820
+ "value": {
9821
+ "kind": "expression",
9822
+ "type": "\"ios\" | \"md\""
9823
+ }
9824
+ },
8242
9825
  {
8243
9826
  "name": "size",
8244
9827
  "description": "The size of the toolbar title.",
@@ -8247,6 +9830,15 @@
8247
9830
  "kind": "expression",
8248
9831
  "type": "\"large\" | \"small\" | undefined"
8249
9832
  }
9833
+ },
9834
+ {
9835
+ "name": "theme",
9836
+ "description": "The theme determines the visual appearance of the component.",
9837
+ "required": false,
9838
+ "value": {
9839
+ "kind": "expression",
9840
+ "type": "\"ios\" | \"md\" | \"ionic\""
9841
+ }
8250
9842
  }
8251
9843
  ],
8252
9844
  "slots": [],
@@ -8335,6 +9927,16 @@
8335
9927
  "type": "undefined | { [key: string]: any; }"
8336
9928
  }
8337
9929
  },
9930
+ {
9931
+ "name": "hue",
9932
+ "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.",
9933
+ "required": false,
9934
+ "default": "'subtle'",
9935
+ "value": {
9936
+ "kind": "expression",
9937
+ "type": "\"bold\" | \"subtle\" | undefined"
9938
+ }
9939
+ },
8338
9940
  {
8339
9941
  "name": "icon",
8340
9942
  "description": "The name of the icon to display, or the path to a valid SVG file. See `ion-icon`.\nhttps://ionic.io/ionicons",
@@ -8394,7 +9996,7 @@
8394
9996
  },
8395
9997
  {
8396
9998
  "name": "mode",
8397
- "description": "The mode determines which platform styles to use.",
9999
+ "description": "The mode determines the platform behaviors of the component.",
8398
10000
  "required": false,
8399
10001
  "value": {
8400
10002
  "kind": "expression",
@@ -8420,6 +10022,15 @@
8420
10022
  "type": "HTMLElement | string | undefined"
8421
10023
  }
8422
10024
  },
10025
+ {
10026
+ "name": "shape",
10027
+ "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.",
10028
+ "required": false,
10029
+ "value": {
10030
+ "kind": "expression",
10031
+ "type": "\"rectangular\" | \"round\" | \"soft\" | undefined"
10032
+ }
10033
+ },
8423
10034
  {
8424
10035
  "name": "swipe-gesture",
8425
10036
  "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.",
@@ -8429,9 +10040,18 @@
8429
10040
  "type": "\"vertical\" | undefined"
8430
10041
  }
8431
10042
  },
10043
+ {
10044
+ "name": "theme",
10045
+ "description": "The theme determines the visual appearance of the component.",
10046
+ "required": false,
10047
+ "value": {
10048
+ "kind": "expression",
10049
+ "type": "\"ios\" | \"md\" | \"ionic\""
10050
+ }
10051
+ },
8432
10052
  {
8433
10053
  "name": "translucent",
8434
- "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).",
10054
+ "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).",
8435
10055
  "required": false,
8436
10056
  "default": "false",
8437
10057
  "value": {
@@ -8629,7 +10249,7 @@
8629
10249
  },
8630
10250
  {
8631
10251
  "name": "mode",
8632
- "description": "The mode determines which platform styles to use.",
10252
+ "description": "The mode determines the platform behaviors of the component.",
8633
10253
  "required": false,
8634
10254
  "value": {
8635
10255
  "kind": "expression",
@@ -8656,6 +10276,15 @@
8656
10276
  "type": "boolean"
8657
10277
  }
8658
10278
  },
10279
+ {
10280
+ "name": "theme",
10281
+ "description": "The theme determines the visual appearance of the component.",
10282
+ "required": false,
10283
+ "value": {
10284
+ "kind": "expression",
10285
+ "type": "\"ios\" | \"md\" | \"ionic\""
10286
+ }
10287
+ },
8659
10288
  {
8660
10289
  "name": "value",
8661
10290
  "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>`.",
@@ -8726,12 +10355,30 @@
8726
10355
  },
8727
10356
  {
8728
10357
  "name": "mode",
8729
- "description": "The mode determines which platform styles to use.",
10358
+ "description": "The mode determines the platform behaviors of the component.",
8730
10359
  "required": false,
8731
10360
  "value": {
8732
10361
  "kind": "expression",
8733
10362
  "type": "\"ios\" | \"md\""
8734
10363
  }
10364
+ },
10365
+ {
10366
+ "name": "theme",
10367
+ "description": "The theme determines the visual appearance of the component.",
10368
+ "required": false,
10369
+ "value": {
10370
+ "kind": "expression",
10371
+ "type": "\"ios\" | \"md\" | \"ionic\""
10372
+ }
10373
+ },
10374
+ {
10375
+ "name": "title-placement",
10376
+ "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.",
10377
+ "required": false,
10378
+ "value": {
10379
+ "kind": "expression",
10380
+ "type": "\"center\" | \"end\" | \"start\" | undefined"
10381
+ }
8735
10382
  }
8736
10383
  ],
8737
10384
  "slots": [
@@ -8745,11 +10392,11 @@
8745
10392
  },
8746
10393
  {
8747
10394
  "name": "primary",
8748
- "description": "Content is placed to the right of the toolbar text in `ios` mode, and to the far right in `md` mode."
10395
+ "description": "Content is placed to the right of the toolbar text in the `\"ios\"` theme, and to the far right in the `\"md\"` theme."
8749
10396
  },
8750
10397
  {
8751
10398
  "name": "secondary",
8752
- "description": "Content is placed to the left of the toolbar text in `ios` mode, and directly to the right in `md` mode."
10399
+ "description": "Content is placed to the left of the toolbar text in the `\"ios\"` theme, and directly to the right in the `\"md\"` theme."
8753
10400
  },
8754
10401
  {
8755
10402
  "name": "start",