taro-react-uilib 1.4.30 → 1.4.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taro-react-uilib",
3
- "version": "1.4.30",
3
+ "version": "1.4.32",
4
4
  "description": "基于taro的跨端组件库",
5
5
  "templateInfo": {
6
6
  "name": "default",
@@ -13,6 +13,7 @@ export declare type NumberKeyboardProps = {
13
13
  value: string;
14
14
  closeText?: string;
15
15
  activeIndex: number;
16
+ dataTrackId?: string;
16
17
  } & XHComponentCommonProps;
17
18
  export declare type KeyType = "number" | "delete" | "string" | "none";
18
19
  export interface IKey {
@@ -25,6 +25,7 @@ export declare type RadioGroupProps = {
25
25
  size?: number;
26
26
  fancy?: boolean;
27
27
  checkedClass?: string;
28
+ dataTrackId?: string;
28
29
  };
29
30
  declare const RadioGroup: React.FC<RadioGroupProps>;
30
31
  export default RadioGroup;