@rpg-engine/long-bow 0.6.27 → 0.6.29
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/components/PartySystem/mockedConstantes/mockedValues.d.ts +2 -0
- package/dist/components/Tutorial/TutorialStepper.d.ts +1 -1
- package/dist/long-bow.cjs.development.js +332 -296
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +331 -297
- package/dist/long-bow.esm.js.map +1 -1
- package/dist/stories/PartyManager.stories.d.ts +2 -1
- package/package.json +1 -1
- package/src/components/PartySystem/PartyManager/PartyManagerRows.tsx +8 -14
- package/src/components/PartySystem/mockedConstantes/mockedValues.tsx +38 -0
- package/src/components/Stepper.tsx +1 -1
- package/src/components/Tutorial/TutorialStepper.tsx +56 -47
- package/src/stories/PartyManager.stories.tsx +24 -4
|
@@ -5,3 +5,5 @@ export declare const mockedPartyRows: IPartyRowProps[];
|
|
|
5
5
|
export declare const mockedPlayersRows2: ICharacterPartyShared;
|
|
6
6
|
export declare const mockedPlayersRows: IPlayersRowProps[];
|
|
7
7
|
export declare const mockedPartyManager: any[];
|
|
8
|
+
export declare const getMockedPlayersRowsLeader: (userId: string) => ICharacterPartyShared;
|
|
9
|
+
export declare const getMockedPlayersRowsNotLeader: (userId: string) => ICharacterPartyShared;
|
|
@@ -11,4 +11,4 @@ export interface ITutorialStepperProps {
|
|
|
11
11
|
onLessonFinish: () => void;
|
|
12
12
|
imageStyle?: CSSProperties;
|
|
13
13
|
}
|
|
14
|
-
export declare const TutorialStepper: ({ lessons, onLessonFinish, imageStyle
|
|
14
|
+
export declare const TutorialStepper: React.MemoExoticComponent<({ lessons, onLessonFinish, imageStyle }: ITutorialStepperProps) => JSX.Element>;
|