@wayward/types 2.14.1-beta.dev.20241217.2 → 2.14.2-beta.dev.20241218.1

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,10 +10,6 @@
10
10
  */
11
11
  import BindableManager from "@wayward/game/ui/input/BindableManager";
12
12
  export default class ActionBarBindableManager extends BindableManager {
13
- /**
14
- * Default to 1 full action bar
15
- */
16
- static readonly DEFAULT_ACTION_BAR_SLOTS = 12;
17
13
  static readonly DEFAULT_ACTION_BAR_ROW_MODIFIER_ORDER: string;
18
14
  static readonly INSTANCE: ActionBarBindableManager;
19
15
  private requiredSlots;
@@ -0,0 +1,14 @@
1
+ /*!
2
+ * Copyright 2011-2024 Unlok
3
+ * https://www.unlok.ca
4
+ *
5
+ * Credits & Thanks:
6
+ * https://www.unlok.ca/credits-thanks/
7
+ *
8
+ * Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
9
+ * https://github.com/WaywardGame/types/wiki
10
+ */
11
+ import type { IActionBarSlotData } from "@wayward/game/ui/screen/screens/game/static/actions/IActionBar";
12
+ export declare const ACTION_BAR_DEFAULT_SLOT_COUNT = 12;
13
+ declare const ACTION_BAR_DEFAULT_SLOTS: readonly IActionBarSlotData[];
14
+ export default ACTION_BAR_DEFAULT_SLOTS;
@@ -72,7 +72,6 @@ export default class ActionSlotConfigurationColumn extends Component {
72
72
  readonly hr0: HorizontalLine;
73
73
  readonly targetHoveredTileCheckButton: CheckButton;
74
74
  readonly autoUseCheckButton: CheckButton;
75
- readonly hintDiscoverMore: Paragraph;
76
75
  readonly hr1: HorizontalLine;
77
76
  readonly clearSlotButton: Button;
78
77
  readonly hr2: HorizontalLine;
@@ -19,6 +19,7 @@ export declare enum Website {
19
19
  Generic = 7,
20
20
  SteamStorePage = 8,
21
21
  Unlok = 9,
22
- Wayward = 10
22
+ Wayward = 10,
23
+ Bsky = 11
23
24
  }
24
25
  export declare const websiteLinks: Readonly<Record<Website, string>>;
@@ -9,8 +9,8 @@
9
9
  * https://github.com/WaywardGame/types/wiki
10
10
  */
11
11
  import type { IWaywardTitle } from "@wayward/hosts/shared/globalTypes";
12
- export declare const gameVersionStage = "beta", gameVersionMajor = 2, gameVersionMinor = 14, gameVersionPatch = 1, gameVersionName = "Runekeeper", gameVersionColor = 11015763;
13
- export declare const gameVersion = "beta2.14.1";
12
+ export declare const gameVersionStage = "beta", gameVersionMajor = 2, gameVersionMinor = 14, gameVersionPatch = 2, gameVersionName = "Runekeeper", gameVersionColor = 11015763;
13
+ export declare const gameVersion = "beta2.14.2";
14
14
  export declare const gameVersionTitleMajor = "Wayward: Runekeeper";
15
15
  export declare const gameVersionTitleMinor: string;
16
16
  export declare const gameVersionTitle: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wayward/types",
3
3
  "description": "TypeScript declarations for Wayward, used for modding.",
4
- "version": "2.14.1-beta.dev.20241217.2",
4
+ "version": "2.14.2-beta.dev.20241218.1",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",