Skip to content

Commit f5e910a

Browse files
author
Tanner Reits
committed
fix: regenerate api & proxies
1 parent 2e484c0 commit f5e910a

File tree

5 files changed

+3
-26
lines changed

5 files changed

+3
-26
lines changed

core/api.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1613,8 +1613,6 @@ ion-segment-content,shadow
16131613
ion-segment-view,shadow
16141614
ion-segment-view,prop,disabled,boolean,false,false,false
16151615
ion-segment-view,event,ionSegmentViewScroll,SegmentViewScrollEvent,true
1616-
ion-segment-view,event,ionSegmentViewScrollEnd,void,true
1617-
ion-segment-view,event,ionSegmentViewScrollStart,void,true
16181616

16191617
ion-select,shadow
16201618
ion-select,prop,cancelText,string,'Cancel',false,false

core/src/components.d.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4443,8 +4443,6 @@ declare global {
44434443
};
44444444
interface HTMLIonSegmentViewElementEventMap {
44454445
"ionSegmentViewScroll": SegmentViewScrollEvent;
4446-
"ionSegmentViewScrollEnd": void;
4447-
"ionSegmentViewScrollStart": void;
44484446
}
44494447
interface HTMLIonSegmentViewElement extends Components.IonSegmentView, HTMLStencilElement {
44504448
addEventListener<K extends keyof HTMLIonSegmentViewElementEventMap>(type: K, listener: (this: HTMLIonSegmentViewElement, ev: IonSegmentViewCustomEvent<HTMLIonSegmentViewElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
@@ -7536,11 +7534,6 @@ declare namespace LocalJSX {
75367534
* Emitted when the segment view is scrolled.
75377535
*/
75387536
"onIonSegmentViewScroll"?: (event: IonSegmentViewCustomEvent<SegmentViewScrollEvent>) => void;
7539-
/**
7540-
* Emitted when the segment view scroll has ended.
7541-
*/
7542-
"onIonSegmentViewScrollEnd"?: (event: IonSegmentViewCustomEvent<void>) => void;
7543-
"onIonSegmentViewScrollStart"?: (event: IonSegmentViewCustomEvent<void>) => void;
75447537
}
75457538
interface IonSelect {
75467539
/**

packages/angular/src/directives/proxies.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2044,7 +2044,7 @@ export class IonSegmentView {
20442044
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
20452045
c.detach();
20462046
this.el = r.nativeElement;
2047-
proxyOutputs(this, this.el, ['ionSegmentViewScroll', 'ionSegmentViewScrollEnd', 'ionSegmentViewScrollStart']);
2047+
proxyOutputs(this, this.el, ['ionSegmentViewScroll']);
20482048
}
20492049
}
20502050

@@ -2056,12 +2056,6 @@ export declare interface IonSegmentView extends Components.IonSegmentView {
20562056
* Emitted when the segment view is scrolled.
20572057
*/
20582058
ionSegmentViewScroll: EventEmitter<CustomEvent<IIonSegmentViewSegmentViewScrollEvent>>;
2059-
/**
2060-
* Emitted when the segment view scroll has ended.
2061-
*/
2062-
ionSegmentViewScrollEnd: EventEmitter<CustomEvent<void>>;
2063-
2064-
ionSegmentViewScrollStart: EventEmitter<CustomEvent<void>>;
20652059
}
20662060

20672061

packages/angular/standalone/src/directives/proxies.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1883,7 +1883,7 @@ export class IonSegmentView {
18831883
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
18841884
c.detach();
18851885
this.el = r.nativeElement;
1886-
proxyOutputs(this, this.el, ['ionSegmentViewScroll', 'ionSegmentViewScrollEnd', 'ionSegmentViewScrollStart']);
1886+
proxyOutputs(this, this.el, ['ionSegmentViewScroll']);
18871887
}
18881888
}
18891889

@@ -1895,12 +1895,6 @@ export declare interface IonSegmentView extends Components.IonSegmentView {
18951895
* Emitted when the segment view is scrolled.
18961896
*/
18971897
ionSegmentViewScroll: EventEmitter<CustomEvent<IIonSegmentViewSegmentViewScrollEvent>>;
1898-
/**
1899-
* Emitted when the segment view scroll has ended.
1900-
*/
1901-
ionSegmentViewScrollEnd: EventEmitter<CustomEvent<void>>;
1902-
1903-
ionSegmentViewScrollStart: EventEmitter<CustomEvent<void>>;
19041898
}
19051899

19061900

packages/vue/src/proxies.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -760,9 +760,7 @@ export const IonSegmentContent = /*@__PURE__*/ defineContainer<JSX.IonSegmentCon
760760

761761
export const IonSegmentView = /*@__PURE__*/ defineContainer<JSX.IonSegmentView>('ion-segment-view', defineIonSegmentView, [
762762
'disabled',
763-
'ionSegmentViewScroll',
764-
'ionSegmentViewScrollEnd',
765-
'ionSegmentViewScrollStart'
763+
'ionSegmentViewScroll'
766764
]);
767765

768766

0 commit comments

Comments
 (0)