@cambly/syntax-core 7.7.0 → 7.8.0

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/index.d.ts CHANGED
@@ -945,7 +945,7 @@ declare const RadioButton: ({ checked, "data-testid": dataTestId, disabled, erro
945
945
  /**
946
946
  * Value of the selected radio option
947
947
  */
948
- value: string;
948
+ value: string | number;
949
949
  }) => ReactElement;
950
950
 
951
951
  /**
@@ -1155,7 +1155,7 @@ declare const Typography: ({ align, as, children, color, "data-testid": dataTest
1155
1155
  *
1156
1156
  * @defaultValue "regular"
1157
1157
  */
1158
- weight?: "regular" | "semiBold" | "bold" | "heavy" | undefined;
1158
+ weight?: "regular" | "interactive" | "semiBold" | "bold" | "heavy" | undefined;
1159
1159
  }) => ReactElement;
1160
1160
 
1161
1161
  export { Avatar, Badge, Box, Button, ButtonGroup, Card, Checkbox, Chip, Divider, Heading, IconButton, LinkButton, MiniActionCard, Modal, RadioButton, SelectList, TextField, Typography };