ados-rcm 1.0.417 → 1.0.419

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.
@@ -17,13 +17,13 @@ interface IATooltipProps {
17
17
  *
18
18
  * Description : delay of ATooltip
19
19
  */
20
- delay: number;
20
+ delay?: number;
21
21
  /**
22
22
  * distance? : number = 10
23
23
  *
24
24
  * Description : distance of ATooltip
25
25
  */
26
- distance: number;
26
+ distance?: number;
27
27
  }
28
28
  /**
29
29
  * AComponent : ATooltip
@@ -1,4 +1,6 @@
1
1
  import React from 'react';
2
+ export declare const AWrapTypes: readonly ["Default", "Error"];
3
+ export type TAWrapTypes = (typeof AWrapTypes)[number];
2
4
  export interface IAWrapProps {
3
5
  /**
4
6
  * wrapProps? : React.HTMLAttributes<HTMLDivElement>
@@ -19,11 +21,11 @@ export interface IAWrapProps {
19
21
  */
20
22
  errorMessage?: React.ReactNode | React.ReactNode[];
21
23
  /**
22
- * wrapType? : 'Default' | 'Error' = 'Default'
24
+ * wrapType? : TAWrapTypes = 'Default'
23
25
  *
24
26
  * Description : wrapType of AWrap
25
27
  */
26
- wrapType?: 'Default' | 'Error';
28
+ wrapType?: TAWrapTypes;
27
29
  /**
28
30
  * label? : React.ReactNode
29
31
  *