New source found from dndbeyond.com
This commit is contained in:
+7
-3
@@ -43,7 +43,7 @@ import {
|
||||
} from "../../components/ComponentCarousel";
|
||||
import SectionPlaceholder from "../../components/SectionPlaceholder";
|
||||
import { SheetAppState } from "../../typings";
|
||||
import BackdropStyles from "../BackdropStyles";
|
||||
import { BackdropStyles } from "../BackdropStyles";
|
||||
import CharacterHeaderTablet from "../CharacterHeaderTablet";
|
||||
import ActionsTablet from "../tablet/ActionsTablet";
|
||||
import CombatTablet from "../tablet/CombatTablet";
|
||||
@@ -125,6 +125,7 @@ class CharacterSheetTablet extends React.PureComponent<Props, State> {
|
||||
IconComponent: isDarkMode ? LightAbilitiesSvg : DarkAbilitiesSvg,
|
||||
}}
|
||||
ContentComponent={MainTablet}
|
||||
isEnabled
|
||||
/>
|
||||
<ComponentCarouselItem
|
||||
itemKey="actions"
|
||||
@@ -134,6 +135,7 @@ class CharacterSheetTablet extends React.PureComponent<Props, State> {
|
||||
IconComponent: isDarkMode ? LightActionsSvg : DarkActionsSvg,
|
||||
}}
|
||||
ContentComponent={ActionsTablet}
|
||||
isEnabled
|
||||
/>
|
||||
<ComponentCarouselItem
|
||||
itemKey="equipment"
|
||||
@@ -143,6 +145,7 @@ class CharacterSheetTablet extends React.PureComponent<Props, State> {
|
||||
IconComponent: isDarkMode ? LightEquipmentSvg : DarkEquipmentSvg,
|
||||
}}
|
||||
ContentComponent={EquipmentTablet}
|
||||
isEnabled
|
||||
/>
|
||||
<ComponentCarouselItem
|
||||
itemKey="spells"
|
||||
@@ -162,6 +165,7 @@ class CharacterSheetTablet extends React.PureComponent<Props, State> {
|
||||
IconComponent: isDarkMode ? LightFeaturesSvg : DarkFeaturesSvg,
|
||||
}}
|
||||
ContentComponent={FeaturesTablet}
|
||||
isEnabled
|
||||
/>
|
||||
<ComponentCarouselItem
|
||||
itemKey="description"
|
||||
@@ -218,7 +222,7 @@ class CharacterSheetTablet extends React.PureComponent<Props, State> {
|
||||
]}
|
||||
>
|
||||
{(interpolatedStyles) => (
|
||||
<React.Fragment>
|
||||
<>
|
||||
{interpolatedStyles.map((config) => (
|
||||
<Sidebar
|
||||
key={config.key}
|
||||
@@ -231,7 +235,7 @@ class CharacterSheetTablet extends React.PureComponent<Props, State> {
|
||||
}
|
||||
/>
|
||||
))}
|
||||
</React.Fragment>
|
||||
</>
|
||||
)}
|
||||
</TransitionMotion>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user