@ionic/docs 8.8.18-dev.11786108988.1fd94742 → 8.8.18-dev.11786109471.1285bcfb

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 (2) hide show
  1. package/core.json +1267 -551
  2. package/package.json +1 -1
package/core.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2026-08-07T13:25:09",
2
+ "timestamp": "2026-08-07T13:32:45",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.43.5",
@@ -3358,6 +3358,7 @@
3358
3358
  "ion-loading",
3359
3359
  "ion-menu",
3360
3360
  "ion-modal",
3361
+ "ion-picker-legacy",
3361
3362
  "ion-popover"
3362
3363
  ],
3363
3364
  "dependencies": [],
@@ -3377,6 +3378,9 @@
3377
3378
  "ion-modal": [
3378
3379
  "ion-backdrop"
3379
3380
  ],
3381
+ "ion-picker-legacy": [
3382
+ "ion-backdrop"
3383
+ ],
3380
3384
  "ion-popover": [
3381
3385
  "ion-backdrop"
3382
3386
  ]
@@ -8616,7 +8620,13 @@
8616
8620
  "attr": "color",
8617
8621
  "reflectToAttr": false,
8618
8622
  "docs": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
8619
- "docsTags": [],
8623
+ "docsTags": [
8624
+ {
8625
+ "name": "default",
8626
+ "text": "'primary'"
8627
+ }
8628
+ ],
8629
+ "default": "'primary'",
8620
8630
  "values": [
8621
8631
  {
8622
8632
  "value": "danger",
@@ -10014,7 +10024,13 @@
10014
10024
  "attr": "color",
10015
10025
  "reflectToAttr": true,
10016
10026
  "docs": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
10017
- "docsTags": [],
10027
+ "docsTags": [
10028
+ {
10029
+ "name": "default",
10030
+ "text": "'primary'"
10031
+ }
10032
+ ],
10033
+ "default": "'primary'",
10018
10034
  "values": [
10019
10035
  {
10020
10036
  "value": "danger",
@@ -11635,9 +11651,6 @@
11635
11651
  "tag": "ion-img",
11636
11652
  "docs": "",
11637
11653
  "docsTags": [
11638
- {
11639
- "name": "deprecated"
11640
- },
11641
11654
  {
11642
11655
  "name": "part",
11643
11656
  "text": "image - The inner `img` element."
@@ -11755,8 +11768,7 @@
11755
11768
  "states": [],
11756
11769
  "dependents": [],
11757
11770
  "dependencies": [],
11758
- "dependencyGraph": {},
11759
- "deprecation": ""
11771
+ "dependencyGraph": {}
11760
11772
  },
11761
11773
  {
11762
11774
  "filePath": "src/components/infinite-scroll/infinite-scroll.tsx",
@@ -12344,10 +12356,10 @@
12344
12356
  },
12345
12357
  {
12346
12358
  "name": "autocorrect",
12347
- "type": "boolean",
12359
+ "type": "\"off\" | \"on\"",
12348
12360
  "complexType": {
12349
- "original": "boolean",
12350
- "resolved": "boolean",
12361
+ "original": "'on' | 'off'",
12362
+ "resolved": "\"off\" | \"on\"",
12351
12363
  "references": {}
12352
12364
  },
12353
12365
  "mutable": false,
@@ -12357,13 +12369,18 @@
12357
12369
  "docsTags": [
12358
12370
  {
12359
12371
  "name": "default",
12360
- "text": "false"
12372
+ "text": "'off'"
12361
12373
  }
12362
12374
  ],
12363
- "default": "false",
12375
+ "default": "'off'",
12364
12376
  "values": [
12365
12377
  {
12366
- "type": "boolean"
12378
+ "value": "off",
12379
+ "type": "string"
12380
+ },
12381
+ {
12382
+ "value": "on",
12383
+ "type": "string"
12367
12384
  }
12368
12385
  ],
12369
12386
  "optional": false,
@@ -19831,14 +19848,14 @@
19831
19848
  "mutable": false,
19832
19849
  "attr": "handle-behavior",
19833
19850
  "reflectToAttr": false,
19834
- "docs": "The interaction behavior for the sheet modal when the handle is pressed.\n\nHandle behavior is unavailable when the `handle` property is set to\n`false` or when the `breakpoints` property is not set (using a\nfullscreen or card modal).\n\nSet to `\"cycle\"` to make the handle focusable and let the sheet modal\ncycle between available breakpoints when pressed. This keeps the sheet\noperable with assistive technology.\n\nSet to `\"none\"` to make the handle purely decorative when pressed and\nremoved from the tab order.\n\nDefaults to `\"cycle\"`.",
19851
+ "docs": "The interaction behavior for the sheet modal when the handle is pressed.\n\nDefaults to `\"none\"`, which means the modal will not change size or position when the handle is pressed.\nSet to `\"cycle\"` to let the modal cycle between available breakpoints when pressed.\n\nHandle behavior is unavailable when the `handle` property is set to `false` or\nwhen the `breakpoints` property is not set (using a fullscreen or card modal).",
19835
19852
  "docsTags": [
19836
19853
  {
19837
19854
  "name": "default",
19838
- "text": "'cycle'"
19855
+ "text": "'none'"
19839
19856
  }
19840
19857
  ],
19841
- "default": "'cycle'",
19858
+ "default": "'none'",
19842
19859
  "values": [
19843
19860
  {
19844
19861
  "value": "cycle",
@@ -22440,235 +22457,247 @@
22440
22457
  "attr": "color",
22441
22458
  "reflectToAttr": true,
22442
22459
  "docs": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
22443
- "docsTags": [],
22444
- "values": [
22445
- {
22446
- "value": "danger",
22447
- "type": "string"
22448
- },
22449
- {
22450
- "value": "dark",
22451
- "type": "string"
22452
- },
22453
- {
22454
- "value": "light",
22455
- "type": "string"
22456
- },
22457
- {
22458
- "value": "medium",
22459
- "type": "string"
22460
- },
22461
- {
22462
- "value": "primary",
22463
- "type": "string"
22464
- },
22465
- {
22466
- "value": "secondary",
22467
- "type": "string"
22468
- },
22469
- {
22470
- "value": "success",
22471
- "type": "string"
22472
- },
22473
- {
22474
- "value": "tertiary",
22475
- "type": "string"
22476
- },
22477
- {
22478
- "value": "warning",
22479
- "type": "string"
22480
- },
22481
- {
22482
- "type": "string & Record<never, never>"
22483
- },
22484
- {
22485
- "type": "undefined"
22486
- }
22487
- ],
22488
- "optional": true,
22489
- "required": false,
22490
- "getter": false,
22491
- "setter": false
22492
- },
22493
- {
22494
- "name": "disabled",
22495
- "type": "boolean",
22496
- "complexType": {
22497
- "original": "boolean",
22498
- "resolved": "boolean",
22499
- "references": {}
22500
- },
22501
- "mutable": false,
22502
- "attr": "disabled",
22503
- "reflectToAttr": false,
22504
- "docs": "If `true`, the user cannot interact with the picker.",
22505
22460
  "docsTags": [
22506
22461
  {
22507
22462
  "name": "default",
22508
- "text": "false"
22509
- }
22510
- ],
22511
- "default": "false",
22512
- "values": [
22513
- {
22514
- "type": "boolean"
22515
- }
22516
- ],
22517
- "optional": false,
22518
- "required": false,
22519
- "getter": false,
22520
- "setter": false
22521
- },
22522
- {
22523
- "name": "mode",
22524
- "type": "\"ios\" | \"md\"",
22525
- "mutable": false,
22526
- "attr": "mode",
22527
- "reflectToAttr": false,
22528
- "docs": "The mode determines which platform styles to use.",
22529
- "docsTags": [],
22530
- "values": [
22531
- {
22532
- "value": "ios",
22533
- "type": "string"
22534
- },
22535
- {
22536
- "value": "md",
22537
- "type": "string"
22463
+ "text": "'primary'"
22538
22464
  }
22539
22465
  ],
22540
- "optional": true,
22541
- "required": false
22542
- },
22543
- {
22544
- "name": "value",
22545
- "type": "number | string | undefined",
22546
- "complexType": {
22547
- "original": "string | number",
22548
- "resolved": "number | string | undefined",
22549
- "references": {}
22550
- },
22551
- "mutable": true,
22552
- "attr": "value",
22553
- "reflectToAttr": false,
22554
- "docs": "The selected option in the picker.",
22555
- "docsTags": [],
22556
- "values": [
22557
- {
22558
- "type": "number"
22559
- },
22560
- {
22561
- "type": "string"
22562
- },
22563
- {
22564
- "type": "undefined"
22565
- }
22566
- ],
22567
- "optional": true,
22568
- "required": false,
22569
- "getter": false,
22570
- "setter": false
22571
- }
22572
- ],
22573
- "methods": [
22574
- {
22575
- "name": "setFocus",
22576
- "returns": {
22577
- "type": "Promise<void>",
22578
- "docs": ""
22579
- },
22580
- "complexType": {
22581
- "signature": "() => Promise<void>",
22582
- "parameters": [],
22583
- "references": {
22584
- "Promise": {
22585
- "location": "global",
22586
- "id": "global::Promise"
22587
- }
22588
- },
22589
- "return": "Promise<void>"
22590
- },
22591
- "signature": "setFocus() => Promise<void>",
22592
- "parameters": [],
22593
- "docs": "Sets focus on the scrollable container within the picker column.\nUse this method instead of the global `pickerColumn.focus()`.",
22594
- "docsTags": []
22595
- }
22596
- ],
22597
- "events": [
22598
- {
22599
- "event": "ionChange",
22600
- "detail": "PickerColumnChangeEventDetail",
22601
- "bubbles": true,
22602
- "complexType": {
22603
- "original": "PickerColumnChangeEventDetail",
22604
- "resolved": "PickerColumnChangeEventDetail",
22605
- "references": {
22606
- "PickerColumnChangeEventDetail": {
22607
- "location": "import",
22608
- "path": "./picker-column-interfaces",
22609
- "id": "src/components/picker-column/picker-column-interfaces.ts::PickerColumnChangeEventDetail",
22610
- "referenceLocation": "PickerColumnChangeEventDetail"
22611
- }
22612
- }
22613
- },
22614
- "cancelable": true,
22615
- "composed": true,
22616
- "docs": "Emitted when the value has changed.\n\nThis event will not emit when programmatically setting the `value` property.",
22617
- "docsTags": []
22618
- }
22619
- ],
22620
- "listeners": [],
22621
- "styles": [],
22622
- "slots": [
22623
- {
22624
- "name": "prefix",
22625
- "docs": "Content to show on the left side of the picker options."
22626
- },
22627
- {
22628
- "name": "suffix",
22629
- "docs": "Content to show on the right side of the picker options."
22630
- }
22631
- ],
22632
- "parts": [],
22633
- "states": [],
22634
- "dependents": [
22635
- "ion-datetime"
22636
- ],
22637
- "dependencies": [],
22638
- "dependencyGraph": {
22639
- "ion-datetime": [
22640
- "ion-picker-column"
22641
- ]
22642
- }
22643
- },
22644
- {
22645
- "filePath": "src/components/picker-column-option/picker-column-option.tsx",
22646
- "encapsulation": "shadow",
22647
- "tag": "ion-picker-column-option",
22648
- "docs": "",
22649
- "docsTags": [],
22650
- "usage": {},
22651
- "props": [
22652
- {
22653
- "name": "color",
22654
- "type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
22655
- "complexType": {
22656
- "original": "Color",
22657
- "resolved": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
22658
- "references": {
22659
- "Color": {
22660
- "location": "import",
22661
- "path": "../../interface",
22662
- "id": "src/interface.d.ts::Color",
22663
- "referenceLocation": "Color"
22664
- }
22665
- }
22666
- },
22667
- "mutable": false,
22668
- "attr": "color",
22669
- "reflectToAttr": true,
22670
- "docs": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
22671
- "docsTags": [],
22466
+ "default": "'primary'",
22467
+ "values": [
22468
+ {
22469
+ "value": "danger",
22470
+ "type": "string"
22471
+ },
22472
+ {
22473
+ "value": "dark",
22474
+ "type": "string"
22475
+ },
22476
+ {
22477
+ "value": "light",
22478
+ "type": "string"
22479
+ },
22480
+ {
22481
+ "value": "medium",
22482
+ "type": "string"
22483
+ },
22484
+ {
22485
+ "value": "primary",
22486
+ "type": "string"
22487
+ },
22488
+ {
22489
+ "value": "secondary",
22490
+ "type": "string"
22491
+ },
22492
+ {
22493
+ "value": "success",
22494
+ "type": "string"
22495
+ },
22496
+ {
22497
+ "value": "tertiary",
22498
+ "type": "string"
22499
+ },
22500
+ {
22501
+ "value": "warning",
22502
+ "type": "string"
22503
+ },
22504
+ {
22505
+ "type": "string & Record<never, never>"
22506
+ },
22507
+ {
22508
+ "type": "undefined"
22509
+ }
22510
+ ],
22511
+ "optional": true,
22512
+ "required": false,
22513
+ "getter": false,
22514
+ "setter": false
22515
+ },
22516
+ {
22517
+ "name": "disabled",
22518
+ "type": "boolean",
22519
+ "complexType": {
22520
+ "original": "boolean",
22521
+ "resolved": "boolean",
22522
+ "references": {}
22523
+ },
22524
+ "mutable": false,
22525
+ "attr": "disabled",
22526
+ "reflectToAttr": false,
22527
+ "docs": "If `true`, the user cannot interact with the picker.",
22528
+ "docsTags": [
22529
+ {
22530
+ "name": "default",
22531
+ "text": "false"
22532
+ }
22533
+ ],
22534
+ "default": "false",
22535
+ "values": [
22536
+ {
22537
+ "type": "boolean"
22538
+ }
22539
+ ],
22540
+ "optional": false,
22541
+ "required": false,
22542
+ "getter": false,
22543
+ "setter": false
22544
+ },
22545
+ {
22546
+ "name": "mode",
22547
+ "type": "\"ios\" | \"md\"",
22548
+ "mutable": false,
22549
+ "attr": "mode",
22550
+ "reflectToAttr": false,
22551
+ "docs": "The mode determines which platform styles to use.",
22552
+ "docsTags": [],
22553
+ "values": [
22554
+ {
22555
+ "value": "ios",
22556
+ "type": "string"
22557
+ },
22558
+ {
22559
+ "value": "md",
22560
+ "type": "string"
22561
+ }
22562
+ ],
22563
+ "optional": true,
22564
+ "required": false
22565
+ },
22566
+ {
22567
+ "name": "value",
22568
+ "type": "number | string | undefined",
22569
+ "complexType": {
22570
+ "original": "string | number",
22571
+ "resolved": "number | string | undefined",
22572
+ "references": {}
22573
+ },
22574
+ "mutable": true,
22575
+ "attr": "value",
22576
+ "reflectToAttr": false,
22577
+ "docs": "The selected option in the picker.",
22578
+ "docsTags": [],
22579
+ "values": [
22580
+ {
22581
+ "type": "number"
22582
+ },
22583
+ {
22584
+ "type": "string"
22585
+ },
22586
+ {
22587
+ "type": "undefined"
22588
+ }
22589
+ ],
22590
+ "optional": true,
22591
+ "required": false,
22592
+ "getter": false,
22593
+ "setter": false
22594
+ }
22595
+ ],
22596
+ "methods": [
22597
+ {
22598
+ "name": "setFocus",
22599
+ "returns": {
22600
+ "type": "Promise<void>",
22601
+ "docs": ""
22602
+ },
22603
+ "complexType": {
22604
+ "signature": "() => Promise<void>",
22605
+ "parameters": [],
22606
+ "references": {
22607
+ "Promise": {
22608
+ "location": "global",
22609
+ "id": "global::Promise"
22610
+ }
22611
+ },
22612
+ "return": "Promise<void>"
22613
+ },
22614
+ "signature": "setFocus() => Promise<void>",
22615
+ "parameters": [],
22616
+ "docs": "Sets focus on the scrollable container within the picker column.\nUse this method instead of the global `pickerColumn.focus()`.",
22617
+ "docsTags": []
22618
+ }
22619
+ ],
22620
+ "events": [
22621
+ {
22622
+ "event": "ionChange",
22623
+ "detail": "PickerColumnChangeEventDetail",
22624
+ "bubbles": true,
22625
+ "complexType": {
22626
+ "original": "PickerColumnChangeEventDetail",
22627
+ "resolved": "PickerColumnChangeEventDetail",
22628
+ "references": {
22629
+ "PickerColumnChangeEventDetail": {
22630
+ "location": "import",
22631
+ "path": "./picker-column-interfaces",
22632
+ "id": "src/components/picker-column/picker-column-interfaces.ts::PickerColumnChangeEventDetail",
22633
+ "referenceLocation": "PickerColumnChangeEventDetail"
22634
+ }
22635
+ }
22636
+ },
22637
+ "cancelable": true,
22638
+ "composed": true,
22639
+ "docs": "Emitted when the value has changed.\n\nThis event will not emit when programmatically setting the `value` property.",
22640
+ "docsTags": []
22641
+ }
22642
+ ],
22643
+ "listeners": [],
22644
+ "styles": [],
22645
+ "slots": [
22646
+ {
22647
+ "name": "prefix",
22648
+ "docs": "Content to show on the left side of the picker options."
22649
+ },
22650
+ {
22651
+ "name": "suffix",
22652
+ "docs": "Content to show on the right side of the picker options."
22653
+ }
22654
+ ],
22655
+ "parts": [],
22656
+ "states": [],
22657
+ "dependents": [
22658
+ "ion-datetime"
22659
+ ],
22660
+ "dependencies": [],
22661
+ "dependencyGraph": {
22662
+ "ion-datetime": [
22663
+ "ion-picker-column"
22664
+ ]
22665
+ }
22666
+ },
22667
+ {
22668
+ "filePath": "src/components/picker-column-option/picker-column-option.tsx",
22669
+ "encapsulation": "shadow",
22670
+ "tag": "ion-picker-column-option",
22671
+ "docs": "",
22672
+ "docsTags": [],
22673
+ "usage": {},
22674
+ "props": [
22675
+ {
22676
+ "name": "color",
22677
+ "type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
22678
+ "complexType": {
22679
+ "original": "Color",
22680
+ "resolved": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined",
22681
+ "references": {
22682
+ "Color": {
22683
+ "location": "import",
22684
+ "path": "../../interface",
22685
+ "id": "src/interface.d.ts::Color",
22686
+ "referenceLocation": "Color"
22687
+ }
22688
+ }
22689
+ },
22690
+ "mutable": false,
22691
+ "attr": "color",
22692
+ "reflectToAttr": true,
22693
+ "docs": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
22694
+ "docsTags": [
22695
+ {
22696
+ "name": "default",
22697
+ "text": "'primary'"
22698
+ }
22699
+ ],
22700
+ "default": "'primary'",
22672
22701
  "values": [
22673
22702
  {
22674
22703
  "value": "danger",
@@ -22735,56 +22764,981 @@
22735
22764
  "name": "default",
22736
22765
  "text": "false"
22737
22766
  }
22738
- ],
22739
- "default": "false",
22740
- "values": [
22741
- {
22742
- "type": "boolean"
22767
+ ],
22768
+ "default": "false",
22769
+ "values": [
22770
+ {
22771
+ "type": "boolean"
22772
+ }
22773
+ ],
22774
+ "optional": false,
22775
+ "required": false,
22776
+ "getter": false,
22777
+ "setter": false
22778
+ },
22779
+ {
22780
+ "name": "value",
22781
+ "type": "any",
22782
+ "complexType": {
22783
+ "original": "any | null",
22784
+ "resolved": "any",
22785
+ "references": {}
22786
+ },
22787
+ "mutable": false,
22788
+ "attr": "value",
22789
+ "reflectToAttr": false,
22790
+ "docs": "The text value of the option.",
22791
+ "docsTags": [],
22792
+ "values": [
22793
+ {
22794
+ "type": "any"
22795
+ }
22796
+ ],
22797
+ "optional": true,
22798
+ "required": false,
22799
+ "getter": false,
22800
+ "setter": false
22801
+ }
22802
+ ],
22803
+ "methods": [],
22804
+ "events": [],
22805
+ "listeners": [],
22806
+ "styles": [],
22807
+ "slots": [],
22808
+ "parts": [],
22809
+ "states": [],
22810
+ "dependents": [
22811
+ "ion-datetime"
22812
+ ],
22813
+ "dependencies": [],
22814
+ "dependencyGraph": {
22815
+ "ion-datetime": [
22816
+ "ion-picker-column-option"
22817
+ ]
22818
+ }
22819
+ },
22820
+ {
22821
+ "filePath": "src/components/picker-legacy/picker.tsx",
22822
+ "encapsulation": "scoped",
22823
+ "tag": "ion-picker-legacy",
22824
+ "docs": "",
22825
+ "docsTags": [
22826
+ {
22827
+ "name": "virtualProp",
22828
+ "text": "{\"ios\" | \"md\"} mode - The mode determines which platform styles to use."
22829
+ }
22830
+ ],
22831
+ "usage": {},
22832
+ "props": [
22833
+ {
22834
+ "name": "animated",
22835
+ "type": "boolean",
22836
+ "complexType": {
22837
+ "original": "boolean",
22838
+ "resolved": "boolean",
22839
+ "references": {}
22840
+ },
22841
+ "mutable": false,
22842
+ "attr": "animated",
22843
+ "reflectToAttr": false,
22844
+ "docs": "If `true`, the picker will animate.",
22845
+ "docsTags": [
22846
+ {
22847
+ "name": "default",
22848
+ "text": "true"
22849
+ }
22850
+ ],
22851
+ "default": "true",
22852
+ "values": [
22853
+ {
22854
+ "type": "boolean"
22855
+ }
22856
+ ],
22857
+ "optional": false,
22858
+ "required": false,
22859
+ "getter": false,
22860
+ "setter": false
22861
+ },
22862
+ {
22863
+ "name": "backdropDismiss",
22864
+ "type": "boolean",
22865
+ "complexType": {
22866
+ "original": "boolean",
22867
+ "resolved": "boolean",
22868
+ "references": {}
22869
+ },
22870
+ "mutable": false,
22871
+ "attr": "backdrop-dismiss",
22872
+ "reflectToAttr": false,
22873
+ "docs": "If `true`, the picker will be dismissed when the backdrop is clicked.",
22874
+ "docsTags": [
22875
+ {
22876
+ "name": "default",
22877
+ "text": "true"
22878
+ }
22879
+ ],
22880
+ "default": "true",
22881
+ "values": [
22882
+ {
22883
+ "type": "boolean"
22884
+ }
22885
+ ],
22886
+ "optional": false,
22887
+ "required": false,
22888
+ "getter": false,
22889
+ "setter": false
22890
+ },
22891
+ {
22892
+ "name": "buttons",
22893
+ "type": "PickerButton[]",
22894
+ "complexType": {
22895
+ "original": "PickerButton[]",
22896
+ "resolved": "PickerButton[]",
22897
+ "references": {
22898
+ "PickerButton": {
22899
+ "location": "import",
22900
+ "path": "./picker-interface",
22901
+ "id": "src/components/picker-legacy/picker-interface.ts::PickerButton",
22902
+ "referenceLocation": "PickerButton"
22903
+ }
22904
+ }
22905
+ },
22906
+ "mutable": false,
22907
+ "reflectToAttr": false,
22908
+ "docs": "Array of buttons to be displayed at the top of the picker.",
22909
+ "docsTags": [
22910
+ {
22911
+ "name": "default",
22912
+ "text": "[]"
22913
+ }
22914
+ ],
22915
+ "default": "[]",
22916
+ "values": [
22917
+ {
22918
+ "type": "PickerButton[]"
22919
+ }
22920
+ ],
22921
+ "optional": false,
22922
+ "required": false,
22923
+ "getter": false,
22924
+ "setter": false
22925
+ },
22926
+ {
22927
+ "name": "columns",
22928
+ "type": "PickerColumn[]",
22929
+ "complexType": {
22930
+ "original": "PickerColumn[]",
22931
+ "resolved": "PickerColumn[]",
22932
+ "references": {
22933
+ "PickerColumn": {
22934
+ "location": "import",
22935
+ "path": "./picker-interface",
22936
+ "id": "src/components/picker-legacy/picker-interface.ts::PickerColumn",
22937
+ "referenceLocation": "PickerColumn"
22938
+ }
22939
+ }
22940
+ },
22941
+ "mutable": false,
22942
+ "reflectToAttr": false,
22943
+ "docs": "Array of columns to be displayed in the picker.",
22944
+ "docsTags": [
22945
+ {
22946
+ "name": "default",
22947
+ "text": "[]"
22948
+ }
22949
+ ],
22950
+ "default": "[]",
22951
+ "values": [
22952
+ {
22953
+ "type": "PickerColumn[]"
22954
+ }
22955
+ ],
22956
+ "optional": false,
22957
+ "required": false,
22958
+ "getter": false,
22959
+ "setter": false
22960
+ },
22961
+ {
22962
+ "name": "cssClass",
22963
+ "type": "string | string[] | undefined",
22964
+ "complexType": {
22965
+ "original": "string | string[]",
22966
+ "resolved": "string | string[] | undefined",
22967
+ "references": {}
22968
+ },
22969
+ "mutable": false,
22970
+ "attr": "css-class",
22971
+ "reflectToAttr": false,
22972
+ "docs": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces.",
22973
+ "docsTags": [],
22974
+ "values": [
22975
+ {
22976
+ "type": "string"
22977
+ },
22978
+ {
22979
+ "type": "string[]"
22980
+ },
22981
+ {
22982
+ "type": "undefined"
22983
+ }
22984
+ ],
22985
+ "optional": true,
22986
+ "required": false,
22987
+ "getter": false,
22988
+ "setter": false
22989
+ },
22990
+ {
22991
+ "name": "duration",
22992
+ "type": "number",
22993
+ "complexType": {
22994
+ "original": "number",
22995
+ "resolved": "number",
22996
+ "references": {}
22997
+ },
22998
+ "mutable": false,
22999
+ "attr": "duration",
23000
+ "reflectToAttr": false,
23001
+ "docs": "Number of milliseconds to wait before dismissing the picker.",
23002
+ "docsTags": [
23003
+ {
23004
+ "name": "default",
23005
+ "text": "0"
23006
+ }
23007
+ ],
23008
+ "default": "0",
23009
+ "values": [
23010
+ {
23011
+ "type": "number"
23012
+ }
23013
+ ],
23014
+ "optional": false,
23015
+ "required": false,
23016
+ "getter": false,
23017
+ "setter": false
23018
+ },
23019
+ {
23020
+ "name": "enterAnimation",
23021
+ "type": "((baseEl: any, opts?: any) => Animation) | undefined",
23022
+ "complexType": {
23023
+ "original": "AnimationBuilder",
23024
+ "resolved": "((baseEl: any, opts?: any) => Animation) | undefined",
23025
+ "references": {
23026
+ "AnimationBuilder": {
23027
+ "location": "import",
23028
+ "path": "../../interface",
23029
+ "id": "src/interface.d.ts::AnimationBuilder",
23030
+ "referenceLocation": "AnimationBuilder"
23031
+ }
23032
+ }
23033
+ },
23034
+ "mutable": false,
23035
+ "reflectToAttr": false,
23036
+ "docs": "Animation to use when the picker is presented.",
23037
+ "docsTags": [],
23038
+ "values": [
23039
+ {
23040
+ "type": "((baseEl: any, opts?: any) => Animation)"
23041
+ },
23042
+ {
23043
+ "type": "undefined"
23044
+ }
23045
+ ],
23046
+ "optional": true,
23047
+ "required": false,
23048
+ "getter": false,
23049
+ "setter": false
23050
+ },
23051
+ {
23052
+ "name": "htmlAttributes",
23053
+ "type": "undefined | { [key: string]: any; }",
23054
+ "complexType": {
23055
+ "original": "{ [key: string]: any }",
23056
+ "resolved": "undefined | { [key: string]: any; }",
23057
+ "references": {}
23058
+ },
23059
+ "mutable": false,
23060
+ "reflectToAttr": false,
23061
+ "docs": "Additional attributes to pass to the picker.",
23062
+ "docsTags": [],
23063
+ "values": [
23064
+ {
23065
+ "type": "undefined"
23066
+ },
23067
+ {
23068
+ "type": "{ [key: string]: any; }"
23069
+ }
23070
+ ],
23071
+ "optional": true,
23072
+ "required": false,
23073
+ "getter": false,
23074
+ "setter": false
23075
+ },
23076
+ {
23077
+ "name": "isOpen",
23078
+ "type": "boolean",
23079
+ "complexType": {
23080
+ "original": "boolean",
23081
+ "resolved": "boolean",
23082
+ "references": {}
23083
+ },
23084
+ "mutable": false,
23085
+ "attr": "is-open",
23086
+ "reflectToAttr": false,
23087
+ "docs": "If `true`, the picker will open. If `false`, the picker will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the pickerController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe picker dismisses. You will need to do that in your code.",
23088
+ "docsTags": [
23089
+ {
23090
+ "name": "default",
23091
+ "text": "false"
23092
+ }
23093
+ ],
23094
+ "default": "false",
23095
+ "values": [
23096
+ {
23097
+ "type": "boolean"
23098
+ }
23099
+ ],
23100
+ "optional": false,
23101
+ "required": false,
23102
+ "getter": false,
23103
+ "setter": false
23104
+ },
23105
+ {
23106
+ "name": "keyboardClose",
23107
+ "type": "boolean",
23108
+ "complexType": {
23109
+ "original": "boolean",
23110
+ "resolved": "boolean",
23111
+ "references": {}
23112
+ },
23113
+ "mutable": false,
23114
+ "attr": "keyboard-close",
23115
+ "reflectToAttr": false,
23116
+ "docs": "If `true`, the keyboard will be automatically dismissed when the overlay is presented.",
23117
+ "docsTags": [
23118
+ {
23119
+ "name": "default",
23120
+ "text": "true"
23121
+ }
23122
+ ],
23123
+ "default": "true",
23124
+ "values": [
23125
+ {
23126
+ "type": "boolean"
23127
+ }
23128
+ ],
23129
+ "optional": false,
23130
+ "required": false,
23131
+ "getter": false,
23132
+ "setter": false
23133
+ },
23134
+ {
23135
+ "name": "leaveAnimation",
23136
+ "type": "((baseEl: any, opts?: any) => Animation) | undefined",
23137
+ "complexType": {
23138
+ "original": "AnimationBuilder",
23139
+ "resolved": "((baseEl: any, opts?: any) => Animation) | undefined",
23140
+ "references": {
23141
+ "AnimationBuilder": {
23142
+ "location": "import",
23143
+ "path": "../../interface",
23144
+ "id": "src/interface.d.ts::AnimationBuilder",
23145
+ "referenceLocation": "AnimationBuilder"
23146
+ }
23147
+ }
23148
+ },
23149
+ "mutable": false,
23150
+ "reflectToAttr": false,
23151
+ "docs": "Animation to use when the picker is dismissed.",
23152
+ "docsTags": [],
23153
+ "values": [
23154
+ {
23155
+ "type": "((baseEl: any, opts?: any) => Animation)"
23156
+ },
23157
+ {
23158
+ "type": "undefined"
23159
+ }
23160
+ ],
23161
+ "optional": true,
23162
+ "required": false,
23163
+ "getter": false,
23164
+ "setter": false
23165
+ },
23166
+ {
23167
+ "name": "mode",
23168
+ "type": "\"ios\" | \"md\"",
23169
+ "mutable": false,
23170
+ "attr": "mode",
23171
+ "reflectToAttr": false,
23172
+ "docs": "The mode determines which platform styles to use.",
23173
+ "docsTags": [],
23174
+ "values": [
23175
+ {
23176
+ "value": "ios",
23177
+ "type": "string"
23178
+ },
23179
+ {
23180
+ "value": "md",
23181
+ "type": "string"
23182
+ }
23183
+ ],
23184
+ "optional": true,
23185
+ "required": false
23186
+ },
23187
+ {
23188
+ "name": "showBackdrop",
23189
+ "type": "boolean",
23190
+ "complexType": {
23191
+ "original": "boolean",
23192
+ "resolved": "boolean",
23193
+ "references": {}
23194
+ },
23195
+ "mutable": false,
23196
+ "attr": "show-backdrop",
23197
+ "reflectToAttr": false,
23198
+ "docs": "If `true`, a backdrop will be displayed behind the picker.",
23199
+ "docsTags": [
23200
+ {
23201
+ "name": "default",
23202
+ "text": "true"
23203
+ }
23204
+ ],
23205
+ "default": "true",
23206
+ "values": [
23207
+ {
23208
+ "type": "boolean"
23209
+ }
23210
+ ],
23211
+ "optional": false,
23212
+ "required": false,
23213
+ "getter": false,
23214
+ "setter": false
23215
+ },
23216
+ {
23217
+ "name": "trigger",
23218
+ "type": "string | undefined",
23219
+ "complexType": {
23220
+ "original": "string | undefined",
23221
+ "resolved": "string | undefined",
23222
+ "references": {}
23223
+ },
23224
+ "mutable": false,
23225
+ "attr": "trigger",
23226
+ "reflectToAttr": false,
23227
+ "docs": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
23228
+ "docsTags": [],
23229
+ "values": [
23230
+ {
23231
+ "type": "string"
23232
+ },
23233
+ {
23234
+ "type": "undefined"
23235
+ }
23236
+ ],
23237
+ "optional": false,
23238
+ "required": false,
23239
+ "getter": false,
23240
+ "setter": false
23241
+ }
23242
+ ],
23243
+ "methods": [
23244
+ {
23245
+ "name": "dismiss",
23246
+ "returns": {
23247
+ "type": "Promise<boolean>",
23248
+ "docs": ""
23249
+ },
23250
+ "complexType": {
23251
+ "signature": "(data?: any, role?: string) => Promise<boolean>",
23252
+ "parameters": [
23253
+ {
23254
+ "name": "data",
23255
+ "type": "any",
23256
+ "docs": "Any data to emit in the dismiss events."
23257
+ },
23258
+ {
23259
+ "name": "role",
23260
+ "type": "string | undefined",
23261
+ "docs": "The role of the element that is dismissing the picker.\nThis can be useful in a button handler for determining which button was\nclicked to dismiss the picker.\nSome examples include: ``\"cancel\"`, `\"destructive\"`, \"selected\"`, and `\"backdrop\"`."
23262
+ }
23263
+ ],
23264
+ "references": {
23265
+ "Promise": {
23266
+ "location": "global",
23267
+ "id": "global::Promise"
23268
+ }
23269
+ },
23270
+ "return": "Promise<boolean>"
23271
+ },
23272
+ "signature": "dismiss(data?: any, role?: string) => Promise<boolean>",
23273
+ "parameters": [
23274
+ {
23275
+ "name": "data",
23276
+ "type": "any",
23277
+ "docs": "Any data to emit in the dismiss events."
23278
+ },
23279
+ {
23280
+ "name": "role",
23281
+ "type": "string | undefined",
23282
+ "docs": "The role of the element that is dismissing the picker.\nThis can be useful in a button handler for determining which button was\nclicked to dismiss the picker.\nSome examples include: ``\"cancel\"`, `\"destructive\"`, \"selected\"`, and `\"backdrop\"`."
23283
+ }
23284
+ ],
23285
+ "docs": "Dismiss the picker overlay after it has been presented.",
23286
+ "docsTags": [
23287
+ {
23288
+ "name": "param",
23289
+ "text": "data Any data to emit in the dismiss events."
23290
+ },
23291
+ {
23292
+ "name": "param",
23293
+ "text": "role The role of the element that is dismissing the picker.\nThis can be useful in a button handler for determining which button was\nclicked to dismiss the picker.\nSome examples include: ``\"cancel\"`, `\"destructive\"`, \"selected\"`, and `\"backdrop\"`."
23294
+ }
23295
+ ]
23296
+ },
23297
+ {
23298
+ "name": "getColumn",
23299
+ "returns": {
23300
+ "type": "Promise<PickerColumn | undefined>",
23301
+ "docs": ""
23302
+ },
23303
+ "complexType": {
23304
+ "signature": "(name: string) => Promise<PickerColumn | undefined>",
23305
+ "parameters": [
23306
+ {
23307
+ "name": "name",
23308
+ "type": "string",
23309
+ "docs": "The name of the column."
23310
+ }
23311
+ ],
23312
+ "references": {
23313
+ "Promise": {
23314
+ "location": "global",
23315
+ "id": "global::Promise"
23316
+ },
23317
+ "PickerColumn": {
23318
+ "location": "import",
23319
+ "path": "./picker-interface",
23320
+ "id": "src/components/picker-legacy/picker-interface.ts::PickerColumn",
23321
+ "referenceLocation": "PickerColumn"
23322
+ }
23323
+ },
23324
+ "return": "Promise<PickerColumn | undefined>"
23325
+ },
23326
+ "signature": "getColumn(name: string) => Promise<PickerColumn | undefined>",
23327
+ "parameters": [
23328
+ {
23329
+ "name": "name",
23330
+ "type": "string",
23331
+ "docs": "The name of the column."
23332
+ }
23333
+ ],
23334
+ "docs": "Get the column that matches the specified name.",
23335
+ "docsTags": [
23336
+ {
23337
+ "name": "param",
23338
+ "text": "name The name of the column."
23339
+ }
23340
+ ]
23341
+ },
23342
+ {
23343
+ "name": "onDidDismiss",
23344
+ "returns": {
23345
+ "type": "Promise<OverlayEventDetail<T>>",
23346
+ "docs": ""
23347
+ },
23348
+ "complexType": {
23349
+ "signature": "<T = any>() => Promise<OverlayEventDetail<T>>",
23350
+ "parameters": [],
23351
+ "references": {
23352
+ "Promise": {
23353
+ "location": "global",
23354
+ "id": "global::Promise"
23355
+ },
23356
+ "OverlayEventDetail": {
23357
+ "location": "import",
23358
+ "path": "../../utils/overlays-interface",
23359
+ "id": "src/utils/overlays-interface.ts::OverlayEventDetail",
23360
+ "referenceLocation": "OverlayEventDetail"
23361
+ },
23362
+ "T": {
23363
+ "location": "global",
23364
+ "id": "global::T"
23365
+ }
23366
+ },
23367
+ "return": "Promise<OverlayEventDetail<T>>"
23368
+ },
23369
+ "signature": "onDidDismiss<T = any>() => Promise<OverlayEventDetail<T>>",
23370
+ "parameters": [],
23371
+ "docs": "Returns a promise that resolves when the picker did dismiss.",
23372
+ "docsTags": []
23373
+ },
23374
+ {
23375
+ "name": "onWillDismiss",
23376
+ "returns": {
23377
+ "type": "Promise<OverlayEventDetail<T>>",
23378
+ "docs": ""
23379
+ },
23380
+ "complexType": {
23381
+ "signature": "<T = any>() => Promise<OverlayEventDetail<T>>",
23382
+ "parameters": [],
23383
+ "references": {
23384
+ "Promise": {
23385
+ "location": "global",
23386
+ "id": "global::Promise"
23387
+ },
23388
+ "OverlayEventDetail": {
23389
+ "location": "import",
23390
+ "path": "../../utils/overlays-interface",
23391
+ "id": "src/utils/overlays-interface.ts::OverlayEventDetail",
23392
+ "referenceLocation": "OverlayEventDetail"
23393
+ },
23394
+ "T": {
23395
+ "location": "global",
23396
+ "id": "global::T"
23397
+ }
23398
+ },
23399
+ "return": "Promise<OverlayEventDetail<T>>"
23400
+ },
23401
+ "signature": "onWillDismiss<T = any>() => Promise<OverlayEventDetail<T>>",
23402
+ "parameters": [],
23403
+ "docs": "Returns a promise that resolves when the picker will dismiss.",
23404
+ "docsTags": []
23405
+ },
23406
+ {
23407
+ "name": "present",
23408
+ "returns": {
23409
+ "type": "Promise<void>",
23410
+ "docs": ""
23411
+ },
23412
+ "complexType": {
23413
+ "signature": "() => Promise<void>",
23414
+ "parameters": [],
23415
+ "references": {
23416
+ "Promise": {
23417
+ "location": "global",
23418
+ "id": "global::Promise"
23419
+ }
23420
+ },
23421
+ "return": "Promise<void>"
23422
+ },
23423
+ "signature": "present() => Promise<void>",
23424
+ "parameters": [],
23425
+ "docs": "Present the picker overlay after it has been created.",
23426
+ "docsTags": []
23427
+ }
23428
+ ],
23429
+ "events": [
23430
+ {
23431
+ "event": "didDismiss",
23432
+ "detail": "OverlayEventDetail<any>",
23433
+ "bubbles": true,
23434
+ "complexType": {
23435
+ "original": "OverlayEventDetail",
23436
+ "resolved": "OverlayEventDetail<any>",
23437
+ "references": {
23438
+ "OverlayEventDetail": {
23439
+ "location": "import",
23440
+ "path": "../../utils/overlays-interface",
23441
+ "id": "src/utils/overlays-interface.ts::OverlayEventDetail",
23442
+ "referenceLocation": "OverlayEventDetail"
23443
+ }
23444
+ }
23445
+ },
23446
+ "cancelable": true,
23447
+ "composed": true,
23448
+ "docs": "Emitted after the picker has dismissed.\nShorthand for ionPickerDidDismiss.",
23449
+ "docsTags": []
23450
+ },
23451
+ {
23452
+ "event": "didPresent",
23453
+ "detail": "void",
23454
+ "bubbles": true,
23455
+ "complexType": {
23456
+ "original": "void",
23457
+ "resolved": "void",
23458
+ "references": {}
23459
+ },
23460
+ "cancelable": true,
23461
+ "composed": true,
23462
+ "docs": "Emitted after the picker has presented.\nShorthand for ionPickerWillDismiss.",
23463
+ "docsTags": []
23464
+ },
23465
+ {
23466
+ "event": "ionPickerDidDismiss",
23467
+ "detail": "OverlayEventDetail<any>",
23468
+ "bubbles": true,
23469
+ "complexType": {
23470
+ "original": "OverlayEventDetail",
23471
+ "resolved": "OverlayEventDetail<any>",
23472
+ "references": {
23473
+ "OverlayEventDetail": {
23474
+ "location": "import",
23475
+ "path": "../../utils/overlays-interface",
23476
+ "id": "src/utils/overlays-interface.ts::OverlayEventDetail",
23477
+ "referenceLocation": "OverlayEventDetail"
23478
+ }
23479
+ }
23480
+ },
23481
+ "cancelable": true,
23482
+ "composed": true,
23483
+ "docs": "Emitted after the picker has dismissed.",
23484
+ "docsTags": []
23485
+ },
23486
+ {
23487
+ "event": "ionPickerDidPresent",
23488
+ "detail": "void",
23489
+ "bubbles": true,
23490
+ "complexType": {
23491
+ "original": "void",
23492
+ "resolved": "void",
23493
+ "references": {}
23494
+ },
23495
+ "cancelable": true,
23496
+ "composed": true,
23497
+ "docs": "Emitted after the picker has presented.",
23498
+ "docsTags": []
23499
+ },
23500
+ {
23501
+ "event": "ionPickerWillDismiss",
23502
+ "detail": "OverlayEventDetail<any>",
23503
+ "bubbles": true,
23504
+ "complexType": {
23505
+ "original": "OverlayEventDetail",
23506
+ "resolved": "OverlayEventDetail<any>",
23507
+ "references": {
23508
+ "OverlayEventDetail": {
23509
+ "location": "import",
23510
+ "path": "../../utils/overlays-interface",
23511
+ "id": "src/utils/overlays-interface.ts::OverlayEventDetail",
23512
+ "referenceLocation": "OverlayEventDetail"
23513
+ }
22743
23514
  }
22744
- ],
22745
- "optional": false,
22746
- "required": false,
22747
- "getter": false,
22748
- "setter": false
23515
+ },
23516
+ "cancelable": true,
23517
+ "composed": true,
23518
+ "docs": "Emitted before the picker has dismissed.",
23519
+ "docsTags": []
22749
23520
  },
22750
23521
  {
22751
- "name": "value",
22752
- "type": "any",
23522
+ "event": "ionPickerWillPresent",
23523
+ "detail": "void",
23524
+ "bubbles": true,
22753
23525
  "complexType": {
22754
- "original": "any | null",
22755
- "resolved": "any",
23526
+ "original": "void",
23527
+ "resolved": "void",
22756
23528
  "references": {}
22757
23529
  },
22758
- "mutable": false,
22759
- "attr": "value",
22760
- "reflectToAttr": false,
22761
- "docs": "The text value of the option.",
22762
- "docsTags": [],
22763
- "values": [
22764
- {
22765
- "type": "any"
23530
+ "cancelable": true,
23531
+ "composed": true,
23532
+ "docs": "Emitted before the picker has presented.",
23533
+ "docsTags": []
23534
+ },
23535
+ {
23536
+ "event": "willDismiss",
23537
+ "detail": "OverlayEventDetail<any>",
23538
+ "bubbles": true,
23539
+ "complexType": {
23540
+ "original": "OverlayEventDetail",
23541
+ "resolved": "OverlayEventDetail<any>",
23542
+ "references": {
23543
+ "OverlayEventDetail": {
23544
+ "location": "import",
23545
+ "path": "../../utils/overlays-interface",
23546
+ "id": "src/utils/overlays-interface.ts::OverlayEventDetail",
23547
+ "referenceLocation": "OverlayEventDetail"
23548
+ }
22766
23549
  }
22767
- ],
22768
- "optional": true,
22769
- "required": false,
22770
- "getter": false,
22771
- "setter": false
23550
+ },
23551
+ "cancelable": true,
23552
+ "composed": true,
23553
+ "docs": "Emitted before the picker has dismissed.\nShorthand for ionPickerWillDismiss.",
23554
+ "docsTags": []
23555
+ },
23556
+ {
23557
+ "event": "willPresent",
23558
+ "detail": "void",
23559
+ "bubbles": true,
23560
+ "complexType": {
23561
+ "original": "void",
23562
+ "resolved": "void",
23563
+ "references": {}
23564
+ },
23565
+ "cancelable": true,
23566
+ "composed": true,
23567
+ "docs": "Emitted before the picker has presented.\nShorthand for ionPickerWillPresent.",
23568
+ "docsTags": []
22772
23569
  }
22773
23570
  ],
22774
- "methods": [],
22775
- "events": [],
22776
23571
  "listeners": [],
22777
- "styles": [],
23572
+ "styles": [
23573
+ {
23574
+ "name": "--backdrop-opacity",
23575
+ "annotation": "prop",
23576
+ "docs": "Opacity of the backdrop",
23577
+ "mode": "ios"
23578
+ },
23579
+ {
23580
+ "name": "--backdrop-opacity",
23581
+ "annotation": "prop",
23582
+ "docs": "Opacity of the backdrop",
23583
+ "mode": "md"
23584
+ },
23585
+ {
23586
+ "name": "--background",
23587
+ "annotation": "prop",
23588
+ "docs": "Background of the picker",
23589
+ "mode": "ios"
23590
+ },
23591
+ {
23592
+ "name": "--background",
23593
+ "annotation": "prop",
23594
+ "docs": "Background of the picker",
23595
+ "mode": "md"
23596
+ },
23597
+ {
23598
+ "name": "--background-rgb",
23599
+ "annotation": "prop",
23600
+ "docs": "Background of the picker in rgb format",
23601
+ "mode": "ios"
23602
+ },
23603
+ {
23604
+ "name": "--background-rgb",
23605
+ "annotation": "prop",
23606
+ "docs": "Background of the picker in rgb format",
23607
+ "mode": "md"
23608
+ },
23609
+ {
23610
+ "name": "--border-color",
23611
+ "annotation": "prop",
23612
+ "docs": "Border color of the picker",
23613
+ "mode": "ios"
23614
+ },
23615
+ {
23616
+ "name": "--border-color",
23617
+ "annotation": "prop",
23618
+ "docs": "Border color of the picker",
23619
+ "mode": "md"
23620
+ },
23621
+ {
23622
+ "name": "--border-radius",
23623
+ "annotation": "prop",
23624
+ "docs": "Border radius of the picker",
23625
+ "mode": "ios"
23626
+ },
23627
+ {
23628
+ "name": "--border-radius",
23629
+ "annotation": "prop",
23630
+ "docs": "Border radius of the picker",
23631
+ "mode": "md"
23632
+ },
23633
+ {
23634
+ "name": "--border-style",
23635
+ "annotation": "prop",
23636
+ "docs": "Border style of the picker",
23637
+ "mode": "ios"
23638
+ },
23639
+ {
23640
+ "name": "--border-style",
23641
+ "annotation": "prop",
23642
+ "docs": "Border style of the picker",
23643
+ "mode": "md"
23644
+ },
23645
+ {
23646
+ "name": "--border-width",
23647
+ "annotation": "prop",
23648
+ "docs": "Border width of the picker",
23649
+ "mode": "ios"
23650
+ },
23651
+ {
23652
+ "name": "--border-width",
23653
+ "annotation": "prop",
23654
+ "docs": "Border width of the picker",
23655
+ "mode": "md"
23656
+ },
23657
+ {
23658
+ "name": "--height",
23659
+ "annotation": "prop",
23660
+ "docs": "Height of the picker",
23661
+ "mode": "ios"
23662
+ },
23663
+ {
23664
+ "name": "--height",
23665
+ "annotation": "prop",
23666
+ "docs": "Height of the picker",
23667
+ "mode": "md"
23668
+ },
23669
+ {
23670
+ "name": "--max-height",
23671
+ "annotation": "prop",
23672
+ "docs": "Maximum height of the picker",
23673
+ "mode": "ios"
23674
+ },
23675
+ {
23676
+ "name": "--max-height",
23677
+ "annotation": "prop",
23678
+ "docs": "Maximum height of the picker",
23679
+ "mode": "md"
23680
+ },
23681
+ {
23682
+ "name": "--max-width",
23683
+ "annotation": "prop",
23684
+ "docs": "Maximum width of the picker",
23685
+ "mode": "ios"
23686
+ },
23687
+ {
23688
+ "name": "--max-width",
23689
+ "annotation": "prop",
23690
+ "docs": "Maximum width of the picker",
23691
+ "mode": "md"
23692
+ },
23693
+ {
23694
+ "name": "--min-height",
23695
+ "annotation": "prop",
23696
+ "docs": "Minimum height of the picker",
23697
+ "mode": "ios"
23698
+ },
23699
+ {
23700
+ "name": "--min-height",
23701
+ "annotation": "prop",
23702
+ "docs": "Minimum height of the picker",
23703
+ "mode": "md"
23704
+ },
23705
+ {
23706
+ "name": "--min-width",
23707
+ "annotation": "prop",
23708
+ "docs": "Minimum width of the picker",
23709
+ "mode": "ios"
23710
+ },
23711
+ {
23712
+ "name": "--min-width",
23713
+ "annotation": "prop",
23714
+ "docs": "Minimum width of the picker",
23715
+ "mode": "md"
23716
+ },
23717
+ {
23718
+ "name": "--width",
23719
+ "annotation": "prop",
23720
+ "docs": "Width of the picker",
23721
+ "mode": "ios"
23722
+ },
23723
+ {
23724
+ "name": "--width",
23725
+ "annotation": "prop",
23726
+ "docs": "Width of the picker",
23727
+ "mode": "md"
23728
+ }
23729
+ ],
22778
23730
  "slots": [],
22779
23731
  "parts": [],
22780
23732
  "states": [],
22781
- "dependents": [
22782
- "ion-datetime"
23733
+ "dependents": [],
23734
+ "dependencies": [
23735
+ "ion-backdrop",
23736
+ "ion-picker-legacy-column"
22783
23737
  ],
22784
- "dependencies": [],
22785
23738
  "dependencyGraph": {
22786
- "ion-datetime": [
22787
- "ion-picker-column-option"
23739
+ "ion-picker-legacy": [
23740
+ "ion-backdrop",
23741
+ "ion-picker-legacy-column"
22788
23742
  ]
22789
23743
  }
22790
23744
  },
@@ -24661,7 +25615,7 @@
24661
25615
  },
24662
25616
  "mutable": false,
24663
25617
  "attr": "value",
24664
- "reflectToAttr": true,
25618
+ "reflectToAttr": false,
24665
25619
  "docs": "the value of the radio.",
24666
25620
  "docsTags": [],
24667
25621
  "values": [
@@ -27116,7 +28070,7 @@
27116
28070
  "mutable": false,
27117
28071
  "attr": "component",
27118
28072
  "reflectToAttr": false,
27119
- "docs": "Name of the component to load/select in the navigation outlet (`ion-tabs`, `ion-router-outlet`)\nwhen the route matches.\n\nThe value of this property is not always the tagname of the component to load,\nin `ion-tabs` it actually refers to the name of the `ion-tab` to select.",
28073
+ "docs": "Name of the component to load/select in the navigation outlet (`ion-tabs`, `ion-nav`)\nwhen the route matches.\n\nThe value of this property is not always the tagname of the component to load,\nin `ion-tabs` it actually refers to the name of the `ion-tab` to select.",
27120
28074
  "docsTags": [],
27121
28075
  "values": [
27122
28076
  {
@@ -27894,32 +28848,6 @@
27894
28848
  "required": false,
27895
28849
  "getter": false,
27896
28850
  "setter": false
27897
- },
27898
- {
27899
- "name": "swipeGesture",
27900
- "type": "boolean | undefined",
27901
- "complexType": {
27902
- "original": "boolean",
27903
- "resolved": "boolean | undefined",
27904
- "references": {}
27905
- },
27906
- "mutable": true,
27907
- "attr": "swipe-gesture",
27908
- "reflectToAttr": false,
27909
- "docs": "If `true`, the router-outlet should allow navigation via swipe-to-go-back gesture.\nDefaults to `true` for `\"ios\"` mode and `false` for `\"md\"` mode.",
27910
- "docsTags": [],
27911
- "values": [
27912
- {
27913
- "type": "boolean"
27914
- },
27915
- {
27916
- "type": "undefined"
27917
- }
27918
- ],
27919
- "optional": true,
27920
- "required": false,
27921
- "getter": false,
27922
- "setter": false
27923
28851
  }
27924
28852
  ],
27925
28853
  "methods": [],
@@ -28274,10 +29202,10 @@
28274
29202
  },
28275
29203
  {
28276
29204
  "name": "autocorrect",
28277
- "type": "boolean",
29205
+ "type": "\"off\" | \"on\"",
28278
29206
  "complexType": {
28279
- "original": "boolean",
28280
- "resolved": "boolean",
29207
+ "original": "'on' | 'off'",
29208
+ "resolved": "\"off\" | \"on\"",
28281
29209
  "references": {}
28282
29210
  },
28283
29211
  "mutable": false,
@@ -28287,13 +29215,18 @@
28287
29215
  "docsTags": [
28288
29216
  {
28289
29217
  "name": "default",
28290
- "text": "false"
29218
+ "text": "'off'"
28291
29219
  }
28292
29220
  ],
28293
- "default": "false",
29221
+ "default": "'off'",
28294
29222
  "values": [
28295
29223
  {
28296
- "type": "boolean"
29224
+ "value": "off",
29225
+ "type": "string"
29226
+ },
29227
+ {
29228
+ "value": "on",
29229
+ "type": "string"
28297
29230
  }
28298
29231
  ],
28299
29232
  "optional": false,
@@ -31450,90 +32383,6 @@
31450
32383
  "annotation": "prop",
31451
32384
  "docs": "The color of the ripple effect on MD mode.",
31452
32385
  "mode": "md"
31453
- },
31454
- {
31455
- "name": "--select-text-gap",
31456
- "annotation": "prop",
31457
- "docs": "The gap between elements in the select text.",
31458
- "mode": "ios"
31459
- },
31460
- {
31461
- "name": "--select-text-gap",
31462
- "annotation": "prop",
31463
- "docs": "The gap between elements in the select text.",
31464
- "mode": "md"
31465
- },
31466
- {
31467
- "name": "--select-text-media-border-color",
31468
- "annotation": "prop",
31469
- "docs": "The border color of media (icons/images) in the select text.",
31470
- "mode": "ios"
31471
- },
31472
- {
31473
- "name": "--select-text-media-border-color",
31474
- "annotation": "prop",
31475
- "docs": "The border color of media (icons/images) in the select text.",
31476
- "mode": "md"
31477
- },
31478
- {
31479
- "name": "--select-text-media-border-radius",
31480
- "annotation": "prop",
31481
- "docs": "The border radius of media (icons/images) in the select text.",
31482
- "mode": "ios"
31483
- },
31484
- {
31485
- "name": "--select-text-media-border-radius",
31486
- "annotation": "prop",
31487
- "docs": "The border radius of media (icons/images) in the select text.",
31488
- "mode": "md"
31489
- },
31490
- {
31491
- "name": "--select-text-media-border-style",
31492
- "annotation": "prop",
31493
- "docs": "The border style of media (icons/images) in the select text.",
31494
- "mode": "ios"
31495
- },
31496
- {
31497
- "name": "--select-text-media-border-style",
31498
- "annotation": "prop",
31499
- "docs": "The border style of media (icons/images) in the select text.",
31500
- "mode": "md"
31501
- },
31502
- {
31503
- "name": "--select-text-media-border-width",
31504
- "annotation": "prop",
31505
- "docs": "The border width of media (icons/images) in the select text.",
31506
- "mode": "ios"
31507
- },
31508
- {
31509
- "name": "--select-text-media-border-width",
31510
- "annotation": "prop",
31511
- "docs": "The border width of media (icons/images) in the select text.",
31512
- "mode": "md"
31513
- },
31514
- {
31515
- "name": "--select-text-media-height",
31516
- "annotation": "prop",
31517
- "docs": "The height of media (icons/images) in the select text.",
31518
- "mode": "ios"
31519
- },
31520
- {
31521
- "name": "--select-text-media-height",
31522
- "annotation": "prop",
31523
- "docs": "The height of media (icons/images) in the select text.",
31524
- "mode": "md"
31525
- },
31526
- {
31527
- "name": "--select-text-media-width",
31528
- "annotation": "prop",
31529
- "docs": "The width of media (icons/images) in the select text.",
31530
- "mode": "ios"
31531
- },
31532
- {
31533
- "name": "--select-text-media-width",
31534
- "annotation": "prop",
31535
- "docs": "The width of media (icons/images) in the select text.",
31536
- "mode": "md"
31537
32386
  }
31538
32387
  ],
31539
32388
  "slots": [
@@ -31842,52 +32691,9 @@
31842
32691
  "encapsulation": "shadow",
31843
32692
  "tag": "ion-select-option",
31844
32693
  "docs": "",
31845
- "docsTags": [
31846
- {
31847
- "name": "virtualProp",
31848
- "text": "{\"ios\" | \"md\"} mode - The mode determines the platform behaviors of the component."
31849
- },
31850
- {
31851
- "name": "slot",
31852
- "text": "- Content is placed between the named slots if provided without a slot."
31853
- },
31854
- {
31855
- "name": "slot",
31856
- "text": "start - Content is placed to the left of the select option text in LTR, and to the right in RTL."
31857
- },
31858
- {
31859
- "name": "slot",
31860
- "text": "end - Content is placed to the right of the select option text in LTR, and to the left in RTL."
31861
- }
31862
- ],
32694
+ "docsTags": [],
31863
32695
  "usage": {},
31864
32696
  "props": [
31865
- {
31866
- "name": "description",
31867
- "type": "string | undefined",
31868
- "complexType": {
31869
- "original": "string",
31870
- "resolved": "string | undefined",
31871
- "references": {}
31872
- },
31873
- "mutable": false,
31874
- "attr": "description",
31875
- "reflectToAttr": false,
31876
- "docs": "Text that is placed underneath the option text to provide additional details about the option.",
31877
- "docsTags": [],
31878
- "values": [
31879
- {
31880
- "type": "string"
31881
- },
31882
- {
31883
- "type": "undefined"
31884
- }
31885
- ],
31886
- "optional": true,
31887
- "required": false,
31888
- "getter": false,
31889
- "setter": false
31890
- },
31891
32697
  {
31892
32698
  "name": "disabled",
31893
32699
  "type": "boolean",
@@ -31899,7 +32705,7 @@
31899
32705
  "mutable": false,
31900
32706
  "attr": "disabled",
31901
32707
  "reflectToAttr": false,
31902
- "docs": "If `true`, the user cannot interact with the select option.",
32708
+ "docs": "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.",
31903
32709
  "docsTags": [
31904
32710
  {
31905
32711
  "name": "default",
@@ -31917,93 +32723,6 @@
31917
32723
  "getter": false,
31918
32724
  "setter": false
31919
32725
  },
31920
- {
31921
- "name": "justify",
31922
- "type": "\"end\" | \"space-between\" | \"start\" | undefined",
31923
- "complexType": {
31924
- "original": "'start' | 'end' | 'space-between'",
31925
- "resolved": "\"end\" | \"space-between\" | \"start\" | undefined",
31926
- "references": {}
31927
- },
31928
- "mutable": false,
31929
- "attr": "justify",
31930
- "reflectToAttr": false,
31931
- "docs": "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 `md` (the radio control is hidden there).\n\nWhen unset, the interface picks a default based on mode and control\ntype.",
31932
- "docsTags": [],
31933
- "values": [
31934
- {
31935
- "value": "end",
31936
- "type": "string"
31937
- },
31938
- {
31939
- "value": "space-between",
31940
- "type": "string"
31941
- },
31942
- {
31943
- "value": "start",
31944
- "type": "string"
31945
- },
31946
- {
31947
- "type": "undefined"
31948
- }
31949
- ],
31950
- "optional": true,
31951
- "required": false,
31952
- "getter": false,
31953
- "setter": false
31954
- },
31955
- {
31956
- "name": "labelPlacement",
31957
- "type": "\"end\" | \"start\" | undefined",
31958
- "complexType": {
31959
- "original": "'start' | 'end'",
31960
- "resolved": "\"end\" | \"start\" | undefined",
31961
- "references": {}
31962
- },
31963
- "mutable": false,
31964
- "attr": "label-placement",
31965
- "reflectToAttr": false,
31966
- "docs": "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 `md` (the radio control is hidden there).\n\nWhen unset, the interface picks a default based on mode and control\ntype.",
31967
- "docsTags": [],
31968
- "values": [
31969
- {
31970
- "value": "end",
31971
- "type": "string"
31972
- },
31973
- {
31974
- "value": "start",
31975
- "type": "string"
31976
- },
31977
- {
31978
- "type": "undefined"
31979
- }
31980
- ],
31981
- "optional": true,
31982
- "required": false,
31983
- "getter": false,
31984
- "setter": false
31985
- },
31986
- {
31987
- "name": "mode",
31988
- "type": "\"ios\" | \"md\"",
31989
- "mutable": false,
31990
- "attr": "mode",
31991
- "reflectToAttr": false,
31992
- "docs": "The mode determines the platform behaviors of the component.",
31993
- "docsTags": [],
31994
- "values": [
31995
- {
31996
- "value": "ios",
31997
- "type": "string"
31998
- },
31999
- {
32000
- "value": "md",
32001
- "type": "string"
32002
- }
32003
- ],
32004
- "optional": true,
32005
- "required": false
32006
- },
32007
32726
  {
32008
32727
  "name": "value",
32009
32728
  "type": "any",
@@ -32032,20 +32751,7 @@
32032
32751
  "events": [],
32033
32752
  "listeners": [],
32034
32753
  "styles": [],
32035
- "slots": [
32036
- {
32037
- "name": "",
32038
- "docs": "Content is placed between the named slots if provided without a slot."
32039
- },
32040
- {
32041
- "name": "end",
32042
- "docs": "Content is placed to the right of the select option text in LTR, and to the left in RTL."
32043
- },
32044
- {
32045
- "name": "start",
32046
- "docs": "Content is placed to the left of the select option text in LTR, and to the right in RTL."
32047
- }
32048
- ],
32754
+ "slots": [],
32049
32755
  "parts": [],
32050
32756
  "states": [],
32051
32757
  "dependents": [],
@@ -37593,7 +38299,7 @@
37593
38299
  "path": "src/components/nav/nav-interface.ts"
37594
38300
  },
37595
38301
  "src/components/nav/nav-interface.ts::NavOptions": {
37596
- "declaration": "export interface NavOptions extends RouterOutletOptions {\n progressAnimation?: boolean;\n delegate?: FrameworkDelegate;\n viewIsReady?: (enteringEl: HTMLElement) => Promise<any>;\n}",
38302
+ "declaration": "export interface NavOptions extends RouterOutletOptions {\n progressAnimation?: boolean;\n updateURL?: boolean;\n delegate?: FrameworkDelegate;\n viewIsReady?: (enteringEl: HTMLElement) => Promise<any>;\n}",
37597
38303
  "docstring": "",
37598
38304
  "path": "src/components/nav/nav-interface.ts"
37599
38305
  },
@@ -37617,6 +38323,26 @@
37617
38323
  "docstring": "",
37618
38324
  "path": "src/components/nav/nav-interface.ts"
37619
38325
  },
38326
+ "src/components/router/utils/interface.ts::RouteWrite": {
38327
+ "declaration": "export interface RouteWrite {\n changed: boolean;\n element: HTMLElement | undefined;\n markVisible?: () => void | Promise<void>;\n}",
38328
+ "docstring": "",
38329
+ "path": "src/components/router/utils/interface.ts"
38330
+ },
38331
+ "src/components/router/utils/interface.ts::RouteID": {
38332
+ "declaration": "export interface RouteID {\n id: string;\n element: HTMLElement | undefined;\n params?: { [key: string]: any };\n}",
38333
+ "docstring": "",
38334
+ "path": "src/components/router/utils/interface.ts"
38335
+ },
38336
+ "src/components/picker-legacy/picker-interface.ts::PickerButton": {
38337
+ "declaration": "export interface PickerButton {\n text?: string;\n role?: string;\n cssClass?: string | string[];\n handler?: (value: any) => boolean | void;\n}",
38338
+ "docstring": "",
38339
+ "path": "src/components/picker-legacy/picker-interface.ts"
38340
+ },
38341
+ "src/components/picker-legacy/picker-interface.ts::PickerColumn": {
38342
+ "declaration": "export interface PickerColumn {\n name: string;\n align?: string;\n /**\n * Changing this value allows the initial value of a picker column to be set.\n */\n selectedIndex?: number;\n prevSelected?: number;\n prefix?: string;\n suffix?: string;\n options: PickerColumnOption[];\n cssClass?: string | string[];\n columnWidth?: string;\n prefixWidth?: string;\n suffixWidth?: string;\n optionsWidth?: string;\n}",
38343
+ "docstring": "",
38344
+ "path": "src/components/picker-legacy/picker-interface.ts"
38345
+ },
37620
38346
  "src/components/popover/popover-interface.ts::TriggerAction": {
37621
38347
  "declaration": "export type TriggerAction = 'click' | 'hover' | 'context-menu';",
37622
38348
  "docstring": "",
@@ -37712,16 +38438,6 @@
37712
38438
  "docstring": "",
37713
38439
  "path": "src/components/nav/nav-interface.ts"
37714
38440
  },
37715
- "src/components/router/utils/interface.ts::RouteWrite": {
37716
- "declaration": "export interface RouteWrite {\n changed: boolean;\n element: HTMLElement | undefined;\n markVisible?: () => void | Promise<void>;\n}",
37717
- "docstring": "",
37718
- "path": "src/components/router/utils/interface.ts"
37719
- },
37720
- "src/components/router/utils/interface.ts::RouteID": {
37721
- "declaration": "export interface RouteID {\n id: string;\n element: HTMLElement | undefined;\n params?: { [key: string]: any };\n}",
37722
- "docstring": "",
37723
- "path": "src/components/router/utils/interface.ts"
37724
- },
37725
38441
  "src/components/searchbar/searchbar-interface.ts::SearchbarInputEventDetail": {
37726
38442
  "declaration": "export interface SearchbarInputEventDetail {\n value?: string | null;\n event?: Event;\n}",
37727
38443
  "docstring": "",