Grabbed dndbeyond's source code

```
~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js
```
This commit is contained in:
2025-05-28 11:50:03 -07:00
commit 8df9031d27
3592 changed files with 319051 additions and 0 deletions
@@ -0,0 +1,41 @@
import { visuallyHidden } from "@mui/utils";
import React from "react";
import { connect, DispatchProp } from "react-redux";
import {
CharacterTheme,
rulesEngineSelectors,
} from "@dndbeyond/character-rules-engine/es";
import MobileDivider from "../../../components/MobileDivider";
import SubsectionMobile from "../../../components/SubsectionMobile";
import { SheetAppState } from "../../../typings";
import Actions from "../../Actions";
interface Props extends DispatchProp {
theme: CharacterTheme;
}
class ActionsMobile extends React.PureComponent<Props> {
render() {
const { theme } = this.props;
return (
<SubsectionMobile>
<section className="ct-actions-mobile">
<h2 style={visuallyHidden}>Actions</h2>
<MobileDivider label="Actions" theme={theme} />
<Actions showNotes={false} />
<MobileDivider isEnd={true} theme={theme} />
</section>
</SubsectionMobile>
);
}
}
function mapStateToProps(state: SheetAppState) {
return {
theme: rulesEngineSelectors.getCharacterTheme(state),
};
}
export default connect(mapStateToProps)(ActionsMobile);
@@ -0,0 +1,4 @@
import ActionsMobile from "./ActionsMobile";
export default ActionsMobile;
export { ActionsMobile };