@ionic/react 8.8.1-dev.11774384072.1e807ca8 → 8.8.1-dev.11775249812.1228163e

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.
Files changed (37) hide show
  1. package/dist/index.js +860 -322
  2. package/dist/index.js.map +1 -1
  3. package/dist/types/components/IonActionSheet.d.ts +1 -1
  4. package/dist/types/components/IonAlert.d.ts +1 -1
  5. package/dist/types/components/IonIcon.d.ts +1 -1
  6. package/dist/types/components/IonLoading.d.ts +1 -1
  7. package/dist/types/components/IonModal.d.ts +1 -1
  8. package/dist/types/components/IonPage.d.ts +1 -1
  9. package/dist/types/components/IonPickerLegacy.d.ts +1 -1
  10. package/dist/types/components/IonPopover.d.ts +1 -1
  11. package/dist/types/components/IonRedirect.d.ts +16 -0
  12. package/dist/types/components/IonRoute.d.ts +2 -3
  13. package/dist/types/components/IonRouterContext.d.ts +0 -8
  14. package/dist/types/components/IonRouterOutlet.d.ts +2 -3
  15. package/dist/types/components/IonToast.d.ts +1 -1
  16. package/dist/types/components/components.d.ts +325 -0
  17. package/dist/types/components/createInlineOverlayComponent.d.ts +1 -1
  18. package/dist/types/components/createRoutingComponent.d.ts +1 -1
  19. package/dist/types/components/index.d.ts +2 -1
  20. package/dist/types/components/navigation/IonNav.d.ts +2 -1
  21. package/dist/types/components/navigation/IonTabBar.d.ts +1 -1
  22. package/dist/types/components/navigation/IonTabs.d.ts +1 -2
  23. package/dist/types/components/react-component-lib/createComponent.d.ts +1 -1
  24. package/dist/types/components/react-component-lib/utils/index.d.ts +1 -1
  25. package/dist/types/components/routing-proxies.d.ts +7 -7
  26. package/dist/types/components/utils/index.d.ts +2 -11
  27. package/dist/types/contexts/NavContext.d.ts +2 -0
  28. package/dist/types/lifecycle/IonLifeCycleHOC.d.ts +1 -3
  29. package/dist/types/routing/LocationHistory.d.ts +0 -7
  30. package/dist/types/routing/NavManager.d.ts +5 -1
  31. package/dist/types/routing/OutletPageManager.d.ts +1 -1
  32. package/dist/types/routing/PageManager.d.ts +1 -7
  33. package/dist/types/routing/RouteManagerContext.d.ts +1 -6
  34. package/dist/types/routing/ViewLifeCycleManager.d.ts +1 -0
  35. package/dist/types/routing/ViewStacks.d.ts +2 -2
  36. package/package.json +8 -8
  37. package/dist/types/components/proxies.d.ts +0 -73
@@ -3,6 +3,8 @@ import React from 'react';
3
3
  import type { RouteInfo } from '../models';
