@rpg-engine/long-bow 0.1.82 → 0.1.85

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.
Files changed (89) hide show
  1. package/dist/components/Button.d.ts +1 -0
  2. package/dist/components/Equipment/EquipmentSet.d.ts +3 -1
  3. package/dist/components/Item/Cards/ItemTooltip.d.ts +6 -0
  4. package/dist/components/Item/Inventory/ItemContainer.d.ts +3 -5
  5. package/dist/components/Item/Inventory/ItemContainerTypes.d.ts +4 -0
  6. package/dist/components/Item/Inventory/ItemSlot.d.ts +4 -7
  7. package/dist/components/PropertySelect/PropertySelect.d.ts +12 -0
  8. package/dist/components/QuestInfo/QuestInfo.d.ts +14 -0
  9. package/dist/components/RelativeListMenu.d.ts +13 -0
  10. package/dist/components/shared/SpriteIcon.d.ts +2 -0
  11. package/dist/index.d.ts +1 -0
  12. package/dist/long-bow.cjs.development.js +407 -813
  13. package/dist/long-bow.cjs.development.js.map +1 -1
  14. package/dist/long-bow.cjs.production.min.js +1 -1
  15. package/dist/long-bow.cjs.production.min.js.map +1 -1
  16. package/dist/long-bow.esm.js +402 -811
  17. package/dist/long-bow.esm.js.map +1 -1
  18. package/dist/stories/Button.stories.d.ts +5 -0
  19. package/dist/stories/Chat.stories.d.ts +5 -0
  20. package/dist/stories/CheckButton.stories.d.ts +5 -0
  21. package/dist/stories/DraggableContainer.stories.d.ts +5 -0
  22. package/dist/stories/Dropdown.stories.d.ts +5 -0
  23. package/dist/stories/EquipmentSet.stories.d.ts +5 -0
  24. package/dist/stories/ItemContainer.stories.d.ts +5 -0
  25. package/dist/stories/ListMenu.stories.d.ts +5 -0
  26. package/dist/stories/Multitab.stories.d.ts +6 -0
  27. package/dist/stories/NPCDialog.stories.d.ts +7 -0
  28. package/dist/stories/ProgressBar.stories.d.ts +8 -0
  29. package/dist/stories/PropertySelect.stories.d.ts +5 -0
  30. package/dist/stories/QuestInfo.stories.d.ts +5 -0
  31. package/dist/stories/RPGUIContainers.stories.d.ts +5 -0
  32. package/dist/stories/RadioButton.stories.d.ts +5 -0
  33. package/dist/stories/RangeSlider.stories.d.ts +5 -0
  34. package/dist/stories/ScrollList.stories.d.ts +5 -0
  35. package/dist/stories/SimpleProgressBar.stories.d.ts +5 -0
  36. package/dist/stories/SkillProgressBar.stories.d.ts +5 -0
  37. package/dist/stories/SkillsContainer.stories.d.ts +5 -0
  38. package/dist/stories/Text.stories.d.ts +7 -0
  39. package/package.json +2 -2
  40. package/src/components/Button.tsx +3 -2
  41. package/src/components/Equipment/EquipmentSet.tsx +97 -142
  42. package/src/components/Item/Cards/ItemTooltip.tsx +32 -0
  43. package/src/components/Item/Inventory/ItemContainer.tsx +47 -95
  44. package/src/components/Item/Inventory/ItemContainerTypes.ts +4 -0
  45. package/src/components/Item/Inventory/ItemSlot.tsx +145 -104
  46. package/src/components/NPCDialog/QuestionDialog/QuestionDialog.tsx +0 -3
  47. package/src/components/PropertySelect/PropertySelect.tsx +101 -0
  48. package/src/components/PropertySelect/img/ui-arrows/arrow01-left-clicked.png +0 -0
  49. package/src/components/PropertySelect/img/ui-arrows/arrow01-left.png +0 -0
  50. package/src/components/PropertySelect/img/ui-arrows/arrow01-right-clicked.png +0 -0
  51. package/src/components/PropertySelect/img/ui-arrows/arrow01-right.png +0 -0
  52. package/src/components/PropertySelect/img/ui-arrows/arrow02-left-clicked.png +0 -0
  53. package/src/components/PropertySelect/img/ui-arrows/arrow02-left.png +0 -0
  54. package/src/components/PropertySelect/img/ui-arrows/arrow02-right-clicked.png +0 -0
  55. package/src/components/PropertySelect/img/ui-arrows/arrow02-right.png +0 -0
  56. package/src/components/QuestInfo/QuestInfo.tsx +143 -0
  57. package/src/components/QuestInfo/img/default.png +0 -0
  58. package/src/components/RelativeListMenu.tsx +83 -0
  59. package/src/components/SkillsContainer.tsx +15 -1
  60. package/src/components/shared/SpriteIcon.tsx +4 -2
  61. package/src/index.tsx +1 -0
  62. package/src/mocks/atlas/icons/icons.json +494 -62
  63. package/src/mocks/atlas/icons/icons.png +0 -0
  64. package/src/mocks/itemContainer.mocks.ts +1 -1
  65. package/src/stories/Button.stories.tsx +36 -0
  66. package/src/stories/Chat.stories.tsx +170 -0
  67. package/src/stories/CheckButton.stories.tsx +48 -0
  68. package/src/stories/DraggableContainer.stories.tsx +28 -0
  69. package/src/stories/Dropdown.stories.tsx +46 -0
  70. package/src/stories/EquipmentSet.stories.tsx +50 -0
  71. package/src/stories/ItemContainer.stories.tsx +50 -0
  72. package/src/stories/ListMenu.stories.tsx +56 -0
  73. package/src/stories/Multitab.stories.tsx +51 -0
  74. package/src/stories/NPCDialog.stories.tsx +130 -0
  75. package/src/stories/ProgressBar.stories.tsx +23 -0
  76. package/src/stories/PropertySelect.stories.tsx +41 -0
  77. package/src/stories/QuestInfo.stories.tsx +76 -0
  78. package/src/stories/RPGUIContainers.stories.tsx +42 -0
  79. package/src/stories/RadioButton.stories.tsx +49 -0
  80. package/src/stories/RangeSlider.stories.tsx +60 -0
  81. package/src/stories/ScrollList.stories.tsx +85 -0
  82. package/src/stories/SimpleProgressBar.stories.tsx +22 -0
  83. package/src/stories/SkillProgressBar.stories.tsx +30 -0
  84. package/src/stories/SkillsContainer.stories.tsx +31 -0
  85. package/src/stories/Text.stories.tsx +42 -0
  86. package/dist/components/Item/Cards/ItemCard.d.ts +0 -9
  87. package/dist/components/store/UI.store.d.ts +0 -34
  88. package/src/components/Item/Cards/ItemCard.tsx +0 -36
  89. package/src/components/store/UI.store.ts +0 -192
