@ihabdevteam/core 0.9.0 → 0.9.2

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.
@@ -2294,6 +2294,11 @@ export declare interface ImgStats {
2294
2294
  total: number;
2295
2295
  }
2296
2296
 
2297
+ /** @public */
2298
+ declare function InfoTooltip(props: TooltipInfoProps): JSX.Element | null;
2299
+ export { InfoTooltip }
2300
+ export { InfoTooltip as TooltipInfo }
2301
+
2297
2302
  export declare function initFontScale(): void;
2298
2303
 
2299
2304
  /** 앱 시작 시 저장된 테마 즉시 적용 */
@@ -5467,6 +5472,11 @@ export declare interface TabsProps {
5467
5472
  size?: 32 | 40 | 48;
5468
5473
  }
5469
5474
 
5475
+ /** @public */
5476
+ declare function TextBoxTooltip(props: TooltipTextBoxProps): JSX.Element;
5477
+ export { TextBoxTooltip }
5478
+ export { TextBoxTooltip as TooltipTextBox }
5479
+
5470
5480
  /** @public */
5471
5481
  export declare function TextField(props: TextFieldProps): JSX.Element;
5472
5482
 
@@ -5752,9 +5762,6 @@ export declare interface TooltipDescriptionProps {
5752
5762
  offset?: number;
5753
5763
  }
5754
5764
 
5755
- /** @public */
5756
- export declare function TooltipInfo(props: TooltipInfoProps): JSX.Element | null;
5757
-
5758
5765
  /** @public */
5759
5766
  export declare interface TooltipInfoProps {
5760
5767
  anchorRect?: DOMRect | AnchorRectLike | null;
@@ -5810,9 +5817,6 @@ export declare interface TooltipProps {
5810
5817
  header?: ReactNode;
5811
5818
  }
5812
5819
 
5813
- /** @public */
5814
- export declare function TooltipTextBox(props: TooltipTextBoxProps): JSX.Element;
5815
-
5816
5820
  /** @public */
5817
5821
  export declare interface TooltipTextBoxProps {
5818
5822
  text?: string | string[] | null;