@ionic/vue 8.4.5 → 8.5.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.
@@ -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.4.5",
5
+ "version": "8.5.0",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -1562,6 +1562,24 @@
1562
1562
  "type": "boolean"
1563
1563
  }
1564
1564
  },
1565
+ {
1566
+ "name": "error-text",
1567
+ "description": "Text that is placed under the checkbox label and displayed when an error is detected.",
1568
+ "required": false,
1569
+ "value": {
1570
+ "kind": "expression",
1571
+ "type": "string | undefined"
1572
+ }
1573
+ },
1574
+ {
1575
+ "name": "helper-text",
1576
+ "description": "Text that is placed under the checkbox label and displayed when no error is detected.",
1577
+ "required": false,
1578
+ "value": {
1579
+ "kind": "expression",
1580
+ "type": "string | undefined"
1581
+ }
1582
+ },
1565
1583
  {
1566
1584
  "name": "indeterminate",
1567
1585
  "description": "If `true`, the checkbox will visually appear as indeterminate.",
@@ -1610,6 +1628,16 @@
1610
1628
  "type": "string"
1611
1629
  }
1612
1630
  },
1631
+ {
1632
+ "name": "required",
1633
+ "description": "If true, screen readers will announce it as a required field. This property\nworks only for accessibility purposes, it will not prevent the form from\nsubmitting if the value is invalid.",
1634
+ "required": false,
1635
+ "default": "false",
1636
+ "value": {
1637
+ "kind": "expression",
1638
+ "type": "boolean"
1639
+ }
1640
+ },
1613
1641
  {
1614
1642
  "name": "value",
1615
1643
  "description": "The value of the checkbox does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a checkbox is analogous to the value of an `<input type=\"checkbox\">`,\nit's only used when the checkbox participates in a native `<form>`.",
@@ -4506,6 +4534,16 @@
4506
4534
  "type": "((baseEl: any, opts?: any) => Animation) | undefined"
4507
4535
  }
4508
4536
  },
4537
+ {
4538
+ "name": "expand-to-scroll",
4539
+ "description": "Controls whether scrolling or dragging within the sheet modal expands\nit to a larger breakpoint. This only takes effect when `breakpoints`\nand `initialBreakpoint` are set.\n\nIf `true`, scrolling or dragging anywhere in the modal will first expand\nit to the next breakpoint. Once fully expanded, scrolling will affect the\ncontent.\nIf `false`, scrolling will always affect the content. The modal will\nonly expand when dragging the header or handle. The modal will close when\ndragging the header or handle. It can also be closed when dragging the\ncontent, but only if the content is scrolled to the top.",
4540
+ "required": false,
4541
+ "default": "true",
4542
+ "value": {
4543
+ "kind": "expression",
4544
+ "type": "boolean"
4545
+ }
4546
+ },
4509
4547
  {
4510
4548
  "name": "focus-trap",
4511
4549
  "description": "If `true`, focus will not be allowed to move outside of this overlay.\nIf `false`, focus will be allowed to move outside of the overlay.\n\nIn most scenarios this property should remain set to `true`. Setting\nthis property to `false` can cause severe accessibility issues as users\nrelying on assistive technologies may be able to move focus into\na confusing state. We recommend only setting this to `false` when\nabsolutely necessary.\n\nDevelopers may want to consider disabling focus trapping if this\noverlay presents a non-Ionic overlay from a 3rd party library.\nDevelopers would disable focus trapping on the Ionic overlay\nwhen presenting the 3rd party overlay and then re-enable\nfocus trapping when dismissing the 3rd party overlay and moving\nfocus back to the Ionic overlay.",
@@ -5656,6 +5694,24 @@
5656
5694
  "type": "((currentValue: any, compareValue: any) => boolean) | null | string | undefined"
5657
5695
  }
5658
5696
  },
5697
+ {
5698
+ "name": "error-text",
5699
+ "description": "The error text to display at the top of the radio group.",
5700
+ "required": false,
5701
+ "value": {
5702
+ "kind": "expression",
5703
+ "type": "string | undefined"
5704
+ }
5705
+ },
5706
+ {
5707
+ "name": "helper-text",
5708
+ "description": "The helper text to display at the top of the radio group.",
5709
+ "required": false,
5710
+ "value": {
5711
+ "kind": "expression",
5712
+ "type": "string | undefined"
5713
+ }
5714
+ },
5659
5715
  {
5660
5716
  "name": "name",
5661
5717
  "description": "The name of the control, which is submitted with the form data.",
@@ -6805,6 +6861,15 @@
6805
6861
  "type": "boolean"
6806
6862
  }
