@ionic/docs 8.7.18-dev.11770238549.14c2a85f → 8.7.18-dev.11770316772.1e7b64e5
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/core.json +49 -4
- package/package.json +1 -1
package/core.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2026-02-
|
|
2
|
+
"timestamp": "2026-02-05T18:41:36",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.38.0",
|
|
@@ -26514,7 +26514,7 @@
|
|
|
26514
26514
|
"mutable": false,
|
|
26515
26515
|
"attr": "pull-factor",
|
|
26516
26516
|
"reflectToAttr": false,
|
|
26517
|
-
"docs": "How much to multiply the pull speed by. To slow the pull animation down,\npass a number less than `1`. To speed up the pull, pass a number greater\nthan `1`. The default value is `1` which is equal to the speed of the cursor.\nIf a negative value is passed in, the factor will be `1` instead.\n\nFor example
|
|
26517
|
+
"docs": "How much to multiply the pull speed by. To slow the pull animation down,\npass a number less than `1`. To speed up the pull, pass a number greater\nthan `1`. The default value is `1` which is equal to the speed of the cursor.\nIf a negative value is passed in, the factor will be `1` instead.\n\nFor example, If the value passed is `1.2` and the content is dragged by\n`10` pixels, instead of `10` pixels, the content will be pulled by `12` pixels\n(an increase of 20 percent). If the value passed is `0.8`, the dragged amount\nwill be `8` pixels, less than the amount the cursor has moved.\n\nDoes not apply when the refresher content uses a spinner,\nenabling the native refresher.",
|
|
26518
26518
|
"docsTags": [
|
|
26519
26519
|
{
|
|
26520
26520
|
"name": "default",
|
|
@@ -26703,6 +26703,40 @@
|
|
|
26703
26703
|
"docs": "Emitted while the user is pulling down the content and exposing the refresher.",
|
|
26704
26704
|
"docsTags": []
|
|
26705
26705
|
},
|
|
26706
|
+
{
|
|
26707
|
+
"event": "ionPullEnd",
|
|
26708
|
+
"detail": "RefresherPullEndEventDetail",
|
|
26709
|
+
"bubbles": true,
|
|
26710
|
+
"complexType": {
|
|
26711
|
+
"original": "RefresherPullEndEventDetail",
|
|
26712
|
+
"resolved": "RefresherPullEndEventDetail",
|
|
26713
|
+
"references": {
|
|
26714
|
+
"RefresherPullEndEventDetail": {
|
|
26715
|
+
"location": "import",
|
|
26716
|
+
"path": "./refresher-interface",
|
|
26717
|
+
"id": "src/components/refresher/refresher-interface.ts::RefresherPullEndEventDetail"
|
|
26718
|
+
}
|
|
26719
|
+
}
|
|
26720
|
+
},
|
|
26721
|
+
"cancelable": true,
|
|
26722
|
+
"composed": true,
|
|
26723
|
+
"docs": "Emitted when the refresher has returned to the inactive state\nafter a pull gesture. This fires whether the refresh completed\nsuccessfully or was canceled.",
|
|
26724
|
+
"docsTags": []
|
|
26725
|
+
},
|
|
26726
|
+
{
|
|
26727
|
+
"event": "ionPullStart",
|
|
26728
|
+
"detail": "void",
|
|
26729
|
+
"bubbles": true,
|
|
26730
|
+
"complexType": {
|
|
26731
|
+
"original": "void",
|
|
26732
|
+
"resolved": "void",
|
|
26733
|
+
"references": {}
|
|
26734
|
+
},
|
|
26735
|
+
"cancelable": true,
|
|
26736
|
+
"composed": true,
|
|
26737
|
+
"docs": "Emitted when the user begins to start pulling down.",
|
|
26738
|
+
"docsTags": []
|
|
26739
|
+
},
|
|
26706
26740
|
{
|
|
26707
26741
|
"event": "ionRefresh",
|
|
26708
26742
|
"detail": "RefresherEventDetail",
|
|
@@ -26734,8 +26768,14 @@
|
|
|
26734
26768
|
},
|
|
26735
26769
|
"cancelable": true,
|
|
26736
26770
|
"composed": true,
|
|
26737
|
-
"docs": "Emitted when the user begins to start pulling down
|
|
26738
|
-
"docsTags": [
|
|
26771
|
+
"docs": "Emitted when the user begins to start pulling down.\nTODO(FW-7044): Remove this in a major release",
|
|
26772
|
+
"docsTags": [
|
|
26773
|
+
{
|
|
26774
|
+
"name": "deprecated",
|
|
26775
|
+
"text": "Use `ionPullStart` instead."
|
|
26776
|
+
}
|
|
26777
|
+
],
|
|
26778
|
+
"deprecation": "Use `ionPullStart` instead."
|
|
26739
26779
|
}
|
|
26740
26780
|
],
|
|
26741
26781
|
"listeners": [],
|
|
@@ -37551,6 +37591,11 @@
|
|
|
37551
37591
|
"docstring": "",
|
|
37552
37592
|
"path": "src/components/refresher/refresher-interface.ts"
|
|
37553
37593
|
},
|
|
37594
|
+
"src/components/refresher/refresher-interface.ts::RefresherPullEndEventDetail": {
|
|
37595
|
+
"declaration": "export interface RefresherPullEndEventDetail {\n reason: 'complete' | 'cancel';\n}",
|
|
37596
|
+
"docstring": "",
|
|
37597
|
+
"path": "src/components/refresher/refresher-interface.ts"
|
|
37598
|
+
},
|
|
37554
37599
|
"src/components/reorder-group/reorder-group-interface.ts::ItemReorderEventDetail": {
|
|
37555
37600
|
"declaration": "export interface ItemReorderEventDetail {\n from: number;\n to: number;\n complete: (data?: boolean | any[]) => any;\n}",
|
|
37556
37601
|
"docstring": "",
|
package/package.json
CHANGED