@ionic/react 7.5.7-dev.11700601419.1c57af2e → 7.5.7-dev.11701113479.149fdab6

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.
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { JSX } from '@ionic/core/components';
3
+ export declare const IonPickerLegacy: import("react").ForwardRefExoticComponent<JSX.IonPickerLegacy & Omit<import("react").HTMLAttributes<HTMLIonPickerLegacyElement>, "style"> & import("./IonicReactProps").IonicReactProps & import("react").RefAttributes<HTMLIonPickerLegacyElement>>;
@@ -5,7 +5,7 @@ export * from './routing-proxies';
5
5
  export { IonAlert } from './IonAlert';
6
6
  export { IonLoading } from './IonLoading';
7
7
  export * from './IonToast';
8
- export { IonPicker } from './IonPicker';
8
+ export { IonPickerLegacy } from './IonPickerLegacy';
9
9
  export * from './IonActionSheet';
10
10
  export { IonModal } from './IonModal';
11
11
  export { IonPopover } from './IonPopover';
@@ -3,6 +3,7 @@ import type { HookOverlayOptions } from './HookOverlayOptions';
3
3
  /**
4
4
  * A hook for presenting/dismissing an IonPicker component
5
5
  * @returns Returns the present and dismiss methods in an array
6
+ * @deprecated Use the inline ion-picker component instead.
6
7
  */
7
8
  export declare function useIonPicker(): UseIonPickerResult;
8
9
  export type UseIonPickerResult = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionic/react",
3
- "version": "7.5.7-dev.11700601419.1c57af2e",
3
+ "version": "7.5.7-dev.11701113479.149fdab6",
4
4
  "description": "React specific wrapper for @ionic/core",
5
5
  "keywords": [
6
6
  "ionic",
@@ -39,7 +39,7 @@
39
39
  "css/"
40
40
  ],
41
41
  "dependencies": {
42
- "@ionic/core": "7.5.7-dev.11700601419.1c57af2e",
42
+ "@ionic/core": "7.5.7-dev.11701113479.149fdab6",
43
43
  "ionicons": "^7.0.0",
44
44
  "tslib": "*"
45
45
  },
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import type { JSX } from '@ionic/core/components';
3
- export declare const IonPicker: import("react").ForwardRefExoticComponent<JSX.IonPicker & Omit<import("react").HTMLAttributes<HTMLIonPickerElement>, "style"> & import("./IonicReactProps").IonicReactProps & import("react").RefAttributes<HTMLIonPickerElement>>;