ados-rcm 1.0.117 → 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.
@@ -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
- * idx? : string | number
56
+ * pk? : string | number
57
57
  *
58
- * Description : the idx of the frame. lengths will be saved localy with the idx.
59
- * frames can be confused if you use same idxes in different frames.
60
- * if you don't use idx, the lengths willd not be saved.
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
- idx?: string | number;
62
+ pk?: string | number;
63
63
  /**
64
64
  * direction? : 'Row' | 'Col'
65
65
  *