@ionic/vue 8.8.13 → 8.8.14-dev.11783706459.1d5a7aae
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/dist/index.js +91 -52
- 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 +1 -1
- package/dist/types/components/IonTabButton.d.ts +6 -6
- package/dist/types/components/IonTabs.d.ts +4 -4
- 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 +41 -85
- package/dist/vetur/tags.json +6 -20
- package/dist/web-types.json +58 -241
- package/package.json +5 -5
|
@@ -1534,12 +1534,9 @@
|
|
|
1534
1534
|
]
|
|
1535
1535
|
},
|
|
1536
1536
|
"ion-input/autocorrect": {
|
|
1537
|
-
"type": "
|
|
1537
|
+
"type": "boolean",
|
|
1538
1538
|
"description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
|
|
1539
|
-
"options": [
|
|
1540
|
-
"off",
|
|
1541
|
-
"on"
|
|
1542
|
-
]
|
|
1539
|
+
"options": []
|
|
1543
1540
|
},
|
|
1544
1541
|
"ion-input/autofocus": {
|
|
1545
1542
|
"type": "boolean",
|
|
@@ -2404,7 +2401,7 @@
|
|
|
2404
2401
|
},
|
|
2405
2402
|
"ion-modal/handle-behavior": {
|
|
2406
2403
|
"type": "\"cycle\" | \"none\" | undefined",
|
|
2407
|
-
"description": "The interaction behavior for the sheet modal when the handle is pressed.\n\
|
|
2404
|
+
"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\"`.",
|
|
2408
2405
|
"options": [
|
|
2409
2406
|
"cycle",
|
|
2410
2407
|
"none"
|
|
@@ -2601,79 +2598,6 @@
|
|
|
2601
2598
|
"description": "The text value of the option.",
|
|
2602
2599
|
"options": []
|
|
2603
2600
|
},
|
|
2604
|
-
"ion-picker-legacy/animated": {
|
|
2605
|
-
"type": "boolean",
|
|
2606
|
-
"description": "If `true`, the picker will animate.",
|
|
2607
|
-
"options": []
|
|
2608
|
-
},
|
|
2609
|
-
"ion-picker-legacy/backdrop-dismiss": {
|
|
2610
|
-
"type": "boolean",
|
|
2611
|
-
"description": "If `true`, the picker will be dismissed when the backdrop is clicked.",
|
|
2612
|
-
"options": []
|
|
2613
|
-
},
|
|
2614
|
-
"ion-picker-legacy/buttons": {
|
|
2615
|
-
"type": "PickerButton[]",
|
|
2616
|
-
"description": "Array of buttons to be displayed at the top of the picker.",
|
|
2617
|
-
"options": []
|
|
2618
|
-
},
|
|
2619
|
-
"ion-picker-legacy/columns": {
|
|
2620
|
-
"type": "PickerColumn[]",
|
|
2621
|
-
"description": "Array of columns to be displayed in the picker.",
|
|
2622
|
-
"options": []
|
|
2623
|
-
},
|
|
2624
|
-
"ion-picker-legacy/css-class": {
|
|
2625
|
-
"type": "string | string[] | undefined",
|
|
2626
|
-
"description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces.",
|
|
2627
|
-
"options": []
|
|
2628
|
-
},
|
|
2629
|
-
"ion-picker-legacy/duration": {
|
|
2630
|
-
"type": "number",
|
|
2631
|
-
"description": "Number of milliseconds to wait before dismissing the picker.",
|
|
2632
|
-
"options": []
|
|
2633
|
-
},
|
|
2634
|
-
"ion-picker-legacy/enter-animation": {
|
|
2635
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2636
|
-
"description": "Animation to use when the picker is presented.",
|
|
2637
|
-
"options": []
|
|
2638
|
-
},
|
|
2639
|
-
"ion-picker-legacy/html-attributes": {
|
|
2640
|
-
"type": "undefined | { [key: string]: any; }",
|
|
2641
|
-
"description": "Additional attributes to pass to the picker.",
|
|
2642
|
-
"options": []
|
|
2643
|
-
},
|
|
2644
|
-
"ion-picker-legacy/is-open": {
|
|
2645
|
-
"type": "boolean",
|
|
2646
|
-
"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.",
|
|
2647
|
-
"options": []
|
|
2648
|
-
},
|
|
2649
|
-
"ion-picker-legacy/keyboard-close": {
|
|
2650
|
-
"type": "boolean",
|
|
2651
|
-
"description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented.",
|
|
2652
|
-
"options": []
|
|
2653
|
-
},
|
|
2654
|
-
"ion-picker-legacy/leave-animation": {
|
|
2655
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
2656
|
-
"description": "Animation to use when the picker is dismissed.",
|
|
2657
|
-
"options": []
|
|
2658
|
-
},
|
|
2659
|
-
"ion-picker-legacy/mode": {
|
|
2660
|
-
"type": "\"ios\" | \"md\"",
|
|
2661
|
-
"description": "The mode determines which platform styles to use.",
|
|
2662
|
-
"options": [
|
|
2663
|
-
"ios",
|
|
2664
|
-
"md"
|
|
2665
|
-
]
|
|
2666
|
-
},
|
|
2667
|
-
"ion-picker-legacy/show-backdrop": {
|
|
2668
|
-
"type": "boolean",
|
|
2669
|
-
"description": "If `true`, a backdrop will be displayed behind the picker.",
|
|
2670
|
-
"options": []
|
|
2671
|
-
},
|
|
2672
|
-
"ion-picker-legacy/trigger": {
|
|
2673
|
-
"type": "string | undefined",
|
|
2674
|
-
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
2675
|
-
"options": []
|
|
2676
|
-
},
|
|
2677
2601
|
"ion-popover/alignment": {
|
|
2678
2602
|
"type": "\"center\" | \"end\" | \"start\" | undefined",
|
|
2679
2603
|
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `ios` mode, and `\"start\"` for `md` mode.",
|
|
@@ -3245,6 +3169,11 @@
|
|
|
3245
3169
|
"md"
|
|
3246
3170
|
]
|
|
3247
3171
|
},
|
|
3172
|
+
"ion-router-outlet/swipe-gesture": {
|
|
3173
|
+
"type": "boolean | undefined",
|
|
3174
|
+
"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.",
|
|
3175
|
+
"options": []
|
|
3176
|
+
},
|
|
3248
3177
|
"ion-searchbar/animated": {
|
|
3249
3178
|
"type": "boolean",
|
|
3250
3179
|
"description": "If `true`, enable searchbar animation.",
|
|
@@ -3316,12 +3245,9 @@
|
|
|
3316
3245
|
]
|
|
3317
3246
|
},
|
|
3318
3247
|
"ion-searchbar/autocorrect": {
|
|
3319
|
-
"type": "
|
|
3248
|
+
"type": "boolean",
|
|
3320
3249
|
"description": "Set the input's autocorrect property.",
|
|
3321
|
-
"options": [
|
|
3322
|
-
"off",
|
|
3323
|
-
"on"
|
|
3324
|
-
]
|
|
3250
|
+
"options": []
|
|
3325
3251
|
},
|
|
3326
3252
|
"ion-searchbar/cancel-button-icon": {
|
|
3327
3253
|
"type": "string",
|
|
@@ -3734,11 +3660,41 @@
|
|
|
3734
3660
|
"description": "",
|
|
3735
3661
|
"options": []
|
|
3736
3662
|
},
|
|
3663
|
+
"ion-select-option/description": {
|
|
3664
|
+
"type": "string | undefined",
|
|
3665
|
+
"description": "Text that is placed underneath the option text to provide additional details about the option.",
|
|
3666
|
+
"options": []
|
|
3667
|
+
},
|
|
3737
3668
|
"ion-select-option/disabled": {
|
|
3738
3669
|
"type": "boolean",
|
|
3739
|
-
"description": "If `true`, the user cannot interact with the select option.
|
|
3670
|
+
"description": "If `true`, the user cannot interact with the select option.",
|
|
3740
3671
|
"options": []
|
|
3741
3672
|
},
|
|
3673
|
+
"ion-select-option/justify": {
|
|
3674
|
+
"type": "\"end\" | \"space-between\" | \"start\" | undefined",
|
|
3675
|
+
"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.",
|
|
3676
|
+
"options": [
|
|
3677
|
+
"end",
|
|
3678
|
+
"space-between",
|
|
3679
|
+
"start"
|
|
3680
|
+
]
|
|
3681
|
+
},
|
|
3682
|
+
"ion-select-option/label-placement": {
|
|
3683
|
+
"type": "\"end\" | \"start\" | undefined",
|
|
3684
|
+
"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.",
|
|
3685
|
+
"options": [
|
|
3686
|
+
"end",
|
|
3687
|
+
"start"
|
|
3688
|
+
]
|
|
3689
|
+
},
|
|
3690
|
+
"ion-select-option/mode": {
|
|
3691
|
+
"type": "\"ios\" | \"md\"",
|
|
3692
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3693
|
+
"options": [
|
|
3694
|
+
"ios",
|
|
3695
|
+
"md"
|
|
3696
|
+
]
|
|
3697
|
+
},
|
|
3742
3698
|
"ion-select-option/value": {
|
|
3743
3699
|
"type": "any",
|
|
3744
3700
|
"description": "The text value of the option.",
|
package/dist/vetur/tags.json
CHANGED
|
@@ -662,25 +662,6 @@
|
|
|
662
662
|
"value"
|
|
663
663
|
]
|
|
664
664
|
},
|
|
665
|
-
"ion-picker-legacy": {
|
|
666
|
-
"description": "",
|
|
667
|
-
"attributes": [
|
|
668
|
-
"animated",
|
|
669
|
-
"backdrop-dismiss",
|
|
670
|
-
"buttons",
|
|
671
|
-
"columns",
|
|
672
|
-
"css-class",
|
|
673
|
-
"duration",
|
|
674
|
-
"enter-animation",
|
|
675
|
-
"html-attributes",
|
|
676
|
-
"is-open",
|
|
677
|
-
"keyboard-close",
|
|
678
|
-
"leave-animation",
|
|
679
|
-
"mode",
|
|
680
|
-
"show-backdrop",
|
|
681
|
-
"trigger"
|
|
682
|
-
]
|
|
683
|
-
},
|
|
684
665
|
"ion-popover": {
|
|
685
666
|
"description": "",
|
|
686
667
|
"attributes": [
|
|
@@ -843,7 +824,8 @@
|
|
|
843
824
|
"attributes": [
|
|
844
825
|
"animated",
|
|
845
826
|
"animation",
|
|
846
|
-
"mode"
|
|
827
|
+
"mode",
|
|
828
|
+
"swipe-gesture"
|
|
847
829
|
]
|
|
848
830
|
},
|
|
849
831
|
"ion-row": {
|
|
@@ -952,7 +934,11 @@
|
|
|
952
934
|
"ion-select-option": {
|
|
953
935
|
"description": "",
|
|
954
936
|
"attributes": [
|
|
937
|
+
"description",
|
|
955
938
|
"disabled",
|
|
939
|
+
"justify",
|
|
940
|
+
"label-placement",
|
|
941
|
+
"mode",
|
|
956
942
|
"value"
|
|
957
943
|
]
|
|
958
944
|
},
|
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": "8.8.
|
|
5
|
+
"version": "8.8.14-dev.11783706459.1d5a7aae",
|
|
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, see [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"
|
|
@@ -3067,10 +3065,10 @@
|
|
|
3067
3065
|
"name": "autocorrect",
|
|
3068
3066
|
"description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
|
|
3069
3067
|
"required": false,
|
|
3070
|
-
"default": "
|
|
3068
|
+
"default": "false",
|
|
3071
3069
|
"value": {
|
|
3072
3070
|
"kind": "expression",
|
|
3073
|
-
"type": "
|
|
3071
|
+
"type": "boolean"
|
|
3074
3072
|
}
|
|
3075
3073
|
},
|
|
3076
3074
|
{
|
|
@@ -4765,9 +4763,9 @@
|
|
|
4765
4763
|
},
|
|
4766
4764
|
{
|
|
4767
4765
|
"name": "handle-behavior",
|
|
4768
|
-
"description": "The interaction behavior for the sheet modal when the handle is pressed.\n\
|
|
4766
|
+
"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\"`.",
|
|
4769
4767
|
"required": false,
|
|
4770
|
-
"default": "'
|
|
4768
|
+
"default": "'cycle'",
|
|
4771
4769
|
"value": {
|
|
4772
4770
|
"kind": "expression",
|
|
4773
4771
|
"type": "\"cycle\" | \"none\" | undefined"
|
|
@@ -5063,7 +5061,6 @@
|
|
|
5063
5061
|
"name": "color",
|
|
5064
5062
|
"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).",
|
|
5065
5063
|
"required": false,
|
|
5066
|
-
"default": "'primary'",
|
|
5067
5064
|
"value": {
|
|
5068
5065
|
"kind": "expression",
|
|
5069
5066
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
@@ -5134,7 +5131,6 @@
|
|
|
5134
5131
|
"name": "color",
|
|
5135
5132
|
"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).",
|
|
5136
5133
|
"required": false,
|
|
5137
|
-
"default": "'primary'",
|
|
5138
5134
|
"value": {
|
|
5139
5135
|
"kind": "expression",
|
|
5140
5136
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\" | string & Record<never, never> | undefined"
|
|
@@ -5163,234 +5159,6 @@
|
|
|
5163
5159
|
"slots": [],
|
|
5164
5160
|
"events": []
|
|
5165
5161
|
},
|
|
5166
|
-
{
|
|
5167
|
-
"name": "IonPickerLegacy",
|
|
5168
|
-
"doc-url": "https://ionicframework.com/docs/api/picker-legacy",
|
|
5169
|
-
"description": "",
|
|
5170
|
-
"source": {
|
|
5171
|
-
"module": "@ionic/core/src/components/picker-legacy/picker.d.ts",
|
|
5172
|
-
"symbol": "PickerLegacy"
|
|
5173
|
-
},
|
|
5174
|
-
"attributes": [
|
|
5175
|
-
{
|
|
5176
|
-
"name": "animated",
|
|
5177
|
-
"description": "If `true`, the picker will animate.",
|
|
5178
|
-
"required": false,
|
|
5179
|
-
"default": "true",
|
|
5180
|
-
"value": {
|
|
5181
|
-
"kind": "expression",
|
|
5182
|
-
"type": "boolean"
|
|
5183
|
-
}
|
|
5184
|
-
},
|
|
5185
|
-
{
|
|
5186
|
-
"name": "backdrop-dismiss",
|
|
5187
|
-
"description": "If `true`, the picker will be dismissed when the backdrop is clicked.",
|
|
5188
|
-
"required": false,
|
|
5189
|
-
"default": "true",
|
|
5190
|
-
"value": {
|
|
5191
|
-
"kind": "expression",
|
|
5192
|
-
"type": "boolean"
|
|
5193
|
-
}
|
|
5194
|
-
},
|
|
5195
|
-
{
|
|
5196
|
-
"name": "buttons",
|
|
5197
|
-
"description": "Array of buttons to be displayed at the top of the picker.",
|
|
5198
|
-
"required": false,
|
|
5199
|
-
"default": "[]",
|
|
5200
|
-
"value": {
|
|
5201
|
-
"kind": "expression",
|
|
5202
|
-
"type": "PickerButton[]"
|
|
5203
|
-
}
|
|
5204
|
-
},
|
|
5205
|
-
{
|
|
5206
|
-
"name": "columns",
|
|
5207
|
-
"description": "Array of columns to be displayed in the picker.",
|
|
5208
|
-
"required": false,
|
|
5209
|
-
"default": "[]",
|
|
5210
|
-
"value": {
|
|
5211
|
-
"kind": "expression",
|
|
5212
|
-
"type": "PickerColumn[]"
|
|
5213
|
-
}
|
|
5214
|
-
},
|
|
5215
|
-
{
|
|
5216
|
-
"name": "css-class",
|
|
5217
|
-
"description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces.",
|
|
5218
|
-
"required": false,
|
|
5219
|
-
"value": {
|
|
5220
|
-
"kind": "expression",
|
|
5221
|
-
"type": "string | string[] | undefined"
|
|
5222
|
-
}
|
|
5223
|
-
},
|
|
5224
|
-
{
|
|
5225
|
-
"name": "duration",
|
|
5226
|
-
"description": "Number of milliseconds to wait before dismissing the picker.",
|
|
5227
|
-
"required": false,
|
|
5228
|
-
"default": "0",
|
|
5229
|
-
"value": {
|
|
5230
|
-
"kind": "expression",
|
|
5231
|
-
"type": "number"
|
|
5232
|
-
}
|
|
5233
|
-
},
|
|
5234
|
-
{
|
|
5235
|
-
"name": "enterAnimation",
|
|
5236
|
-
"description": "Animation to use when the picker is presented.",
|
|
5237
|
-
"required": false,
|
|
5238
|
-
"value": {
|
|
5239
|
-
"kind": "expression",
|
|
5240
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined"
|
|
5241
|
-
}
|
|
5242
|
-
},
|
|
5243
|
-
{
|
|
5244
|
-
"name": "htmlAttributes",
|
|
5245
|
-
"description": "Additional attributes to pass to the picker.",
|
|
5246
|
-
"required": false,
|
|
5247
|
-
"value": {
|
|
5248
|
-
"kind": "expression",
|
|
5249
|
-
"type": "undefined | { [key: string]: any; }"
|
|
5250
|
-
}
|
|
5251
|
-
},
|
|
5252
|
-
{
|
|
5253
|
-
"name": "is-open",
|
|
5254
|
-
"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.",
|
|
5255
|
-
"required": false,
|
|
5256
|
-
"default": "false",
|
|
5257
|
-
"value": {
|
|
5258
|
-
"kind": "expression",
|
|
5259
|
-
"type": "boolean"
|
|
5260
|
-
}
|
|
5261
|
-
},
|
|
5262
|
-
{
|
|
5263
|
-
"name": "keyboard-close",
|
|
5264
|
-
"description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented.",
|
|
5265
|
-
"required": false,
|
|
5266
|
-
"default": "true",
|
|
5267
|
-
"value": {
|
|
5268
|
-
"kind": "expression",
|
|
5269
|
-
"type": "boolean"
|
|
5270
|
-
}
|
|
5271
|
-
},
|
|
5272
|
-
{
|
|
5273
|
-
"name": "leaveAnimation",
|
|
5274
|
-
"description": "Animation to use when the picker is dismissed.",
|
|
5275
|
-
"required": false,
|
|
5276
|
-
"value": {
|
|
5277
|
-
"kind": "expression",
|
|
5278
|
-
"type": "((baseEl: any, opts?: any) => Animation) | undefined"
|
|
5279
|
-
}
|
|
5280
|
-
},
|
|
5281
|
-
{
|
|
5282
|
-
"name": "mode",
|
|
5283
|
-
"description": "The mode determines which platform styles to use.",
|
|
5284
|
-
"required": false,
|
|
5285
|
-
"value": {
|
|
5286
|
-
"kind": "expression",
|
|
5287
|
-
"type": "\"ios\" | \"md\""
|
|
5288
|
-
}
|
|
5289
|
-
},
|
|
5290
|
-
{
|
|
5291
|
-
"name": "show-backdrop",
|
|
5292
|
-
"description": "If `true`, a backdrop will be displayed behind the picker.",
|
|
5293
|
-
"required": false,
|
|
5294
|
-
"default": "true",
|
|
5295
|
-
"value": {
|
|
5296
|
-
"kind": "expression",
|
|
5297
|
-
"type": "boolean"
|
|
5298
|
-
}
|
|
5299
|
-
},
|
|
5300
|
-
{
|
|
5301
|
-
"name": "trigger",
|
|
5302
|
-
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked.",
|
|
5303
|
-
"required": false,
|
|
5304
|
-
"value": {
|
|
5305
|
-
"kind": "expression",
|
|
5306
|
-
"type": "string | undefined"
|
|
5307
|
-
}
|
|
5308
|
-
}
|
|
5309
|
-
],
|
|
5310
|
-
"slots": [],
|
|
5311
|
-
"events": [
|
|
5312
|
-
{
|
|
5313
|
-
"name": "didDismiss",
|
|
5314
|
-
"description": "Emitted after the picker has dismissed.\nShorthand for ionPickerDidDismiss.",
|
|
5315
|
-
"arguments": [
|
|
5316
|
-
{
|
|
5317
|
-
"name": "detail",
|
|
5318
|
-
"type": "OverlayEventDetail<any>"
|
|
5319
|
-
}
|
|
5320
|
-
]
|
|
5321
|
-
},
|
|
5322
|
-
{
|
|
5323
|
-
"name": "didPresent",
|
|
5324
|
-
"description": "Emitted after the picker has presented.\nShorthand for ionPickerWillDismiss.",
|
|
5325
|
-
"arguments": [
|
|
5326
|
-
{
|
|
5327
|
-
"name": "detail",
|
|
5328
|
-
"type": "void"
|
|
5329
|
-
}
|
|
5330
|
-
]
|
|
5331
|
-
},
|
|
5332
|
-
{
|
|
5333
|
-
"name": "ionPickerDidDismiss",
|
|
5334
|
-
"description": "Emitted after the picker has dismissed.",
|
|
5335
|
-
"arguments": [
|
|
5336
|
-
{
|
|
5337
|
-
"name": "detail",
|
|
5338
|
-
"type": "OverlayEventDetail<any>"
|
|
5339
|
-
}
|
|
5340
|
-
]
|
|
5341
|
-
},
|
|
5342
|
-
{
|
|
5343
|
-
"name": "ionPickerDidPresent",
|
|
5344
|
-
"description": "Emitted after the picker has presented.",
|
|
5345
|
-
"arguments": [
|
|
5346
|
-
{
|
|
5347
|
-
"name": "detail",
|
|
5348
|
-
"type": "void"
|
|
5349
|
-
}
|
|
5350
|
-
]
|
|
5351
|
-
},
|
|
5352
|
-
{
|
|
5353
|
-
"name": "ionPickerWillDismiss",
|
|
5354
|
-
"description": "Emitted before the picker has dismissed.",
|
|
5355
|
-
"arguments": [
|
|
5356
|
-
{
|
|
5357
|
-
"name": "detail",
|
|
5358
|
-
"type": "OverlayEventDetail<any>"
|
|
5359
|
-
}
|
|
5360
|
-
]
|
|
5361
|
-
},
|
|
5362
|
-
{
|
|
5363
|
-
"name": "ionPickerWillPresent",
|
|
5364
|
-
"description": "Emitted before the picker has presented.",
|
|
5365
|
-
"arguments": [
|
|
5366
|
-
{
|
|
5367
|
-
"name": "detail",
|
|
5368
|
-
"type": "void"
|
|
5369
|
-
}
|
|
5370
|
-
]
|
|
5371
|
-
},
|
|
5372
|
-
{
|
|
5373
|
-
"name": "willDismiss",
|
|
5374
|
-
"description": "Emitted before the picker has dismissed.\nShorthand for ionPickerWillDismiss.",
|
|
5375
|
-
"arguments": [
|
|
5376
|
-
{
|
|
5377
|
-
"name": "detail",
|
|
5378
|
-
"type": "OverlayEventDetail<any>"
|
|
5379
|
-
}
|
|
5380
|
-
]
|
|
5381
|
-
},
|
|
5382
|
-
{
|
|
5383
|
-
"name": "willPresent",
|
|
5384
|
-
"description": "Emitted before the picker has presented.\nShorthand for ionPickerWillPresent.",
|
|
5385
|
-
"arguments": [
|
|
5386
|
-
{
|
|
5387
|
-
"name": "detail",
|
|
5388
|
-
"type": "void"
|
|
5389
|
-
}
|
|
5390
|
-
]
|
|
5391
|
-
}
|
|
5392
|
-
]
|
|
5393
|
-
},
|
|
5394
5162
|
{
|
|
5395
5163
|
"name": "IonPopover",
|
|
5396
5164
|
"doc-url": "https://ionicframework.com/docs/api/popover",
|
|
@@ -6634,10 +6402,10 @@
|
|
|
6634
6402
|
"name": "autocorrect",
|
|
6635
6403
|
"description": "Set the input's autocorrect property.",
|
|
6636
6404
|
"required": false,
|
|
6637
|
-
"default": "
|
|
6405
|
+
"default": "false",
|
|
6638
6406
|
"value": {
|
|
6639
6407
|
"kind": "expression",
|
|
6640
|
-
"type": "
|
|
6408
|
+
"type": "boolean"
|
|
6641
6409
|
}
|
|
6642
6410
|
},
|
|
6643
6411
|
{
|
|
@@ -7457,9 +7225,18 @@
|
|
|
7457
7225
|
"symbol": "SelectOption"
|
|
7458
7226
|
},
|
|
7459
7227
|
"attributes": [
|
|
7228
|
+
{
|
|
7229
|
+
"name": "description",
|
|
7230
|
+
"description": "Text that is placed underneath the option text to provide additional details about the option.",
|
|
7231
|
+
"required": false,
|
|
7232
|
+
"value": {
|
|
7233
|
+
"kind": "expression",
|
|
7234
|
+
"type": "string | undefined"
|
|
7235
|
+
}
|
|
7236
|
+
},
|
|
7460
7237
|
{
|
|
7461
7238
|
"name": "disabled",
|
|
7462
|
-
"description": "If `true`, the user cannot interact with the select option.
|
|
7239
|
+
"description": "If `true`, the user cannot interact with the select option.",
|
|
7463
7240
|
"required": false,
|
|
7464
7241
|
"default": "false",
|
|
7465
7242
|
"value": {
|
|
@@ -7467,6 +7244,33 @@
|
|
|
7467
7244
|
"type": "boolean"
|
|
7468
7245
|
}
|
|
7469
7246
|
},
|
|
7247
|
+
{
|
|
7248
|
+
"name": "justify",
|
|
7249
|
+
"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.",
|
|
7250
|
+
"required": false,
|
|
7251
|
+
"value": {
|
|
7252
|
+
"kind": "expression",
|
|
7253
|
+
"type": "\"end\" | \"space-between\" | \"start\" | undefined"
|
|
7254
|
+
}
|
|
7255
|
+
},
|
|
7256
|
+
{
|
|
7257
|
+
"name": "label-placement",
|
|
7258
|
+
"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.",
|
|
7259
|
+
"required": false,
|
|
7260
|
+
"value": {
|
|
7261
|
+
"kind": "expression",
|
|
7262
|
+
"type": "\"end\" | \"start\" | undefined"
|
|
7263
|
+
}
|
|
7264
|
+
},
|
|
7265
|
+
{
|
|
7266
|
+
"name": "mode",
|
|
7267
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7268
|
+
"required": false,
|
|
7269
|
+
"value": {
|
|
7270
|
+
"kind": "expression",
|
|
7271
|
+
"type": "\"ios\" | \"md\""
|
|
7272
|
+
}
|
|
7273
|
+
},
|
|
7470
7274
|
{
|
|
7471
7275
|
"name": "value",
|
|
7472
7276
|
"description": "The text value of the option.",
|
|
@@ -7477,7 +7281,20 @@
|
|
|
7477
7281
|
}
|
|
7478
7282
|
}
|
|
7479
7283
|
],
|
|
7480
|
-
"slots": [
|
|
7284
|
+
"slots": [
|
|
7285
|
+
{
|
|
7286
|
+
"name": "default",
|
|
7287
|
+
"description": "Content is placed between the named slots if provided without a slot."
|
|
7288
|
+
},
|
|
7289
|
+
{
|
|
7290
|
+
"name": "end",
|
|
7291
|
+
"description": "Content is placed to the right of the select option text in LTR, and to the left in RTL."
|
|
7292
|
+
},
|
|
7293
|
+
{
|
|
7294
|
+
"name": "start",
|
|
7295
|
+
"description": "Content is placed to the left of the select option text in LTR, and to the right in RTL."
|
|
7296
|
+
}
|
|
7297
|
+
],
|
|
7481
7298
|
"events": []
|
|
7482
7299
|
},
|
|
7483
7300
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/vue",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.14-dev.11783706459.1d5a7aae",
|
|
4
4
|
"description": "Vue specific wrapper for @ionic/core",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"eslint": "eslint src",
|
|
@@ -64,12 +64,12 @@
|
|
|
64
64
|
"rimraf": "^3.0.2",
|
|
65
65
|
"rollup": "^4.2.0",
|
|
66
66
|
"typescript": "^5.7.3",
|
|
67
|
-
"vue": "3.
|
|
68
|
-
"vue-router": "^
|
|
67
|
+
"vue": "^3.5.0",
|
|
68
|
+
"vue-router": "^5.0.6"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@ionic/core": "8.8.
|
|
72
|
-
"@stencil/vue-output-target": "0.
|
|
71
|
+
"@ionic/core": "8.8.14-dev.11783706459.1d5a7aae",
|
|
72
|
+
"@stencil/vue-output-target": "0.13.1",
|
|
73
73
|
"ionicons": "^8.0.13"
|
|
74
74
|
},
|
|
75
75
|
"vetur": {
|