@ionic/vue 8.8.10 → 8.8.11-dev.11781186446.19d9a1cc
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 +87 -51
- 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 +9 -83
- package/dist/vetur/tags.json +2 -20
- package/dist/web-types.json +5 -233
- 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",
|
|
@@ -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",
|
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": {
|
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.11-dev.11781186446.19d9a1cc",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -3067,10 +3067,10 @@
|
|
|
3067
3067
|
"name": "autocorrect",
|
|
3068
3068
|
"description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
|
|
3069
3069
|
"required": false,
|
|
3070
|
-
"default": "
|
|
3070
|
+
"default": "false",
|
|
3071
3071
|
"value": {
|
|
3072
3072
|
"kind": "expression",
|
|
3073
|
-
"type": "
|
|
3073
|
+
"type": "boolean"
|
|
3074
3074
|
}
|
|
3075
3075
|
},
|
|
3076
3076
|
{
|
|
@@ -5163,234 +5163,6 @@
|
|
|
5163
5163
|
"slots": [],
|
|
5164
5164
|
"events": []
|
|
5165
5165
|
},
|
|
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
5166
|
{
|
|
5395
5167
|
"name": "IonPopover",
|
|
5396
5168
|
"doc-url": "https://ionicframework.com/docs/api/popover",
|
|
@@ -6634,10 +6406,10 @@
|
|
|
6634
6406
|
"name": "autocorrect",
|
|
6635
6407
|
"description": "Set the input's autocorrect property.",
|
|
6636
6408
|
"required": false,
|
|
6637
|
-
"default": "
|
|
6409
|
+
"default": "false",
|
|
6638
6410
|
"value": {
|
|
6639
6411
|
"kind": "expression",
|
|
6640
|
-
"type": "
|
|
6412
|
+
"type": "boolean"
|
|
6641
6413
|
}
|
|
6642
6414
|
},
|
|
6643
6415
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/vue",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.11-dev.11781186446.19d9a1cc",
|
|
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.11-dev.11781186446.19d9a1cc",
|
|
72
|
+
"@stencil/vue-output-target": "0.13.1",
|
|
73
73
|
"ionicons": "^8.0.13"
|
|
74
74
|
},
|
|
75
75
|
"vetur": {
|