mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
fix(ssr): reflect content-id attribute (#20169)
Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
This commit is contained in:
@ -613,10 +613,10 @@ ion-loading-controller,method,dismiss,dismiss(data?: any, role?: string | undefi
|
|||||||
ion-loading-controller,method,getTop,getTop() => Promise<HTMLIonLoadingElement | undefined>
|
ion-loading-controller,method,getTop,getTop() => Promise<HTMLIonLoadingElement | undefined>
|
||||||
|
|
||||||
ion-menu,shadow
|
ion-menu,shadow
|
||||||
ion-menu,prop,contentId,string | undefined,undefined,false,false
|
ion-menu,prop,contentId,string | undefined,undefined,false,true
|
||||||
ion-menu,prop,disabled,boolean,false,false,false
|
ion-menu,prop,disabled,boolean,false,false,false
|
||||||
ion-menu,prop,maxEdgeStart,number,50,false,false
|
ion-menu,prop,maxEdgeStart,number,50,false,false
|
||||||
ion-menu,prop,menuId,string | undefined,undefined,false,false
|
ion-menu,prop,menuId,string | undefined,undefined,false,true
|
||||||
ion-menu,prop,side,"end" | "start",'start',false,true
|
ion-menu,prop,side,"end" | "start",'start',false,true
|
||||||
ion-menu,prop,swipeGesture,boolean,true,false,false
|
ion-menu,prop,swipeGesture,boolean,true,false,false
|
||||||
ion-menu,prop,type,string | undefined,undefined,false,false
|
ion-menu,prop,type,string | undefined,undefined,false,false
|
||||||
@ -1116,7 +1116,7 @@ ion-spinner,prop,paused,boolean,false,false,false
|
|||||||
ion-spinner,css-prop,--color
|
ion-spinner,css-prop,--color
|
||||||
|
|
||||||
ion-split-pane,shadow
|
ion-split-pane,shadow
|
||||||
ion-split-pane,prop,contentId,string | undefined,undefined,false,false
|
ion-split-pane,prop,contentId,string | undefined,undefined,false,true
|
||||||
ion-split-pane,prop,disabled,boolean,false,false,false
|
ion-split-pane,prop,disabled,boolean,false,false,false
|
||||||
ion-split-pane,prop,when,boolean | string,QUERY['lg'],false,false
|
ion-split-pane,prop,when,boolean | string,QUERY['lg'],false,false
|
||||||
ion-split-pane,event,ionSplitPaneVisible,{ visible: boolean; },true
|
ion-split-pane,event,ionSplitPaneVisible,{ visible: boolean; },true
|
||||||
|
@ -49,12 +49,12 @@ export class Menu implements ComponentInterface, MenuI {
|
|||||||
/**
|
/**
|
||||||
* The content's id the menu should use.
|
* The content's id the menu should use.
|
||||||
*/
|
*/
|
||||||
@Prop() contentId?: string;
|
@Prop({ reflectToAttr: true }) contentId?: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An id for the menu.
|
* An id for the menu.
|
||||||
*/
|
*/
|
||||||
@Prop() menuId?: string;
|
@Prop({ reflectToAttr: true }) menuId?: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The display type of the menu.
|
* The display type of the menu.
|
||||||
|
@ -31,7 +31,7 @@ export class SplitPane implements ComponentInterface {
|
|||||||
/**
|
/**
|
||||||
* The content `id` of the split-pane's main content.
|
* The content `id` of the split-pane's main content.
|
||||||
*/
|
*/
|
||||||
@Prop() contentId?: string;
|
@Prop({ reflectToAttr: true }) contentId?: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If `true`, the split pane will be hidden.
|
* If `true`, the split pane will be hidden.
|
||||||
|
Reference in New Issue
Block a user