4
4
  export interface NavContextState {
5
5
  getIonRoute: () => any;
6
+ getIonRedirect: () => any;
7
+ getPageManager: () => any;
6
8
  getStackManager: () => any;
7
9
  goBack: (route?: string | RouteInfo, animationBuilder?: AnimationBuilder) => void;
8
10
  navigate: (path: string, direction?: RouterDirection | 'none', ionRouteAction?: 'push' | 'replace' | 'pop', animationBuilder?: AnimationBuilder, options?: any, tab?: string) => void;
@@ -8,9 +8,7 @@ export declare const withIonLifeCycle: (WrappedComponent: React.ComponentType<an
8
8
  render(): import("react/jsx-runtime").JSX.Element;
9
9
  setState<K extends string | number | symbol>(state: any, callback?: (() => void) | undefined): void;
10
10
  forceUpdate(callback?: (() => void) | undefined): void;
11
- readonly props: Readonly<any> & Readonly<{
12
- children?: React.ReactNode | undefined;
13
- }>;
11
+ readonly props: Readonly<any>;
14
12
  state: Readonly<any>;
15
13
  refs: {
16
14
  [key: string]: React.ReactInstance;
@@ -13,15 +13,8 @@ export declare class LocationHistory {
13
13
  private _getRouteInfosByKey;
14
14
  getFirstRouteInfoForTab(tab: string): RouteInfo<any> | undefined;
15
15
  getCurrentRouteInfoForTab(tab?: string): RouteInfo<any> | undefined;
16
- /**
17
- * Returns the most recent RouteInfo in global history (excluding the current
18
- * entry) whose pathname matches the given value. Unlike findLastLocation,
19
- * this search is tab-agnostic. Used by the multi-step back detection.
20
- */
21
- findLastLocationByPathname(pathname: string): RouteInfo<any> | undefined;
22
16
  findLastLocation(routeInfo: RouteInfo): RouteInfo<any> | undefined;
23
17
  previous(): RouteInfo<any>;
24
18
  current(): RouteInfo<any>;
25
19
  canGoBack(): boolean;
26
- findTabForPathname(pathname: string): string | undefined;
27
20
  }
@@ -6,18 +6,20 @@ import type { RouteAction } from '../models/RouteAction';
6
6
  import type { RouteInfo } from '../models/RouteInfo';
7
7
  import type { RouterDirection } from '../models/RouterDirection';
8
8
  import type { LocationHistory } from './LocationHistory';
9
+ import PageManager from './PageManager';
9
10
  interface NavManagerProps {
10
11
  routeInfo: RouteInfo;
11
12
  onNativeBack: () => void;
12
13
  onNavigateBack: (route?: string | RouteInfo, animationBuilder?: AnimationBuilder) => void;
13
14
  onNavigate: (path: string, action: RouteAction, direction?: RouterDirection, animationBuilder?: AnimationBuilder, options?: any, tab?: string) => void;
14
- onNavigateRoot: (pathname: string, animationBuilder?: AnimationBuilder) => void;
15
15
  onSetCurrentTab: (tab: string, routeInfo: RouteInfo) => void;
16
16
  onChangeTab: (tab: string, path: string, routeOptions?: any) => void;
17
17
  onResetTab: (tab: string, path: string, routeOptions?: any) => void;
18
+ ionRedirect: any;
18
19
  ionRoute: any;
19
20
  stackManager: any;
20
21
  locationHistory: LocationHistory;
22
+ children: React.ReactNode;
21
23
  }
22
24
  export declare class NavManager extends React.PureComponent<NavManagerProps, NavContextState> {
23
25
  ionRouterContextValue: IonRouterContextState;
@@ -28,6 +30,8 @@ export declare class NavManager extends React.PureComponent<NavManagerProps, Nav
28
30
  goBack(route?: string | RouteInfo, animationBuilder?: AnimationBuilder): void;
29
31
  nativeGoBack(): void;
30
32
  navigate(path: string, direction?: RouterDirection, action?: RouteAction, animationBuilder?: AnimationBuilder, options?: any, tab?: string): void;
33
+ getPageManager(): typeof PageManager;
34
+ getIonRedirect(): any;
31
35
  getIonRoute(): any;
32
36
  getStackManager(): any;
33
37
  render(): import("react/jsx-runtime").JSX.Element;
@@ -5,9 +5,9 @@ import { StackContext } from './StackContext';
5
5
  interface OutletPageManagerProps {
6
6
  className?: string;
7
7
  forwardedRef?: React.ForwardedRef<HTMLIonRouterOutletElement>;
8
+ children: React.ReactNode;
8
9
  routeInfo?: RouteInfo;
9
10
  StackManager: any;
10
- id?: string;
11
11
  }
12
12
  export declare class OutletPageManager extends React.Component<OutletPageManagerProps> {
13
13
  ionLifeCycleContext: React.ContextType<typeof IonLifeCycleContext>;
@@ -5,6 +5,7 @@ import { StackContext } from './StackContext';
5
5
  interface PageManagerProps {
6
6
  className?: string;
7
7
  forwardedRef?: React.ForwardedRef<HTMLDivElement>;
8
+ children: React.ReactNode;
8
9
  routeInfo?: RouteInfo;
9
10
  }
10
11
  export declare class PageManager extends React.PureComponent<PageManagerProps> {
@@ -13,14 +14,7 @@ export declare class PageManager extends React.PureComponent<PageManagerProps> {
13
14
  ionPageElementRef: React.RefObject<HTMLDivElement>;
14
15
  stableMergedRefs: React.RefCallback<HTMLDivElement>;
15
16
  constructor(props: PageManagerProps);
16
- private parseClasses;
17
- /**
18
- * Updates classList by diffing old/new className props.
19
- * Preserves framework-added classes (can-go-back, ion-page-invisible, etc.).
20
- */
21
- private updateUserClasses;
22
17
  componentDidMount(): void;
23
- componentDidUpdate(prevProps: PageManagerProps): void;
24
18
  componentWillUnmount(): void;
25
19
  ionViewWillEnterHandler(): void;
26
20
  ionViewDidEnterHandler(): void;
@@ -9,12 +9,7 @@ export interface RouteManagerContextState {
9
9
  findViewItemByPathname(pathname: string, outletId?: string): ViewItem | undefined;
10
10
  findLeavingViewItemByRouteInfo: (routeInfo: RouteInfo, outletId?: string) => ViewItem | undefined;
11
11
  findViewItemByRouteInfo: (routeInfo: RouteInfo, outletId?: string, updateMatch?: boolean) => ViewItem | undefined;
12
- getChildrenToRender: (outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void, parentPathnameBase?: string) => React.ReactNode[];
13
- /**
14
- * Returns all view items currently registered for a given outlet id.
15
- * Used by StackManager for out-of-scope cleanup.
16
- */
17
- getViewItemsForOutlet: (outletId: string) => ViewItem[];
12
+ getChildrenToRender: (outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void) => React.ReactNode[];
18
13
  goBack: () => void;
19
14
  unMountViewItem: (viewItem: ViewItem) => void;
20
15
  }
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  interface ViewTransitionManagerProps {
3
3
  removeView: () => void;
4
4
  mount: boolean;
5
+ children: React.ReactNode;
5
6
  }
6
7
  interface ViewTransitionManagerState {
7
8
  show: boolean;
@@ -4,7 +4,7 @@ export declare abstract class ViewStacks {
4
4
  private viewStacks;
5
5
  constructor();
6
6
  add(viewItem: ViewItem): void;
7
- clear(outletId: string): void;
7
+ clear(outletId: string): NodeJS.Timeout;
8
8
  getViewItemsForOutlet(outletId: string): ViewItem<any>[];
9
9
  remove(viewItem: ViewItem): void;
10
10
  protected getStackIds(): string[];
@@ -13,5 +13,5 @@ export declare abstract class ViewStacks {
13
13
  abstract findViewItemByPathname(pathname: string, outletId?: string): ViewItem | undefined;
14
14
  abstract findViewItemByRouteInfo(routeInfo: RouteInfo, outletId?: string, updateMatch?: boolean): ViewItem | undefined;
15
15
  abstract findLeavingViewItemByRouteInfo(routeInfo: RouteInfo, outletId?: string): ViewItem | undefined;
16
- abstract getChildrenToRender(outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void, parentPathnameBase?: string): React.ReactNode[];
16
+ abstract getChildrenToRender(outletId: string, ionRouterOutlet: React.ReactElement, routeInfo: RouteInfo, reRender: () => void, setInTransition: () => void): React.ReactNode[];
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionic/react",
3
- "version": "8.8.1-dev.11774384072.1e807ca8",
3
+ "version": "8.8.1-dev.11775249812.1228163e",
4
4
  "description": "React specific wrapper for @ionic/core",
5
5
  "keywords": [
6
6
  "ionic",
@@ -40,7 +40,8 @@
40
40
  "css/"
41
41
  ],
42
42
  "dependencies": {
43
- "@ionic/core": "8.8.1-dev.11774384072.1e807ca8",
43
+ "@ionic/core": "8.8.1-dev.11775249812.1228163e",
44
+ "@stencil/react-output-target": "1.4.2",
44
45
  "ionicons": "^8.0.13",
45
46
  "tslib": "*"
46
47
  },
@@ -53,12 +54,11 @@
53
54
  "@ionic/prettier-config": "^2.0.0",
54
55
  "@rollup/plugin-typescript": "^11.1.5",
55
56
  "@testing-library/jest-dom": "^5.11.6",
56
- "@testing-library/react": "^12.1.5",
57
- "@testing-library/react-hooks": "^7.0.1",
57
+ "@testing-library/react": "^13.4.0",
58
58
  "@types/jest": "^26.0.15",
59
59
  "@types/node": "^14.0.14",
60
- "@types/react": "^17.0.79",
61
- "@types/react-dom": "^17.0.25",
60
+ "@types/react": "^18.3.28",
61
+ "@types/react-dom": "^18.3.7",
62
62
  "@typescript-eslint/eslint-plugin": "^5.48.2",
63
63
  "@typescript-eslint/parser": "^5.48.2",
64
64
  "eslint": "^7.32.0",
@@ -67,8 +67,8 @@
67
67
  "jest-environment-jsdom": "^29.7.0",
68
68
  "np": "^6.4.0",
69
69
  "prettier": "^2.8.3",
70
- "react": "^17.0.2",
71
- "react-dom": "^17.0.2",
70
+ "react": "^18.3.1",
71
+ "react-dom": "^18.3.1",
72
72
  "rimraf": "^3.0.2",
73
73
  "rollup": "^4.2.0",
74
74
  "ts-jest": "^29.1.3",
@@ -1,73 +0,0 @@
1
- import type { JSX } from '@ionic/core/components';
2
- export declare const IonAccordion: import("react").ForwardRefExoticComponent<JSX.IonAccordion & Omit<import("react").HTMLAttributes<HTMLIonAccordionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonAccordionElement>>;
3
- export declare const IonAccordionGroup: import("react").ForwardRefExoticComponent<JSX.IonAccordionGroup & Omit<import("react").HTMLAttributes<HTMLIonAccordionGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonAccordionGroupElement>>;
4
- export declare const IonAvatar: import("react").ForwardRefExoticComponent<JSX.IonAvatar & Omit<import("react").HTMLAttributes<HTMLIonAvatarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonAvatarElement>>;
5
- export declare const IonBackdrop: import("react").ForwardRefExoticComponent<JSX.IonBackdrop & Omit<import("react").HTMLAttributes<HTMLIonBackdropElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonBackdropElement>>;
6
- export declare const IonBadge: import("react").ForwardRefExoticComponent<JSX.IonBadge & Omit<import("react").HTMLAttributes<HTMLIonBadgeElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonBadgeElement>>;
7
- export declare const IonBreadcrumbs: import("react").ForwardRefExoticComponent<JSX.IonBreadcrumbs & Omit<import("react").HTMLAttributes<HTMLIonBreadcrumbsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonBreadcrumbsElement>>;
8
- export declare const IonButtons: import("react").ForwardRefExoticComponent<JSX.IonButtons & Omit<import("react").HTMLAttributes<HTMLIonButtonsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonButtonsElement>>;
9
- export declare const IonCardContent: import("react").ForwardRefExoticComponent<JSX.IonCardContent & Omit<import("react").HTMLAttributes<HTMLIonCardContentElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonCardContentElement>>;
10
- export declare const IonCardHeader: import("react").ForwardRefExoticComponent<JSX.IonCardHeader & Omit<import("react").HTMLAttributes<HTMLIonCardHeaderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonCardHeaderElement>>;
11
- export declare const IonCardSubtitle: import("react").ForwardRefExoticComponent<JSX.IonCardSubtitle & Omit<import("react").HTMLAttributes<HTMLIonCardSubtitleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonCardSubtitleElement>>;
12
- export declare const IonCardTitle: import("react").ForwardRefExoticComponent<JSX.IonCardTitle & Omit<import("react").HTMLAttributes<HTMLIonCardTitleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonCardTitleElement>>;
13
- export declare const IonCheckbox: import("react").ForwardRefExoticComponent<JSX.IonCheckbox & Omit<import("react").HTMLAttributes<HTMLIonCheckboxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonCheckboxElement>>;
14
- export declare const IonChip: import("react").ForwardRefExoticComponent<JSX.IonChip & Omit<import("react").HTMLAttributes<HTMLIonChipElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonChipElement>>;
15
- export declare const IonCol: import("react").ForwardRefExoticComponent<JSX.IonCol & Omit<import("react").HTMLAttributes<HTMLIonColElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonColElement>>;
16
- export declare const IonContent: import("react").ForwardRefExoticComponent<JSX.IonContent & Omit<import("react").HTMLAttributes<HTMLIonContentElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonContentElement>>;
17
- export declare const IonDatetime: import("react").ForwardRefExoticComponent<JSX.IonDatetime & Omit<import("react").HTMLAttributes<HTMLIonDatetimeElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonDatetimeElement>>;
18
- export declare const IonDatetimeButton: import("react").ForwardRefExoticComponent<JSX.IonDatetimeButton & Omit<import("react").HTMLAttributes<HTMLIonDatetimeButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonDatetimeButtonElement>>;
19
- export declare const IonFab: import("react").ForwardRefExoticComponent<JSX.IonFab & Omit<import("react").HTMLAttributes<HTMLIonFabElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonFabElement>>;
20
- export declare const IonFabList: import("react").ForwardRefExoticComponent<JSX.IonFabList & Omit<import("react").HTMLAttributes<HTMLIonFabListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonFabListElement>>;
21
- export declare const IonFooter: import("react").ForwardRefExoticComponent<JSX.IonFooter & Omit<import("react").HTMLAttributes<HTMLIonFooterElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonFooterElement>>;
22
- export declare const IonGrid: import("react").ForwardRefExoticComponent<JSX.IonGrid & Omit<import("react").HTMLAttributes<HTMLIonGridElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonGridElement>>;
23
- export declare const IonHeader: import("react").ForwardRefExoticComponent<JSX.IonHeader & Omit<import("react").HTMLAttributes<HTMLIonHeaderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonHeaderElement>>;
24
- export declare const IonImg: import("react").ForwardRefExoticComponent<JSX.IonImg & Omit<import("react").HTMLAttributes<HTMLIonImgElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonImgElement>>;
25
- export declare const IonInfiniteScroll: import("react").ForwardRefExoticComponent<JSX.IonInfiniteScroll & Omit<import("react").HTMLAttributes<HTMLIonInfiniteScrollElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonInfiniteScrollElement>>;
26
- export declare const IonInfiniteScrollContent: import("react").ForwardRefExoticComponent<JSX.IonInfiniteScrollContent & Omit<import("react").HTMLAttributes<HTMLIonInfiniteScrollContentElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonInfiniteScrollContentElement>>;
27
- export declare const IonInput: import("react").ForwardRefExoticComponent<JSX.IonInput & Omit<import("react").HTMLAttributes<HTMLIonInputElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonInputElement>>;
28
- export declare const IonInputOtp: import("react").ForwardRefExoticComponent<JSX.IonInputOtp & Omit<import("react").HTMLAttributes<HTMLIonInputOtpElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonInputOtpElement>>;
29
- export declare const IonInputPasswordToggle: import("react").ForwardRefExoticComponent<JSX.IonInputPasswordToggle & Omit<import("react").HTMLAttributes<HTMLIonInputPasswordToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonInputPasswordToggleElement>>;
30
- export declare const IonItemDivider: import("react").ForwardRefExoticComponent<JSX.IonItemDivider & Omit<import("react").HTMLAttributes<HTMLIonItemDividerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonItemDividerElement>>;
31
- export declare const IonItemGroup: import("react").ForwardRefExoticComponent<JSX.IonItemGroup & Omit<import("react").HTMLAttributes<HTMLIonItemGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonItemGroupElement>>;
32
- export declare const IonItemOptions: import("react").ForwardRefExoticComponent<JSX.IonItemOptions & Omit<import("react").HTMLAttributes<HTMLIonItemOptionsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonItemOptionsElement>>;
33
- export declare const IonItemSliding: import("react").ForwardRefExoticComponent<JSX.IonItemSliding & Omit<import("react").HTMLAttributes<HTMLIonItemSlidingElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonItemSlidingElement>>;
34
- export declare const IonLabel: import("react").ForwardRefExoticComponent<JSX.IonLabel & Omit<import("react").HTMLAttributes<HTMLIonLabelElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonLabelElement>>;
35
- export declare const IonList: import("react").ForwardRefExoticComponent<JSX.IonList & Omit<import("react").HTMLAttributes<HTMLIonListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonListElement>>;
36
- export declare const IonListHeader: import("react").ForwardRefExoticComponent<JSX.IonListHeader & Omit<import("react").HTMLAttributes<HTMLIonListHeaderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonListHeaderElement>>;
37
- export declare const IonMenu: import("react").ForwardRefExoticComponent<JSX.IonMenu & Omit<import("react").HTMLAttributes<HTMLIonMenuElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonMenuElement>>;
38
- export declare const IonMenuButton: import("react").ForwardRefExoticComponent<JSX.IonMenuButton & Omit<import("react").HTMLAttributes<HTMLIonMenuButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonMenuButtonElement>>;
39
- export declare const IonMenuToggle: import("react").ForwardRefExoticComponent<JSX.IonMenuToggle & Omit<import("react").HTMLAttributes<HTMLIonMenuToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonMenuToggleElement>>;
40
- export declare const IonNav: import("react").ForwardRefExoticComponent<JSX.IonNav & Omit<import("react").HTMLAttributes<HTMLIonNavElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonNavElement>>;
41
- export declare const IonNavLink: import("react").ForwardRefExoticComponent<JSX.IonNavLink & Omit<import("react").HTMLAttributes<HTMLIonNavLinkElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonNavLinkElement>>;
42
- export declare const IonNote: import("react").ForwardRefExoticComponent<JSX.IonNote & Omit<import("react").HTMLAttributes<HTMLIonNoteElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonNoteElement>>;
43
- export declare const IonPicker: import("react").ForwardRefExoticComponent<JSX.IonPicker & Omit<import("react").HTMLAttributes<HTMLIonPickerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonPickerElement>>;
44
- export declare const IonPickerColumn: import("react").ForwardRefExoticComponent<JSX.IonPickerColumn & Omit<import("react").HTMLAttributes<HTMLIonPickerColumnElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonPickerColumnElement>>;
45
- export declare const IonPickerColumnOption: import("react").ForwardRefExoticComponent<JSX.IonPickerColumnOption & Omit<import("react").HTMLAttributes<HTMLIonPickerColumnOptionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonPickerColumnOptionElement>>;
46
- export declare const IonProgressBar: import("react").ForwardRefExoticComponent<JSX.IonProgressBar & Omit<import("react").HTMLAttributes<HTMLIonProgressBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonProgressBarElement>>;
47
- export declare const IonRadio: import("react").ForwardRefExoticComponent<JSX.IonRadio & Omit<import("react").HTMLAttributes<HTMLIonRadioElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonRadioElement>>;
48
- export declare const IonRadioGroup: import("react").ForwardRefExoticComponent<JSX.IonRadioGroup & Omit<import("react").HTMLAttributes<HTMLIonRadioGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonRadioGroupElement>>;
49
- export declare const IonRange: import("react").ForwardRefExoticComponent<JSX.IonRange & Omit<import("react").HTMLAttributes<HTMLIonRangeElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonRangeElement>>;
50
- export declare const IonRefresher: import("react").ForwardRefExoticComponent<JSX.IonRefresher & Omit<import("react").HTMLAttributes<HTMLIonRefresherElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonRefresherElement>>;
51
- export declare const IonRefresherContent: import("react").ForwardRefExoticComponent<JSX.IonRefresherContent & Omit<import("react").HTMLAttributes<HTMLIonRefresherContentElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonRefresherContentElement>>;
52
- export declare const IonReorder: import("react").ForwardRefExoticComponent<JSX.IonReorder & Omit<import("react").HTMLAttributes<HTMLIonReorderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonReorderElement>>;
53
- export declare const IonReorderGroup: import("react").ForwardRefExoticComponent<JSX.IonReorderGroup & Omit<import("react").HTMLAttributes<HTMLIonReorderGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonReorderGroupElement>>;
54
- export declare const IonRippleEffect: import("react").ForwardRefExoticComponent<JSX.IonRippleEffect & Omit<import("react").HTMLAttributes<HTMLIonRippleEffectElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonRippleEffectElement>>;
55
- export declare const IonRow: import("react").ForwardRefExoticComponent<JSX.IonRow & Omit<import("react").HTMLAttributes<HTMLIonRowElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonRowElement>>;
56
- export declare const IonSearchbar: import("react").ForwardRefExoticComponent<JSX.IonSearchbar & Omit<import("react").HTMLAttributes<HTMLIonSearchbarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSearchbarElement>>;
57
- export declare const IonSegment: import("react").ForwardRefExoticComponent<JSX.IonSegment & Omit<import("react").HTMLAttributes<HTMLIonSegmentElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSegmentElement>>;
58
- export declare const IonSegmentButton: import("react").ForwardRefExoticComponent<JSX.IonSegmentButton & Omit<import("react").HTMLAttributes<HTMLIonSegmentButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSegmentButtonElement>>;
59
- export declare const IonSegmentContent: import("react").ForwardRefExoticComponent<JSX.IonSegmentContent & Omit<import("react").HTMLAttributes<HTMLIonSegmentContentElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSegmentContentElement>>;
60
- export declare const IonSegmentView: import("react").ForwardRefExoticComponent<JSX.IonSegmentView & Omit<import("react").HTMLAttributes<HTMLIonSegmentViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSegmentViewElement>>;
61
- export declare const IonSelect: import("react").ForwardRefExoticComponent<JSX.IonSelect & Omit<import("react").HTMLAttributes<HTMLIonSelectElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSelectElement>>;
62
- export declare const IonSelectModal: import("react").ForwardRefExoticComponent<JSX.IonSelectModal & Omit<import("react").HTMLAttributes<HTMLIonSelectModalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSelectModalElement>>;
63
- export declare const IonSelectOption: import("react").ForwardRefExoticComponent<JSX.IonSelectOption & Omit<import("react").HTMLAttributes<HTMLIonSelectOptionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSelectOptionElement>>;
64
- export declare const IonSkeletonText: import("react").ForwardRefExoticComponent<JSX.IonSkeletonText & Omit<import("react").HTMLAttributes<HTMLIonSkeletonTextElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSkeletonTextElement>>;
65
- export declare const IonSpinner: import("react").ForwardRefExoticComponent<JSX.IonSpinner & Omit<import("react").HTMLAttributes<HTMLIonSpinnerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSpinnerElement>>;
66
- export declare const IonSplitPane: import("react").ForwardRefExoticComponent<JSX.IonSplitPane & Omit<import("react").HTMLAttributes<HTMLIonSplitPaneElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonSplitPaneElement>>;
67
- export declare const IonTab: import("react").ForwardRefExoticComponent<JSX.IonTab & Omit<import("react").HTMLAttributes<HTMLIonTabElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonTabElement>>;
68
- export declare const IonText: import("react").ForwardRefExoticComponent<JSX.IonText & Omit<import("react").HTMLAttributes<HTMLIonTextElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonTextElement>>;
69
- export declare const IonTextarea: import("react").ForwardRefExoticComponent<JSX.IonTextarea & Omit<import("react").HTMLAttributes<HTMLIonTextareaElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonTextareaElement>>;
70
- export declare const IonThumbnail: import("react").ForwardRefExoticComponent<JSX.IonThumbnail & Omit<import("react").HTMLAttributes<HTMLIonThumbnailElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonThumbnailElement>>;
71
- export declare const IonTitle: import("react").ForwardRefExoticComponent<JSX.IonTitle & Omit<import("react").HTMLAttributes<HTMLIonTitleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonTitleElement>>;
72
- export declare const IonToggle: import("react").ForwardRefExoticComponent<JSX.IonToggle & Omit<import("react").HTMLAttributes<HTMLIonToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonToggleElement>>;
73
- export declare const IonToolbar: import("react").ForwardRefExoticComponent<JSX.IonToolbar & Omit<import("react").HTMLAttributes<HTMLIonToolbarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonToolbarElement>>;