@@ -1160,6 +1160,10 @@ export namespace Components {
11601160 */
11611161 "theme"?: "ios" | "md" | "ionic";
11621162 }
1163+ interface IonDivider {
1164+ "inset"?: boolean;
1165+ "spacing"?: 'xxsmall' | 'xsmall' | 'small' | 'large' | 'xlarge' | 'xxlarge';
1166+ }
11631167 interface IonFab {
11641168 /**
11651169 * If `true`, both the `ion-fab-button` and all `ion-fab-list` inside `ion-fab` will become active. That means `ion-fab-button` will become a `close` icon and `ion-fab-list` will become visible.
@@ -4436,6 +4440,12 @@ declare global {
44364440 prototype: HTMLIonDatetimeButtonElement;
44374441 new (): HTMLIonDatetimeButtonElement;
44384442 };
4443+ interface HTMLIonDividerElement extends Components.IonDivider, HTMLStencilElement {
4444+ }
4445+ var HTMLIonDividerElement: {
4446+ prototype: HTMLIonDividerElement;
4447+ new (): HTMLIonDividerElement;
4448+ };
44394449 interface HTMLIonFabElement extends Components.IonFab, HTMLStencilElement {
44404450 }
44414451 var HTMLIonFabElement: {
@@ -5395,6 +5405,7 @@ declare global {
53955405 "ion-content": HTMLIonContentElement;
53965406 "ion-datetime": HTMLIonDatetimeElement;
53975407 "ion-datetime-button": HTMLIonDatetimeButtonElement;
5408+ "ion-divider": HTMLIonDividerElement;
53985409 "ion-fab": HTMLIonFabElement;
53995410 "ion-fab-button": HTMLIonFabButtonElement;
54005411 "ion-fab-list": HTMLIonFabListElement;
@@ -6611,6 +6622,10 @@ declare namespace LocalJSX {
66116622 */
66126623 "theme"?: "ios" | "md" | "ionic";
66136624 }
6625+ interface IonDivider {
6626+ "inset"?: boolean;
6627+ "spacing"?: 'xxsmall' | 'xsmall' | 'small' | 'large' | 'xlarge' | 'xxlarge';
6628+ }
66146629 interface IonFab {
66156630 /**
66166631 * If `true`, both the `ion-fab-button` and all `ion-fab-list` inside `ion-fab` will become active. That means `ion-fab-button` will become a `close` icon and `ion-fab-list` will become visible.
@@ -9524,6 +9539,7 @@ declare namespace LocalJSX {
95249539 "ion-content": IonContent;
95259540 "ion-datetime": IonDatetime;
95269541 "ion-datetime-button": IonDatetimeButton;
9542+ "ion-divider": IonDivider;
95279543 "ion-fab": IonFab;
95289544 "ion-fab-button": IonFabButton;
95299545 "ion-fab-list": IonFabList;
@@ -9626,6 +9642,7 @@ declare module "@stencil/core" {
96269642 "ion-content": LocalJSX.IonContent & JSXBase.HTMLAttributes<HTMLIonContentElement>;
96279643 "ion-datetime": LocalJSX.IonDatetime & JSXBase.HTMLAttributes<HTMLIonDatetimeElement>;
96289644 "ion-datetime-button": LocalJSX.IonDatetimeButton & JSXBase.HTMLAttributes<HTMLIonDatetimeButtonElement>;
9645+ "ion-divider": LocalJSX.IonDivider & JSXBase.HTMLAttributes<HTMLIonDividerElement>;
96299646 "ion-fab": LocalJSX.IonFab & JSXBase.HTMLAttributes<HTMLIonFabElement>;
96309647 "ion-fab-button": LocalJSX.IonFabButton & JSXBase.HTMLAttributes<HTMLIonFabButtonElement>;
96319648 "ion-fab-list": LocalJSX.IonFabList & JSXBase.HTMLAttributes<HTMLIonFabListElement>;
0 commit comments