@rpg-engine/long-bow 0.1.68 → 0.1.69

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.
@@ -10,7 +10,7 @@ export interface IDraggableContainerProps {
10
10
  title: string;
11
11
  imgSrc?: string;
12
12
  imgWidth?: string;
13
- onCloseButton: () => void;
13
+ onCloseButton?: () => void;
14
14
  cancelDrag?: string;
15
15
  onPositionChange?: (position: IPosition) => void;
16
16
  }
@@ -6,6 +6,8 @@ interface IProps {
6
6
  width?: number;
7
7
  height?: number;
8
8
  scale?: number;
9
+ grayScale?: boolean;
10
+ opacity?: number;
9
11
  }
10
12
  export declare const SpriteFromAtlas: React.FC<IProps>;
11
13
  export {};
@@ -1,8 +1,7 @@
1
1
  import React from 'react';
2
- interface IProps {
2
+ export interface ISimpleProgressBarProps {
3
3
  value: number;
4
- height?: string;
5
4
  bgColor?: string;
5
+ margin?: number;
6
6
  }
7
- export declare const SimpleProgressBar: React.FC<IProps>;
8
- export {};
7
+ export declare const SimpleProgressBar: React.FC<ISimpleProgressBarProps>;
@@ -1,9 +1,11 @@
1
1
  import React from 'react';
2
2
  export interface ISkillProgressBarProps {
3
- value: number;
4
- height: string;
3
+ skillName: string;
5
4
  bgColor: string;
6
- titleName: string;
7
- logoSrc?: string;
5
+ level: number;
6
+ skillPoints: number;
7
+ skillPointsToNextLevel?: number;
8
+ texturePath: string;
9
+ showSkillPoints?: boolean;
8
10
  }
9
11
  export declare const SkillProgressBar: React.FC<ISkillProgressBarProps>;
@@ -0,0 +1,7 @@
1
+ import { ISkill } from '@rpg-engine/shared';
2
+ import React from 'react';
3
+ export interface ISkillContainerProps {
4
+ skill: ISkill;
5
+ onCloseButton: () => void;
6
+ }
7
+ export declare const SkillsContainer: React.FC<ISkillContainerProps>;
@@ -1,3 +1,10 @@
1
1
  export declare const colors: {
2
2
  darkGrey: string;
3
+ darkYellow: string;
4
+ orange: string;
5
+ cardinal: string;
6
+ raisinBlack: string;
7
+ navyBlue: string;
8
+ purple: string;
9
+ blue: string;
3
10
  };