6807
6863
  },
6864
+ {
6865
+ "name": "error-text",
6866
+ "description": "Text that is placed under the select and displayed when an error is detected.",
6867
+ "required": false,
6868
+ "value": {
6869
+ "kind": "expression",
6870
+ "type": "string | undefined"
6871
+ }
6872
+ },
6808
6873
  {
6809
6874
  "name": "expanded-icon",
6810
6875
  "description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in `md` mode will be disabled. If undefined, `toggleIcon`\nwill be used for when the select is both open and closed.",
@@ -6823,6 +6888,15 @@
6823
6888
  "type": "\"outline\" | \"solid\" | undefined"
6824
6889
  }
6825
6890
  },
6891
+ {
6892
+ "name": "helper-text",
6893
+ "description": "Text that is placed under the select and displayed when no error is detected.",
6894
+ "required": false,
6895
+ "value": {
6896
+ "kind": "expression",
6897
+ "type": "string | undefined"
6898
+ }
6899
+ },
6826
6900
  {
6827
6901
  "name": "interface",
6828
6902
  "description": "The interface the select should use: `action-sheet`, `popover`, `alert`, or `modal`.",
@@ -6919,6 +6993,16 @@
6919
6993
  "type": "string | undefined"
6920
6994
  }
6921
6995
  },
6996
+ {
6997
+ "name": "required",
6998
+ "description": "If true, screen readers will announce it as a required field. This property\nworks only for accessibility purposes, it will not prevent the form from\nsubmitting if the value is invalid.",
6999
+ "required": false,
7000
+ "default": "false",
7001
+ "value": {
7002
+ "kind": "expression",
7003
+ "type": "boolean"
7004
+ }
7005
+ },
6922
7006
  {
6923
7007
  "name": "selected-text",
6924
7008
  "description": "The text to display instead of the selected option's value.",
@@ -8197,6 +8281,24 @@
8197
8281
  "type": "boolean | undefined"
8198
8282
  }
8199
8283
  },
8284
+ {
8285
+ "name": "error-text",
8286
+ "description": "Text that is placed under the toggle label and displayed when an error is detected.",
8287
+ "required": false,
8288
+ "value": {
8289
+ "kind": "expression",
8290
+ "type": "string | undefined"
8291
+ }
8292
+ },
8293
+ {
8294
+ "name": "helper-text",
8295
+ "description": "Text that is placed under the toggle label and displayed when no error is detected.",
8296
+ "required": false,
8297
+ "value": {
8298
+ "kind": "expression",
8299
+ "type": "string | undefined"
8300
+ }
8301
+ },
8200
8302
  {
8201
8303
  "name": "justify",
8202
8304
  "description": "How to pack the label and toggle within a line.\n`\"start\"`: The label and toggle will appear on the left in LTR and\non the right in RTL.\n`\"end\"`: The label and toggle will appear on the right in LTR and\non the left in RTL.\n`\"space-between\"`: The label and toggle will appear on opposite\nends of the line with space between the two elements.\nSetting this property will change the toggle `display` to `block`.",
@@ -8235,6 +8337,16 @@
8235
8337
  "type": "string"
8236
8338
  }
8237
8339
  },
8340
+ {
8341
+ "name": "required",
8342
+ "description": "If true, screen readers will announce it as a required field. This property\nworks only for accessibility purposes, it will not prevent the form from\nsubmitting if the value is invalid.",
8343
+ "required": false,
8344
+ "default": "false",
8345
+ "value": {
8346
+ "kind": "expression",
8347
+ "type": "boolean"
8348
+ }
8349
+ },
8238
8350
  {
8239
8351
  "name": "value",
8240
8352
  "description": "The value of the toggle does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a toggle is analogous to the value of a `<input type=\"checkbox\">`,\nit's only used when the toggle participates in a native `<form>`.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionic/vue",
3
- "version": "8.4.5",
3
+ "version": "8.5.0",
4
4
  "description": "Vue specific wrapper for @ionic/core",
5
5
  "scripts": {
6
6
  "eslint": "eslint src",
@@ -67,7 +67,7 @@
67
67
  "vue-router": "^4.0.16"
68
68
  },
69
69
  "dependencies": {
70
- "@ionic/core": "8.4.5",
70
+ "@ionic/core": "8.5.0",
71
71
  "@stencil/vue-output-target": "0.10.5",
72
72
  "ionicons": "^7.0.0"
73
73
  },