fix(ssr): reflect content-id attribute (#20169)

Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
This commit is contained in:
Adam Bradley
2020-01-08 21:36:30 -06:00
committed by GitHub
parent 53fad978c5
commit 3aa47e6e2f
3 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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.

View File

@ -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.