@@ -0,0 +1,41 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import { RPGUIRoot } from '..';
4
+ import PropertySelect, {
5
+ IPropertySelectProps,
6
+ } from '../components/PropertySelect/PropertySelect';
7
+
8
+ const meta: Meta = {
9
+ title: 'Property Select',
10
+ component: PropertySelect,
11
+ };
12
+
13
+ export default meta;
14
+
15
+ const Template: Story<IPropertySelectProps> = args => (
16
+ <RPGUIRoot>
17
+ <PropertySelect {...args} />
18
+ </RPGUIRoot>
19
+ );
20
+
21
+ export const Default = Template.bind({});
22
+
23
+ const propertiesMock = [
24
+ {
25
+ id: '2b716274-b19c-451d-9561-16bca8c6a12d',
26
+ name: 'Vegetables',
27
+ },
28
+ {
29
+ id: '536789bd-38fb-48f9-8903-dad86f276d47',
30
+ name: 'Counseling',
31
+ },
32
+ {
33
+ id: '80f07029-b907-4fae-872e-4f2b569f81c9',
34
+ name: 'Through',
35
+ },
36
+ ];
37
+
38
+ Default.args = {
39
+ availableProperties: propertiesMock,
40
+ selectedProperty: {},
41
+ };
@@ -0,0 +1,76 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import {
4
+ IQuestInfoProps,
5
+ QuestInfo,
6
+ } from '../../src/components/QuestInfo/QuestInfo';
7
+ import { RPGUIRoot } from '../../src/components/RPGUIRoot';
8
+
9
+ const meta: Meta = {
10
+ title: 'Quest Info',
11
+ component: QuestInfo,
12
+ };
13
+
14
+ export default meta;
15
+
16
+ const Template: Story<IQuestInfoProps> = args => (
17
+ <RPGUIRoot>
18
+ <QuestInfo {...args} />
19
+ </RPGUIRoot>
20
+ );
21
+
22
+ export const Default = Template.bind({});
23
+
24
+ const buttonMock = [
25
+ {
26
+ disabled: false,
27
+ title: 'Accept',
28
+ onClick: () => console.log('button 1 clicked'),
29
+ },
30
+ {
31
+ disabled: true,
32
+ title: 'Share',
33
+ onClick: () => console.log('button 2 clicked'),
34
+ },
35
+ {
36
+ disabled: false,
37
+ title: 'Reject',
38
+ onClick: () => console.log('button 3 clicked'),
39
+ },
40
+ ];
41
+
42
+ Default.args = {
43
+ title: 'Quest Info',
44
+ onClose: () => console.log('closing'),
45
+ button: buttonMock,
46
+ children: (
47
+ <>
48
+ <h1>HTML Ipsum Presents</h1>
49
+ <p>
50
+ <strong>Pellentesque habitant morbi tristique</strong> senectus et netus
51
+ et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat
52
+ vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet
53
+ quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris
54
+ placerat eleifend leo. Quisque sit amet est et sapien ullamcorper
55
+ pharetra. Vestibulum erat wisi, condimentum sed,{' '}
56
+ <code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum,
57
+ elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus
58
+ lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut
59
+ felis.
60
+ </p>
61
+ <h1>HTML Ipsum Presents</h1>
62
+ <p>
63
+ <strong>Pellentesque habitant morbi tristique</strong> senectus et netus
64
+ et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat
65
+ vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet
66
+ quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris
67
+ placerat eleifend leo. Quisque sit amet est et sapien ullamcorper
68
+ pharetra. Vestibulum erat wisi, condimentum sed,{' '}
69
+ <code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum,
70
+ elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus
71
+ lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut
72
+ felis.
73
+ </p>
74
+ </>
75
+ ),
76
+ };
@@ -0,0 +1,42 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import {
4
+ IRPGUIContainerProps,
5
+ RPGUIContainer,
6
+ RPGUIContainerTypes,
7
+ } from '../../src/components/RPGUIContainer';
8
+ import { RPGUIRoot } from '../../src/components/RPGUIRoot';
9
+
10
+ const meta: Meta = {
11
+ title: 'RPGUI Container',
12
+ component: RPGUIContainer,
13
+ argTypes: {
14
+ type: {
15
+ control: {
16
+ type: 'select',
17
+ labels: {
18
+ [RPGUIContainerTypes.Framed]: 'framed',
19
+ [RPGUIContainerTypes.FramedGold]: 'framed-gold',
20
+ [RPGUIContainerTypes.FramedGold2]: 'framed-gold-2',
21
+ [RPGUIContainerTypes.FramedGrey]: 'framed-grey',
22
+ },
23
+ },
24
+ },
25
+ children: {},
26
+ },
27
+ };
28
+
29
+ export default meta;
30
+
31
+ const Template: Story<IRPGUIContainerProps> = args => (
32
+ <RPGUIRoot>
33
+ <RPGUIContainer {...args} />
34
+ </RPGUIRoot>
35
+ );
36
+
37
+ export const Default = Template.bind({});
38
+
39
+ Default.args = {
40
+ type: RPGUIContainerTypes.Framed,
41
+ children: <p>This is a container test</p>,
42
+ };
@@ -0,0 +1,49 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import {
4
+ InputRadio,
5
+ IRadioItems,
6
+ IRadioProps,
7
+ } from '../../src/components/RadioButton';
8
+ import {
9
+ RPGUIContainer,
10
+ RPGUIContainerTypes,
11
+ } from '../../src/components/RPGUIContainer';
12
+ import { RPGUIRoot } from '../../src/components/RPGUIRoot';
13
+
14
+ const meta: Meta = {
15
+ title: 'Radio Input',
16
+ component: InputRadio,
17
+ };
18
+
19
+ export default meta;
20
+
21
+ const Template: Story<IRadioProps> = args => (
22
+ <RPGUIRoot>
23
+ <RPGUIContainer type={RPGUIContainerTypes.Framed}>
24
+ <InputRadio {...args} />
25
+ </RPGUIContainer>
26
+ </RPGUIRoot>
27
+ );
28
+
29
+ export const Default = Template.bind({});
30
+
31
+ const items: IRadioItems[] = [
32
+ {
33
+ label: 'label1',
34
+ value: 'value1',
35
+ },
36
+ {
37
+ label: 'label2',
38
+ value: 'value2',
39
+ },
40
+ {
41
+ label: 'label3',
42
+ value: 'value3',
43
+ },
44
+ ];
45
+
46
+ Default.args = {
47
+ items,
48
+ name: 'teste',
49
+ };
@@ -0,0 +1,60 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import {
4
+ IRangeSliderProps,
5
+ RangeSlider,
6
+ RangeSliderType,
7
+ } from '../../src/components/RangeSlider';
8
+ import { RPGUIRoot } from '../../src/components/RPGUIRoot';
9
+
10
+ const meta: Meta = {
11
+ title: 'Slider',
12
+ component: RangeSlider,
13
+ argTypes: {
14
+ type: {
15
+ control: {
16
+ type: 'select',
17
+ labels: {
18
+ [RangeSliderType.Slider]: 'slider',
19
+ [RangeSliderType.GoldSlider]: 'golden-slider',
20
+ },
21
+ },
22
+ },
23
+ valueMin: {
24
+ control: {
25
+ type: 'number',
26
+ },
27
+ },
28
+ valueMax: {
29
+ control: {
30
+ type: 'number',
31
+ },
32
+ },
33
+ value: {
34
+ control: {
35
+ type: 'number',
36
+ },
37
+ },
38
+ },
39
+ parameters: {
40
+ controls: { expanded: true },
41
+ },
42
+ };
43
+
44
+ export default meta;
45
+
46
+ const Template: Story<IRangeSliderProps> = args => (
47
+ <RPGUIRoot>
48
+ <RangeSlider {...args} />
49
+ </RPGUIRoot>
50
+ );
51
+
52
+ // By passing using the Args format for exported stories, you can control the props for a component for reuse in a test
53
+ // https://storybook.js.org/docs/react/workflows/unit-testing
54
+ export const Default = Template.bind({});
55
+
56
+ Default.args = {
57
+ type: RangeSliderType.Slider,
58
+ valueMin: 0,
59
+ valueMax: 100,
60
+ };
@@ -0,0 +1,85 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import { RPGUIRoot } from '../../src/components/RPGUIRoot';
4
+ import { IListMenuProps, ListMenu } from '../../src/components/ScrollList';
5
+
6
+ const meta: Meta = {
7
+ /* 👇 The title prop is optional.
8
+ * See https://storybook.js.org/docsreact/configure/overview#configure-story-loading
9
+ * to learn how to generate automatic titles
10
+ */
11
+ title: 'Scroll List',
12
+ component: ListMenu,
13
+ argTypes: {},
14
+ };
15
+
16
+ export default meta;
17
+
18
+ //👇 We create a “template” of how args map to rendering "Blacksmith","Merchant","City Guard","Explorer"
19
+ const Template: Story<IListMenuProps> = args => (
20
+ <RPGUIRoot>
21
+ <ListMenu {...args} />
22
+ </RPGUIRoot>
23
+ );
24
+
25
+ export const Default = Template.bind({});
26
+
27
+ Default.args = {
28
+ title: 'Scroll List',
29
+ // x: 100,
30
+ // y: 100,
31
+ options: [
32
+ {
33
+ id: 'blacksmith',
34
+ text: 'Huge option added here',
35
+ },
36
+ {
37
+ text: 'Merchant',
38
+ id: 'merchant',
39
+ },
40
+ {
41
+ text: 'City Guard',
42
+ id: 'city-guard',
43
+ },
44
+ {
45
+ text: 'Explorer',
46
+ id: 'explorer',
47
+ },
48
+ {
49
+ text: 'Royalty',
50
+ id: 'royalty',
51
+ },
52
+ {
53
+ text: 'Gladiator',
54
+ id: 'gladiator',
55
+ },
56
+ {
57
+ id: 'blacksmith',
58
+ text: 'Huge option added here',
59
+ },
60
+ {
61
+ text: 'Merchant',
62
+ id: 'merchant',
63
+ },
64
+ {
65
+ text: 'City Guard',
66
+ id: 'city-guard',
67
+ },
68
+ {
69
+ text: 'Explorer',
70
+ id: 'explorer',
71
+ },
72
+ {
73
+ text: 'Royalty',
74
+ id: 'royalty',
75
+ },
76
+ {
77
+ text: 'Gladiator',
78
+ id: 'gladiator',
79
+ },
80
+ {
81
+ text: 'Gladiator',
82
+ id: 'gladiator',
83
+ },
84
+ ],
85
+ };
@@ -0,0 +1,22 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import { RPGUIRoot } from '../../src/components/RPGUIRoot';
4
+ import {
5
+ ISimpleProgressBarProps,
6
+ SimpleProgressBar,
7
+ } from '../../src/components/SimpleProgressBar';
8
+
9
+ const meta: Meta = {
10
+ title: 'Simple Progress Bar',
11
+ component: SimpleProgressBar,
12
+ };
13
+
14
+ export default meta;
15
+
16
+ const Template: Story<ISimpleProgressBarProps> = args => (
17
+ <RPGUIRoot>
18
+ <SimpleProgressBar {...args} />
19
+ </RPGUIRoot>
20
+ );
21
+
22
+ export const Default = Template.bind({});
@@ -0,0 +1,30 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import { RPGUIRoot } from '../../src/components/RPGUIRoot';
4
+ import {
5
+ ISkillProgressBarProps,
6
+ SkillProgressBar,
7
+ } from '../../src/components/SkillProgressBar';
8
+
9
+ const meta: Meta = {
10
+ title: 'Skill Progress Bar',
11
+ component: SkillProgressBar,
12
+ };
13
+
14
+ export default meta;
15
+
16
+ const Template: Story<ISkillProgressBarProps> = args => (
17
+ <RPGUIRoot>
18
+ <SkillProgressBar {...args} />
19
+ </RPGUIRoot>
20
+ );
21
+ export const Default = Template.bind([]);
22
+
23
+ Default.args = {
24
+ skillName: 'Sword skill',
25
+ bgColor: '#ff0000',
26
+ level: 2,
27
+ skillPoints: 10,
28
+ skillPointsToNextLevel: 100,
29
+ texturePath: 'swords/broad-sword.png',
30
+ };
@@ -0,0 +1,31 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import { RPGUIRoot } from '../../src/components/RPGUIRoot';
4
+ import {
5
+ ISkillContainerProps,
6
+ SkillsContainer,
7
+ } from '../../src/components/SkillsContainer';
8
+ import { skillMock } from '../../src/mocks/skills.mocks';
9
+
10
+ const meta: Meta = {
11
+ title: 'Skills Container',
12
+ component: SkillsContainer,
13
+ };
14
+
15
+ export default meta;
16
+
17
+ const Template: Story<ISkillContainerProps> = args => (
18
+ <RPGUIRoot>
19
+ <SkillsContainer
20
+ {...args}
21
+ skill={skillMock}
22
+ onCloseButton={() => console.log('close skill container')}
23
+ />
24
+ </RPGUIRoot>
25
+ );
26
+
27
+ export const Default = Template.bind([]);
28
+
29
+ Default.args = {
30
+ skill: skillMock,
31
+ };
@@ -0,0 +1,42 @@
1
+ import { Meta, Story } from '@storybook/react';
2
+ import React from 'react';
3
+ import { RPGUIRoot } from '../../src';
4
+ import {
5
+ IInputProps,
6
+ Input as InputComponent,
7
+ } from '../../src/components/Input';
8
+ import {
9
+ ITextArea,
10
+ TextArea as TextAreaComponent,
11
+ } from '../../src/components/TextArea';
12
+
13
+ const meta: Meta = {
14
+ title: 'Text',
15
+ component: InputComponent,
16
+ };
17
+
18
+ export default meta;
19
+
20
+ const InputTemplate: Story<IInputProps> = args => (
21
+ <RPGUIRoot>
22
+ <InputComponent {...args} />
23
+ </RPGUIRoot>
24
+ );
25
+
26
+ export const Input = InputTemplate.bind({});
27
+
28
+ Input.args = {
29
+ placeholder: 'Test placeholder',
30
+ };
31
+
32
+ const TextAreaTemplate: Story<ITextArea> = args => (
33
+ <RPGUIRoot>
34
+ <TextAreaComponent {...args} />
35
+ </RPGUIRoot>
36
+ );
37
+
38
+ export const TextArea = TextAreaTemplate.bind({});
39
+
40
+ TextArea.args = {
41
+ placeholder: 'Test placeholder',
42
+ };
@@ -1,9 +0,0 @@
1
- import { IItem } from '@rpg-engine/shared';
2
- import React from 'react';
3
- interface IProps {
4
- item: IItem | null;
5
- x: number;
6
- y: number;
7
- }
8
- export declare const ItemCard: React.FC<IProps>;
9
- export {};
@@ -1,34 +0,0 @@
1
- import { IItem, ItemSocketEvents, ItemType } from '@rpg-engine/shared';
2
- import { IContextMenuItem } from '../Item/Inventory/itemContainerHelper';
3
- import { SlotContainerType } from '../Item/Inventory/ItemSlot';
4
- interface IContextMenu {
5
- visible: boolean;
6
- posX: number;
7
- posY: number;
8
- slotItem: IItem | null;
9
- slotIndex?: number | null;
10
- contextActions: IContextMenuItem[];
11
- }
12
- interface IHoverDetail {
13
- visible: boolean;
14
- posX: number;
15
- posY: number;
16
- item: IItem | null;
17
- }
18
- interface ISetContextMenu extends Omit<IContextMenu, 'contextActions'> {
19
- }
20
- declare class UIStore {
21
- contextMenu: IContextMenu | null;
22
- onHoverDetail: IHoverDetail | null;
23
- constructor();
24
- setContextMenu(contextMenu: ISetContextMenu, itemType: ItemType): void;
25
- setEquipContextMenu(contextMenu: ISetContextMenu, itemType: ItemType, isItemContainer: boolean | undefined): void;
26
- clearContextMenu(): void;
27
- setItemHoverDetail(hoverDetail: IHoverDetail): void;
28
- clearItemHoverDetail(): void;
29
- handleOnItemClick: (item: IItem, posX: number, posY: number, slotContainerType: SlotContainerType | null) => void;
30
- handleOnMouseHover: (event: any, slotIndex: number, item: IItem | null, posX: number, posY: number, onMouseOver: any) => void;
31
- onSelected(selectedActionId: ItemSocketEvents | string, onActionSelected: any): void;
32
- }
33
- export declare const uiStore: UIStore;
34
- export {};
@@ -1,36 +0,0 @@
1
- import { IItem } from '@rpg-engine/shared';
2
- import React from 'react';
3
- import styled from 'styled-components';
4
-
5
- interface IProps {
6
- item: IItem | null;
7
- x: number;
8
- y: number;
9
- }
10
-
11
- export const ItemCard: React.FC<IProps> = ({ item, x, y }) => {
12
- return (
13
- <Container x={x} y={y}>
14
- {item?.name}
15
- </Container>
16
- );
17
- };
18
-
19
- interface IContainerProps {
20
- x?: number;
21
- y?: number;
22
- fontSize?: number;
23
- }
24
- const Container = styled.div<IContainerProps>`
25
- position: absolute;
26
- top: ${props => props.y || 0}px;
27
- left: ${props => props.x || 0}px;
28
- font-size: 0.5rem;
29
- color: white;
30
- background-color: black;
31
- border-radius: 5px;
32
- padding: 0.5rem;
33
- min-width: 20px;
34
-
35
- opacity: 0.5;
36
- `;