@ionic/vue 8.8.19 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.js +233 -117
- package/dist/index.js.map +1 -1
- package/dist/types/components/IonPage.d.ts +5 -5
- package/dist/types/components/IonRouterOutlet.d.ts +16 -4
- package/dist/types/components/IonTabBar.d.ts +31 -11
- package/dist/types/components/IonTabButton.d.ts +6 -6
- package/dist/types/components/IonTabs.d.ts +9 -9
- package/dist/types/components/Overlays.d.ts +0 -1
- package/dist/types/controllers.d.ts +1 -9
- package/dist/types/index.d.ts +2 -2
- package/dist/vetur/attributes.json +42 -86
- package/dist/vetur/tags.json +6 -20
- package/dist/web-types.json +59 -242
- package/package.json +20 -10
|
@@ -1539,12 +1539,9 @@
|
|
|
1539
1539
|
]
|
|
1540
1540
|
},
|
|
1541
1541
|
"ion-input/autocorrect": {
|
|
1542
|
-
"type": "
|
|
1542
|
+
"type": "boolean",
|
|
1543
1543
|
"description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
|
|
1544
|
-
"options": [
|
|
1545
|
-
"off",
|
|
1546
|
-
"on"
|
|
1547
|
-
]
|
|
1544
|
+
"options": []
|
|
1548
1545
|
},
|
|
1549
1546
|
"ion-input/autofocus": {
|
|
1550
1547
|
"type": "boolean",
|
|
@@ -2409,7 +2406,7 @@
|
|
|
2409
2406
|
},
|
|
2410
2407
|
"ion-modal/handle-behavior": {
|
|
2411
2408
|
"type": "\"cycle\" | \"none\" | undefined",
|
|
2412
|
-
"description": "The interaction behavior for the sheet modal when the handle is pressed.\n\
|
|
2409
|
+
"description": "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\"`.",
|
|
2413
2410
|
"options": [
|
|
2414
2411
|
"cycle",
|
|
2415
2412
|
"none"
|
|
@@ -2606,79 +2603,6 @@
|
|
|
2606
2603
|
"description": "The text value of the option.",
|
|
2607
2604
|
"options": []
|
|
2608
2605
|
},
|
|
2609
|
-
"ion-picker-legacy/animated": {
|
|
2610
|
-
"type": "boolean",
|
|
2611
|
-
"description": "If `true`, the picker will animate.",
|
|
2612
|
-
"options": []
|
|
2613
|
-
},
|
|
2614
|
-
"ion-picker-legacy/backdrop-dismiss": {
|
|
2615
|
-
"type": "boolean",
|
|
2616
|
-
"description": "If `true`, the picker will be dismissed when the backdrop is clicked.",
|
|
2617
|
-
"options": []
|
|
2618
|
-
},
|
|
2619
|
-
"ion-picker-legacy/buttons": {
|
|
2620
|
-
"type": "PickerButton[]",
|
|
2621
|
-
"description": "Array of buttons to be displayed at the top of the picker.",
|
|
2622
|
-
"options": []
|
|
2623
|
-
},
|
|
2624
|
-
"ion-picker-legacy/columns": {
|
|
2625
|
-
"type": "PickerColumn[]",
|
|
2626
|
-
"description": "Array of columns to be displayed in the picker.",
|
|
2627
|
-
"options": []
|
|
2628
|
-
},
|
|
2629
|
-
"ion-picker-legacy/css-class": {
|
|
2630
|
-
"type": "string | string[] | undefined",
|
|
2631
|
-
"description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces.",
|
|
2632
|
-
"options": []
|
|
2633
|
-
},
|
|
2634
|
-
"ion-picker-legacy/duration": {
|
|
2635
|
-
"type": "number",
|
|
2636
|
-
"description": "Number of milliseconds to wait before dismissing the picker.",
|
|
2637
|
-
"options": []
|
|
2638
|
-
},
|
|
2639
|
-
"ion-picker-legacy/enter-animation": {
|
|
2640
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2641
|
-
"description": "Animation to use when the picker is presented.",
|
|
2642
|
-
"options": []
|
|
2643
|
-
},
|
|
2644
|
-
"ion-picker-legacy/html-attributes": {
|
|
2645
|
-
"type": "undefined | { [key: string]: any; }",
|
|
2646
|
-
"description": "Additional attributes to pass to the picker.",
|
|
2647
|
-
"options": []
|
|
2648
|
-
},
|
|
2649
|
-
"ion-picker-legacy/is-open": {
|
|
2650
|
-
"type": "boolean",
|
|
2651
|
-
"description": "If `true`, the picker will open. If `false`, the picker will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the pickerController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe picker dismisses. You will need to do that in your code.",
|
|
2652
|
-
"options": []
|
|
2653
|
-
},
|
|
2654
|
-
"ion-picker-legacy/keyboard-close": {
|
|
2655
|
-
"type": "boolean",
|
|
2656
|
-
"description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented.",
|
|
2657
|
-
"options": []
|
|
2658
|
-
},
|
|
2659
|
-
"ion-picker-legacy/leave-animation": {
|
|
2660
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2661
|
-
"description": "Animation to use when the picker is dismissed.",
|
|
2662
|
-
"options": []
|
|
2663
|
-
},
|
|
2664
|
-
"ion-picker-legacy/mode": {
|
|
2665
|
-
"type": "\"ios\" | \"md\"",
|
|
2666
|
-
"description": "The mode determines which platform styles to use.",
|
|
2667
|
-
"options": [
|
|
2668
|
-
"ios",
|
|
2669
|
-
"md"
|
|
2670
|
-
]
|
|
2671
|
-
},
|
|
2672
|
-
"ion-picker-legacy/show-backdrop": {
|
|
2673
|
-
"type": "boolean",
|
|
2674
|
-
"description": "If `true`, a backdrop will be displayed behind the picker.",
|
|
2675
|
-
"options": []
|
|
2676
|
-
},
|
|
2677
|
-
"ion-picker-legacy/trigger": {
|
|
2678
|
-
"type": "string | undefined",
|
|
2679
|
-
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
2680
|
-
"options": []
|
|
2681
|
-
},
|
|
2682
2606
|
"ion-popover/alignment": {
|
|
2683
2607
|
"type": "\"center\" | \"end\" | \"start\" | undefined",
|
|
2684
2608
|
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `ios` mode, and `\"start\"` for `md` mode.",
|
|
@@ -3155,7 +3079,7 @@
|
|
|
3155
3079
|
},
|
|
3156
3080
|
"ion-route/component": {
|
|
3157
3081
|
"type": "string",
|
|
3158
|
-
"description": "Name of the component to load/select in the navigation outlet (`ion-tabs`, `ion-
|
|
3082
|
+
"description": "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.",
|
|
3159
3083
|
"options": []
|
|
3160
3084
|
},
|
|
3161
3085
|
"ion-route/component-props": {
|
|
@@ -3250,6 +3174,11 @@
|
|
|
3250
3174
|
"md"
|
|
3251
3175
|
]
|
|
3252
3176
|
},
|
|
3177
|
+
"ion-router-outlet/swipe-gesture": {
|
|
3178
|
+
"type": "boolean | undefined",
|
|
3179
|
+
"description": "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.",
|
|
3180
|
+
"options": []
|
|
3181
|
+
},
|
|
3253
3182
|
"ion-searchbar/animated": {
|
|
3254
3183
|
"type": "boolean",
|
|
3255
3184
|
"description": "If `true`, enable searchbar animation.",
|
|
@@ -3321,12 +3250,9 @@
|
|
|
3321
3250
|
]
|
|
3322
3251
|
},
|
|
3323
3252
|
"ion-searchbar/autocorrect": {
|
|
3324
|
-
"type": "
|
|
3253
|
+
"type": "boolean",
|
|
3325
3254
|
"description": "Set the input's autocorrect property.",
|
|
3326
|
-
"options": [
|
|
3327
|
-
"off",
|
|
3328
|
-
"on"
|
|
3329
|
-
]
|
|
3255
|
+
"options": []
|
|
3330
3256
|
},
|
|
3331
3257
|
"ion-searchbar/cancel-button-icon": {
|
|
3332
3258
|
"type": "string",
|
|
@@ -3739,11 +3665,41 @@
|
|
|
3739
3665
|
"description": "",
|
|
3740
3666
|
"options": []
|
|
3741
3667
|
},
|
|
3668
|
+
"ion-select-option/description": {
|
|
3669
|
+
"type": "string | undefined",
|
|
3670
|
+
"description": "Text that is placed underneath the option text to provide additional details about the option.",
|
|
3671
|
+
"options": []
|
|
3672
|
+
},
|
|
3742
3673
|
"ion-select-option/disabled": {
|
|
3743
3674
|
"type": "boolean",
|
|
3744
|
-
"description": "If `true`, the user cannot interact with the select option.
|
|
3675
|
+
"description": "If `true`, the user cannot interact with the select option.",
|
|
3745
3676
|
"options": []
|
|
3746
3677
|
},
|
|
3678
|
+
"ion-select-option/justify": {
|
|
3679
|
+
"type": "\"end\" | \"space-between\" | \"start\" | undefined",
|
|
3680
|
+
"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 `md` (the radio control is hidden there).\n\nWhen unset, the interface picks a default based on mode and control\ntype.",
|
|
3681
|
+
"options": [
|
|
3682
|
+
"end",
|
|
3683
|
+
"space-between",
|
|
3684
|
+
"start"
|
|
3685
|
+
]
|
|
3686
|
+
},
|
|
3687
|
+
"ion-select-option/label-placement": {
|
|
3688
|
+
"type": "\"end\" | \"start\" | undefined",
|
|
3689
|
+
"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 `md` (the radio control is hidden there).\n\nWhen unset, the interface picks a default based on mode and control\ntype.",
|
|
3690
|
+
"options": [
|
|
3691
|
+
"end",
|
|
3692
|
+
"start"
|
|
3693
|
+
]
|
|
3694
|
+
},
|
|
3695
|
+
"ion-select-option/mode": {
|
|
3696
|
+
"type": "\"ios\" | \"md\"",
|
|
3697
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3698
|
+
"options": [
|
|
3699
|
+
"ios",
|
|
3700
|
+
"md"
|
|
3701
|
+
]
|
|
3702
|
+
},
|
|
3747
3703
|
"ion-select-option/value": {
|
|
3748
3704
|
"type": "any",
|
|
3749
3705
|
"description": "The text value of the option.",
|
package/dist/vetur/tags.json
CHANGED
|
@@ -663,25 +663,6 @@
|
|
|
663
663
|
"value"
|
|
664
664
|
]
|
|
665
665
|
},
|
|
666
|
-
"ion-picker-legacy": {
|
|
667
|
-
"description": "",
|
|
668
|
-
"attributes": [
|
|
669
|
-
"animated",
|
|
670
|
-
"backdrop-dismiss",
|
|
671
|
-
"buttons",
|
|
672
|
-
"columns",
|
|
673
|
-
"css-class",
|
|
674
|
-
"duration",
|
|
675
|
-
"enter-animation",
|
|
676
|
-
"html-attributes",
|
|
677
|
-
"is-open",
|
|
678
|
-
"keyboard-close",
|
|
679
|
-
"leave-animation",
|
|
680
|
-
"mode",
|
|
681
|
-
"show-backdrop",
|
|
682
|
-
"trigger"
|
|
683
|
-
]
|
|
684
|
-
},
|
|
685
666
|
"ion-popover": {
|
|
686
667
|
"description": "",
|
|
687
668
|
"attributes": [
|
|
@@ -844,7 +825,8 @@
|
|
|
844
825
|
"attributes": [
|
|
845
826
|
"animated",
|
|
846
827
|
"animation",
|
|
847
|
-
"mode"
|
|
828
|
+
"mode",
|
|
829
|
+
"swipe-gesture"
|
|
848
830
|
]
|
|
849
831
|
},
|
|
850
832
|
"ion-row": {
|
|
@@ -953,7 +935,11 @@
|
|
|
953
935
|
"ion-select-option": {
|
|
954
936
|
"description": "",
|
|
955
937
|
"attributes": [
|
|
938
|
+
"description",
|
|
956
939
|
"disabled",
|
|
940
|
+
"justify",
|
|
941
|
+
"label-placement",
|
|
942
|
+
"mode",
|
|
957
943
|
"value"
|
|
958
944
|
]
|
|
959
945
|
},
|
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@ionic/vue",
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "9.0.0",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -2122,7 +2122,6 @@
|
|
|
2122
2122
|
"name": "color",
|
|
2123
2123
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, refer to [theming](/docs/theming/basics).",
|
|
2124
2124
|
"required": false,
|
|
2125
|
-
"default": "'primary'",
|
|
2126
2125
|
"value": {
|
|
2127
2126
|
"kind": "expression",
|
|
2128
2127
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
@@ -2475,7 +2474,6 @@
|
|
|
2475
2474
|
"name": "color",
|
|
2476
2475
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
2477
2476
|
"required": false,
|
|
2478
|
-
"default": "'primary'",
|
|
2479
2477
|
"value": {
|
|
2480
2478
|
"kind": "expression",
|
|
2481
2479
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
@@ -3076,10 +3074,10 @@
|
|
|
3076
3074
|
"name": "autocorrect",
|
|
3077
3075
|
"description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
|
|
3078
3076
|
"required": false,
|
|
3079
|
-
"default": "
|
|
3077
|
+
"default": "false",
|
|
3080
3078
|
"value": {
|
|
3081
3079
|
"kind": "expression",
|
|
3082
|
-
"type": "
|
|
3080
|
+
"type": "boolean"
|
|
3083
3081
|
}
|
|
3084
3082
|
},
|
|
3085
3083
|
{
|
|
@@ -4774,9 +4772,9 @@
|
|
|
4774
4772
|
},
|
|
4775
4773
|
{
|
|
4776
4774
|
"name": "handle-behavior",
|
|
4777
|
-
"description": "The interaction behavior for the sheet modal when the handle is pressed.\n\
|
|
4775
|
+
"description": "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\"`.",
|
|
4778
4776
|
"required": false,
|
|
4779
|
-
"default": "'
|
|
4777
|
+
"default": "'cycle'",
|
|
4780
4778
|
"value": {
|
|
4781
4779
|
"kind": "expression",
|
|
4782
4780
|
"type": "\"cycle\" | \"none\" | undefined"
|
|
@@ -5072,7 +5070,6 @@
|
|
|
5072
5070
|
"name": "color",
|
|
5073
5071
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
5074
5072
|
"required": false,
|
|
5075
|
-
"default": "'primary'",
|
|
5076
5073
|
"value": {
|
|
5077
5074
|
"kind": "expression",
|
|
5078
5075
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
@@ -5143,7 +5140,6 @@
|
|
|
5143
5140
|
"name": "color",
|
|
5144
5141
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
|
|
5145
5142
|
"required": false,
|
|
5146
|
-
"default": "'primary'",
|
|
5147
5143
|
"value": {
|
|
5148
5144
|
"kind": "expression",
|
|
5149
5145
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
@@ -5172,234 +5168,6 @@
|
|
|
5172
5168
|
"slots": [],
|
|
5173
5169
|
"events": []
|
|
5174
5170
|
},
|
|
5175
|
-
{
|
|
5176
|
-
"name": "IonPickerLegacy",
|
|
5177
|
-
"doc-url": "https://ionicframework.com/docs/api/picker-legacy",
|
|
5178
|
-
"description": "",
|
|
5179
|
-
"source": {
|
|
5180
|
-
"module": "@ionic/core/src/components/picker-legacy/picker.d.ts",
|
|
5181
|
-
"symbol": "PickerLegacy"
|
|
5182
|
-
},
|
|
5183
|
-
"attributes": [
|
|
5184
|
-
{
|
|
5185
|
-
"name": "animated",
|
|
5186
|
-
"description": "If `true`, the picker will animate.",
|
|
5187
|
-
"required": false,
|
|
5188
|
-
"default": "true",
|
|
5189
|
-
"value": {
|
|
5190
|
-
"kind": "expression",
|
|
5191
|
-
"type": "boolean"
|
|
5192
|
-
}
|
|
5193
|
-
},
|
|
5194
|
-
{
|
|
5195
|
-
"name": "backdrop-dismiss",
|
|
5196
|
-
"description": "If `true`, the picker will be dismissed when the backdrop is clicked.",
|
|
5197
|
-
"required": false,
|
|
5198
|
-
"default": "true",
|
|
5199
|
-
"value": {
|
|
5200
|
-
"kind": "expression",
|
|
5201
|
-
"type": "boolean"
|
|
5202
|
-
}
|
|
5203
|
-
},
|
|
5204
|
-
{
|
|
5205
|
-
"name": "buttons",
|
|
5206
|
-
"description": "Array of buttons to be displayed at the top of the picker.",
|
|
5207
|
-
"required": false,
|
|
5208
|
-
"default": "[]",
|
|
5209
|
-
"value": {
|
|
5210
|
-
"kind": "expression",
|
|
5211
|
-
"type": "PickerButton[]"
|
|
5212
|
-
}
|
|
5213
|
-
},
|
|
5214
|
-
{
|
|
5215
|
-
"name": "columns",
|
|
5216
|
-
"description": "Array of columns to be displayed in the picker.",
|
|
5217
|
-
"required": false,
|
|
5218
|
-
"default": "[]",
|
|
5219
|
-
"value": {
|
|
5220
|
-
"kind": "expression",
|
|
5221
|
-
"type": "PickerColumn[]"
|
|
5222
|
-
}
|
|
5223
|
-
},
|
|
5224
|
-
{
|
|
5225
|
-
"name": "css-class",
|
|
5226
|
-
"description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces.",
|
|
5227
|
-
"required": false,
|
|
5228
|
-
"value": {
|
|
5229
|
-
"kind": "expression",
|
|
5230
|
-
"type": "string | string[] | undefined"
|
|
5231
|
-
}
|
|
5232
|
-
},
|
|
5233
|
-
{
|
|
5234
|
-
"name": "duration",
|
|
5235
|
-
"description": "Number of milliseconds to wait before dismissing the picker.",
|
|
5236
|
-
"required": false,
|
|
5237
|
-
"default": "0",
|
|
5238
|
-
"value": {
|
|
5239
|
-
"kind": "expression",
|
|
5240
|
-
"type": "number"
|
|
5241
|
-
}
|
|
5242
|
-
},
|
|
5243
|
-
{
|
|
5244
|
-
"name": "enterAnimation",
|
|
5245
|
-
"description": "Animation to use when the picker is presented.",
|
|
5246
|
-
"required": false,
|
|
5247
|
-
"value": {
|
|
5248
|
-
"kind": "expression",
|
|
5249
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined"
|
|
5250
|
-
}
|
|
5251
|
-
},
|
|
5252
|
-
{
|
|
5253
|
-
"name": "htmlAttributes",
|
|
5254
|
-
"description": "Additional attributes to pass to the picker.",
|
|
5255
|
-
"required": false,
|
|
5256
|
-
"value": {
|
|
5257
|
-
"kind": "expression",
|
|
5258
|
-
"type": "undefined | { [key: string]: any; }"
|
|
5259
|
-
}
|
|
5260
|
-
},
|
|
5261
|
-
{
|
|
5262
|
-
"name": "is-open",
|
|
5263
|
-
"description": "If `true`, the picker will open. If `false`, the picker will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the pickerController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe picker dismisses. You will need to do that in your code.",
|
|
5264
|
-
"required": false,
|
|
5265
|
-
"default": "false",
|
|
5266
|
-
"value": {
|
|
5267
|
-
"kind": "expression",
|
|
5268
|
-
"type": "boolean"
|
|
5269
|
-
}
|
|
5270
|
-
},
|
|
5271
|
-
{
|
|
5272
|
-
"name": "keyboard-close",
|
|
5273
|
-
"description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented.",
|
|
5274
|
-
"required": false,
|
|
5275
|
-
"default": "true",
|
|
5276
|
-
"value": {
|
|
5277
|
-
"kind": "expression",
|
|
5278
|
-
"type": "boolean"
|
|
5279
|
-
}
|
|
5280
|
-
},
|
|
5281
|
-
{
|
|
5282
|
-
"name": "leaveAnimation",
|
|
5283
|
-
"description": "Animation to use when the picker is dismissed.",
|
|
5284
|
-
"required": false,
|
|
5285
|
-
"value": {
|
|
5286
|
-
"kind": "expression",
|
|
5287
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined"
|
|
5288
|
-
}
|
|
5289
|
-
},
|
|
5290
|
-
{
|
|
5291
|
-
"name": "mode",
|
|
5292
|
-
"description": "The mode determines which platform styles to use.",
|
|
5293
|
-
"required": false,
|
|
5294
|
-
"value": {
|
|
5295
|
-
"kind": "expression",
|
|
5296
|
-
"type": "\"ios\" | \"md\""
|
|
5297
|
-
}
|
|
5298
|
-
},
|
|
5299
|
-
{
|
|
5300
|
-
"name": "show-backdrop",
|
|
5301
|
-
"description": "If `true`, a backdrop will be displayed behind the picker.",
|
|
5302
|
-
"required": false,
|
|
5303
|
-
"default": "true",
|
|
5304
|
-
"value": {
|
|
5305
|
-
"kind": "expression",
|
|
5306
|
-
"type": "boolean"
|
|
5307
|
-
}
|
|
5308
|
-
},
|
|
5309
|
-
{
|
|
5310
|
-
"name": "trigger",
|
|
5311
|
-
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
5312
|
-
"required": false,
|
|
5313
|
-
"value": {
|
|
5314
|
-
"kind": "expression",
|
|
5315
|
-
"type": "string | undefined"
|
|
5316
|
-
}
|
|
5317
|
-
}
|
|
5318
|
-
],
|
|
5319
|
-
"slots": [],
|
|
5320
|
-
"events": [
|
|
5321
|
-
{
|
|
5322
|
-
"name": "didDismiss",
|
|
5323
|
-
"description": "Emitted after the picker has dismissed.\nShorthand for ionPickerDidDismiss.",
|
|
5324
|
-
"arguments": [
|
|
5325
|
-
{
|
|
5326
|
-
"name": "detail",
|
|
5327
|
-
"type": "OverlayEventDetail<any>"
|
|
5328
|
-
}
|
|
5329
|
-
]
|
|
5330
|
-
},
|
|
5331
|
-
{
|
|
5332
|
-
"name": "didPresent",
|
|
5333
|
-
"description": "Emitted after the picker has presented.\nShorthand for ionPickerWillDismiss.",
|
|
5334
|
-
"arguments": [
|
|
5335
|
-
{
|
|
5336
|
-
"name": "detail",
|
|
5337
|
-
"type": "void"
|
|
5338
|
-
}
|
|
5339
|
-
]
|
|
5340
|
-
},
|
|
5341
|
-
{
|
|
5342
|
-
"name": "ionPickerDidDismiss",
|
|
5343
|
-
"description": "Emitted after the picker has dismissed.",
|
|
5344
|
-
"arguments": [
|
|
5345
|
-
{
|
|
5346
|
-
"name": "detail",
|
|
5347
|
-
"type": "OverlayEventDetail<any>"
|
|
5348
|
-
}
|
|
5349
|
-
]
|
|
5350
|
-
},
|
|
5351
|
-
{
|
|
5352
|
-
"name": "ionPickerDidPresent",
|
|
5353
|
-
"description": "Emitted after the picker has presented.",
|
|
5354
|
-
"arguments": [
|
|
5355
|
-
{
|
|
5356
|
-
"name": "detail",
|
|
5357
|
-
"type": "void"
|
|
5358
|
-
}
|
|
5359
|
-
]
|
|
5360
|
-
},
|
|
5361
|
-
{
|
|
5362
|
-
"name": "ionPickerWillDismiss",
|
|
5363
|
-
"description": "Emitted before the picker has dismissed.",
|
|
5364
|
-
"arguments": [
|
|
5365
|
-
{
|
|
5366
|
-
"name": "detail",
|
|
5367
|
-
"type": "OverlayEventDetail<any>"
|
|
5368
|
-
}
|
|
5369
|
-
]
|
|
5370
|
-
},
|
|
5371
|
-
{
|
|
5372
|
-
"name": "ionPickerWillPresent",
|
|
5373
|
-
"description": "Emitted before the picker has presented.",
|
|
5374
|
-
"arguments": [
|
|
5375
|
-
{
|
|
5376
|
-
"name": "detail",
|
|
5377
|
-
"type": "void"
|
|
5378
|
-
}
|
|
5379
|
-
]
|
|
5380
|
-
},
|
|
5381
|
-
{
|
|
5382
|
-
"name": "willDismiss",
|
|
5383
|
-
"description": "Emitted before the picker has dismissed.\nShorthand for ionPickerWillDismiss.",
|
|
5384
|
-
"arguments": [
|
|
5385
|
-
{
|
|
5386
|
-
"name": "detail",
|
|
5387
|
-
"type": "OverlayEventDetail<any>"
|
|
5388
|
-
}
|
|
5389
|
-
]
|
|
5390
|
-
},
|
|
5391
|
-
{
|
|
5392
|
-
"name": "willPresent",
|
|
5393
|
-
"description": "Emitted before the picker has presented.\nShorthand for ionPickerWillPresent.",
|
|
5394
|
-
"arguments": [
|
|
5395
|
-
{
|
|
5396
|
-
"name": "detail",
|
|
5397
|
-
"type": "void"
|
|
5398
|
-
}
|
|
5399
|
-
]
|
|
5400
|
-
}
|
|
5401
|
-
]
|
|
5402
|
-
},
|
|
5403
5171
|
{
|
|
5404
5172
|
"name": "IonPopover",
|
|
5405
5173
|
"doc-url": "https://ionicframework.com/docs/api/popover",
|
|
@@ -6547,7 +6315,7 @@
|
|
|
6547
6315
|
},
|
|
6548
6316
|
{
|
|
6549
6317
|
"name": "component",
|
|
6550
|
-
"description": "Name of the component to load/select in the navigation outlet (`ion-tabs`, `ion-
|
|
6318
|
+
"description": "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.",
|
|
6551
6319
|
"required": true,
|
|
6552
6320
|
"value": {
|
|
6553
6321
|
"kind": "expression",
|
|
@@ -6643,10 +6411,10 @@
|
|
|
6643
6411
|
"name": "autocorrect",
|
|
6644
6412
|
"description": "Set the input's autocorrect property.",
|
|
6645
6413
|
"required": false,
|
|
6646
|
-
"default": "
|
|
6414
|
+
"default": "false",
|
|
6647
6415
|
"value": {
|
|
6648
6416
|
"kind": "expression",
|
|
6649
|
-
"type": "
|
|
6417
|
+
"type": "boolean"
|
|
6650
6418
|
}
|
|
6651
6419
|
},
|
|
6652
6420
|
{
|
|
@@ -7466,9 +7234,18 @@
|
|
|
7466
7234
|
"symbol": "SelectOption"
|
|
7467
7235
|
},
|
|
7468
7236
|
"attributes": [
|
|
7237
|
+
{
|
|
7238
|
+
"name": "description",
|
|
7239
|
+
"description": "Text that is placed underneath the option text to provide additional details about the option.",
|
|
7240
|
+
"required": false,
|
|
7241
|
+
"value": {
|
|
7242
|
+
"kind": "expression",
|
|
7243
|
+
"type": "string | undefined"
|
|
7244
|
+
}
|
|
7245
|
+
},
|
|
7469
7246
|
{
|
|
7470
7247
|
"name": "disabled",
|
|
7471
|
-
"description": "If `true`, the user cannot interact with the select option.
|
|
7248
|
+
"description": "If `true`, the user cannot interact with the select option.",
|
|
7472
7249
|
"required": false,
|
|
7473
7250
|
"default": "false",
|
|
7474
7251
|
"value": {
|
|
@@ -7476,6 +7253,33 @@
|
|
|
7476
7253
|
"type": "boolean"
|
|
7477
7254
|
}
|
|
7478
7255
|
},
|
|
7256
|
+
{
|
|
7257
|
+
"name": "justify",
|
|
7258
|
+
"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 `md` (the radio control is hidden there).\n\nWhen unset, the interface picks a default based on mode and control\ntype.",
|
|
7259
|
+
"required": false,
|
|
7260
|
+
"value": {
|
|
7261
|
+
"kind": "expression",
|
|
7262
|
+
"type": "\"end\" | \"space-between\" | \"start\" | undefined"
|
|
7263
|
+
}
|
|
7264
|
+
},
|
|
7265
|
+
{
|
|
7266
|
+
"name": "label-placement",
|
|
7267
|
+
"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 `md` (the radio control is hidden there).\n\nWhen unset, the interface picks a default based on mode and control\ntype.",
|
|
7268
|
+
"required": false,
|
|
7269
|
+
"value": {
|
|
7270
|
+
"kind": "expression",
|
|
7271
|
+
"type": "\"end\" | \"start\" | undefined"
|
|
7272
|
+
}
|
|
7273
|
+
},
|
|
7274
|
+
{
|
|
7275
|
+
"name": "mode",
|
|
7276
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7277
|
+
"required": false,
|
|
7278
|
+
"value": {
|
|
7279
|
+
"kind": "expression",
|
|
7280
|
+
"type": "\"ios\" | \"md\""
|
|
7281
|
+
}
|
|
7282
|
+
},
|
|
7479
7283
|
{
|
|
7480
7284
|
"name": "value",
|
|
7481
7285
|
"description": "The text value of the option.",
|
|
@@ -7486,7 +7290,20 @@
|
|
|
7486
7290
|
}
|
|
7487
7291
|
}
|
|
7488
7292
|
],
|
|
7489
|
-
"slots": [
|
|
7293
|
+
"slots": [
|
|
7294
|
+
{
|
|
7295
|
+
"name": "default",
|
|
7296
|
+
"description": "Content is placed between the named slots if provided without a slot."
|
|
7297
|
+
},
|
|
7298
|
+
{
|
|
7299
|
+
"name": "end",
|
|
7300
|
+
"description": "Content is placed to the right of the select option text in LTR, and to the left in RTL."
|
|
7301
|
+
},
|
|
7302
|
+
{
|
|
7303
|
+
"name": "start",
|
|
7304
|
+
"description": "Content is placed to the left of the select option text in LTR, and to the right in RTL."
|
|
7305
|
+
}
|
|
7306
|
+
],
|
|
7490
7307
|
"events": []
|
|
7491
7308
|
},
|
|
7492
7309
|
{
|