@ionic/docs 8.4.4-dev.11738863153.1dafb0b9 → 8.4.4-dev.11739906326.1989484f

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 +73 -89
  2. package/package.json +1 -1
package/core.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2025-02-06T17:34:21",
2
+ "timestamp": "2025-02-18T19:20:37",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.20.0",
@@ -6018,28 +6018,6 @@
6018
6018
  "optional": false,
6019
6019
  "required": false
6020
6020
  },
6021
- {
6022
- "name": "required",
6023
- "type": "boolean",
6024
- "complexType": {
6025
- "original": "boolean",
6026
- "resolved": "boolean",
6027
- "references": {}
6028
- },
6029
- "mutable": false,
6030
- "attr": "required",
6031
- "reflectToAttr": false,
6032
- "docs": "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.",
6033
- "docsTags": [],
6034
- "default": "false",
6035
- "values": [
6036
- {
6037
- "type": "boolean"
6038
- }
6039
- ],
6040
- "optional": false,
6041
- "required": false
6042
- },
6043
6021
  {
6044
6022
  "name": "value",
6045
6023
  "type": "any",
@@ -17046,28 +17024,6 @@
17046
17024
  "optional": true,
17047
17025
  "required": false
17048
17026
  },
17049
- {
17050
- "name": "expandToScroll",
17051
- "type": "boolean",
17052
- "complexType": {
17053
- "original": "boolean",
17054
- "resolved": "boolean",
17055
- "references": {}
17056
- },
17057
- "mutable": false,
17058
- "attr": "expand-to-scroll",
17059
- "reflectToAttr": false,
17060
- "docs": "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 content.\nIf `false`, scrolling will always affect the content, and the modal will only expand\nwhen dragging the header or handle.",
17061
- "docsTags": [],
17062
- "default": "true",
17063
- "values": [
17064
- {
17065
- "type": "boolean"
17066
- }
17067
- ],
17068
- "optional": false,
17069
- "required": false
17070
- },
17071
17027
  {
17072
17028
  "name": "focusTrap",
17073
17029
  "type": "boolean",
@@ -22148,6 +22104,18 @@
22148
22104
  {
22149
22105
  "name": "part",
22150
22106
  "text": "mark - The checkmark or dot used to indicate the checked state."
22107
+ },
22108
+ {
22109
+ "name": "part",
22110
+ "text": "supporting-text - Supporting text displayed beneath the radio label."
22111
+ },
22112
+ {
22113
+ "name": "part",
22114
+ "text": "helper-text - Supporting text displayed beneath the radio label when the radio is valid."
22115
+ },
22116
+ {
22117
+ "name": "part",
22118
+ "text": "error-text - Supporting text displayed beneath the radio label when the radio is invalid and touched."
22151
22119
  }
22152
22120
  ],
22153
22121
  "usage": {},
@@ -22269,6 +22237,54 @@
22269
22237
  "optional": false,
22270
22238
  "required": false
22271
22239
  },
22240
+ {
22241
+ "name": "errorText",
22242
+ "type": "string | undefined",
22243
+ "complexType": {
22244
+ "original": "string",
22245
+ "resolved": "string | undefined",
22246
+ "references": {}
22247
+ },
22248
+ "mutable": false,
22249
+ "attr": "error-text",
22250
+ "reflectToAttr": false,
22251
+ "docs": "Text that is placed under the radio label and displayed when an error is detected.",
22252
+ "docsTags": [],
22253
+ "values": [
22254
+ {
22255
+ "type": "string"
22256
+ },
22257
+ {
22258
+ "type": "undefined"
22259
+ }
22260
+ ],
22261
+ "optional": true,
22262
+ "required": false
22263
+ },
22264
+ {
22265
+ "name": "helperText",
22266
+ "type": "string | undefined",
22267
+ "complexType": {
22268
+ "original": "string",
22269
+ "resolved": "string | undefined",
22270
+ "references": {}
22271
+ },
22272
+ "mutable": false,
22273
+ "attr": "helper-text",
22274
+ "reflectToAttr": false,
22275
+ "docs": "Text that is placed under the radio label and displayed when no error is detected.",
22276
+ "docsTags": [],
22277
+ "values": [
22278
+ {
22279
+ "type": "string"
22280
+ },
22281
+ {
22282
+ "type": "undefined"
22283
+ }
22284
+ ],
22285
+ "optional": true,
22286
+ "required": false
22287
+ },
22272
22288
  {
22273
22289
  "name": "justify",
22274
22290
  "type": "\"end\" | \"space-between\" | \"start\" | undefined",
@@ -22495,6 +22511,14 @@
22495
22511
  "name": "container",
22496
22512
  "docs": "The container for the radio mark."
22497
22513
  },
22514
+ {
22515
+ "name": "error-text",
22516
+ "docs": "Supporting text displayed beneath the radio label when the radio is invalid and touched."
22517
+ },
22518
+ {
22519
+ "name": "helper-text",
22520
+ "docs": "Supporting text displayed beneath the radio label when the radio is valid."
22521
+ },
22498
22522
  {
22499
22523
  "name": "label",
22500
22524
  "docs": "The label text describing the radio."
@@ -22502,6 +22526,10 @@
22502
22526
  {
22503
22527
  "name": "mark",
22504
22528
  "docs": "The checkmark or dot used to indicate the checked state."
22529
+ },
22530
+ {
22531
+ "name": "supporting-text",
22532
+ "docs": "Supporting text displayed beneath the radio label."
22505
22533
  }
22506
22534
  ],
22507
22535
  "dependents": [
@@ -27742,28 +27770,6 @@
27742
27770
  "optional": true,
27743
27771
  "required": false
27744
27772
  },
27745
- {
27746
- "name": "required",
27747
- "type": "boolean",
27748
- "complexType": {
27749
- "original": "boolean",
27750
- "resolved": "boolean",
27751
- "references": {}
27752
- },
27753
- "mutable": false,
27754
- "attr": "required",
27755
- "reflectToAttr": false,
27756
- "docs": "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.",
27757
- "docsTags": [],
27758
- "default": "false",
27759
- "values": [
27760
- {
27761
- "type": "boolean"
27762
- }
27763
- ],
27764
- "optional": false,
27765
- "required": false
27766
- },
27767
27773
  {
27768
27774
  "name": "selectedText",
27769
27775
  "type": "null | string | undefined",
@@ -32725,28 +32731,6 @@
32725
32731
  "optional": false,
32726
32732
  "required": false
32727
32733
  },
32728
- {
32729
- "name": "required",
32730
- "type": "boolean",
32731
- "complexType": {
32732
- "original": "boolean",
32733
- "resolved": "boolean",
32734
- "references": {}
32735
- },
32736
- "mutable": false,
32737
- "attr": "required",
32738
- "reflectToAttr": false,
32739
- "docs": "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.",
32740
- "docsTags": [],
32741
- "default": "false",
32742
- "values": [
32743
- {
32744
- "type": "boolean"
32745
- }
32746
- ],
32747
- "optional": false,
32748
- "required": false
32749
- },
32750
32734
  {
32751
32735
  "name": "value",
32752
32736
  "type": "null | string | undefined",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionic/docs",
3
- "version": "8.4.4-dev.11738863153.1dafb0b9",
3
+ "version": "8.4.4-dev.11739906326.1989484f",
4
4
  "description": "Pre-packaged API documentation for the Ionic docs.",
5
5
  "main": "core.json",
6
6
  "types": "core.d.ts",