ados-rcm 1.0.118 → 1.0.119
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/AFrame/AFrame.d.ts +5 -5
- package/dist/index.cjs.js +6 -6
- package/dist/index.es.js +317 -318
- package/package.json +1 -1
|
@@ -53,13 +53,13 @@ interface IAOverflowFrameProps extends IABaseProps {
|
|
|
53
53
|
export declare const AOverflowFrame: (props: IAOverflowFrameProps) => import("react/jsx-runtime").JSX.Element;
|
|
54
54
|
interface IADivideFrameProps extends IABaseProps {
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
56
|
+
* pk? : string | number
|
|
57
57
|
*
|
|
58
|
-
* Description : the
|
|
59
|
-
* frames can be confused if you use same
|
|
60
|
-
* if you don't use
|
|
58
|
+
* Description : the primary key of the frame. lengths will be saved localy with the pk
|
|
59
|
+
* frames can be confused if you use same pks in different frames.
|
|
60
|
+
* if you don't use pk, the lengths willd not be saved.
|
|
61
61
|
*/
|
|
62
|
-
|
|
62
|
+
pk?: string | number;
|
|
63
63
|
/**
|
|
64
64
|
* direction? : 'Row' | 'Col'
|
|
65
65
|
*
|