@khanacademy/perseus 71.4.0 → 71.4.1
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/es/index.js +1 -1
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/math-rendering-context.d.ts +2 -2
- package/dist/mixins/widget-prop-denylist.d.ts +0 -17
- package/dist/types.d.ts +1 -2
- package/dist/util.d.ts +1 -1
- package/dist/widgets/expression/expression.d.ts +66 -1
- package/dist/widgets/interactive-graphs/backgrounds/utils.d.ts +0 -5
- package/dist/widgets/label-image/label-image.d.ts +66 -1
- package/dist/widgets/numeric-input/numeric-input.d.ts +66 -1
- package/dist/widgets/numeric-input/utils.d.ts +0 -7
- package/dist/widgets/plotter/plotter.d.ts +1 -1
- package/dist/widgets/radio/multiple-choice-widget.new.d.ts +68 -2
- package/dist/widgets/radio/radio-component.d.ts +1 -1
- package/package.json +51 -52
- package/dist/components/visibility-observer/create-visibility-observer.d.ts +0 -34
- package/dist/components/visibility-observer/get-scroll-parent.d.ts +0 -1
- package/dist/components/visibility-observer/visibility-observer.d.ts +0 -31
- package/dist/widgets/radio/choice-icon/choice-icon-styles.d.ts +0 -9
- package/dist/widgets/radio/choice-icon/choice-icon.new.d.ts +0 -22
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
interface ChoiceIconProps {
|
|
3
|
-
pos: number;
|
|
4
|
-
checked: boolean;
|
|
5
|
-
focused: boolean;
|
|
6
|
-
hovered: boolean;
|
|
7
|
-
pressed: boolean;
|
|
8
|
-
correct: boolean;
|
|
9
|
-
showCorrectness: boolean;
|
|
10
|
-
multipleSelect: boolean;
|
|
11
|
-
reviewMode: boolean;
|
|
12
|
-
previouslyAnswered: boolean;
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* This component is a duplicate of the ChoiceIcon component in choice-icon.tsx
|
|
16
|
-
* for the Radio Revitalization Project. (LEMS-2933)
|
|
17
|
-
* This component will eventually replace choice-icon.tsx when the feature flag is no longer needed.
|
|
18
|
-
*
|
|
19
|
-
* TODO(LEMS-2994): Clean up this file.
|
|
20
|
-
*/
|
|
21
|
-
declare const ChoiceIcon: (props: ChoiceIconProps) => React.ReactElement;
|
|
22
|
-
export default ChoiceIcon;
|