ados-rcm 1.0.417 → 1.0.418
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.
- package/dist/AModule/AComponents/AWrap/AWrap.d.ts +4 -2
- package/dist/index.cjs.js +16 -16
- package/dist/index.es.js +53 -52
- package/package.json +1 -1
@@ -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? :
|
24
|
+
* wrapType? : TAWrapTypes = 'Default'
|
23
25
|
*
|
24
26
|
* Description : wrapType of AWrap
|
25
27
|
*/
|
26
|
-
wrapType?:
|
28
|
+
wrapType?: TAWrapTypes;
|
27
29
|
/**
|
28
30
|
* label? : React.ReactNode
|
29
31
|
*
|