@wayward/types 2.15.3-beta.dev.20251221.1 → 2.15.3-beta.dev.20251222.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.
|
@@ -8,7 +8,7 @@ on:
|
|
|
8
8
|
env:
|
|
9
9
|
REPO_NAME: ${{ github.event.repository.name }}
|
|
10
10
|
EXTRA_RELEASE_ARGS: ${{ github.ref == 'refs/heads/development' && '--prerelease' || '' }}
|
|
11
|
-
EXTRA_NPM_ARGS: ${{ github.ref == 'refs/heads/development' && '--tag dev' || '' }}
|
|
11
|
+
EXTRA_NPM_ARGS: ${{ github.ref == 'refs/heads/development' && '--tag dev' || '--tag latest' }}
|
|
12
12
|
|
|
13
13
|
jobs:
|
|
14
14
|
release:
|
package/definitions/game/ui/screen/screens/game/component/container/ContainerBucketItemList.d.ts
CHANGED
|
@@ -88,6 +88,10 @@ export default class ContainerBucketItemList extends Component implements ISorta
|
|
|
88
88
|
private readonly bucketRef;
|
|
89
89
|
get bucket(): ContainerBucket;
|
|
90
90
|
constructor(bucket: ContainerBucket, container?: IContainer);
|
|
91
|
+
/**
|
|
92
|
+
* This is required because ItemComponents might have created subscribers (i.e. registered highlights), which would remain even after this ContainerBucketItemList is removed since the child ItemComponents remain referenced by the highlights manager.
|
|
93
|
+
*/
|
|
94
|
+
protected onRemoved(): void;
|
|
91
95
|
private readonly activeReasons;
|
|
92
96
|
toggleActive(reason: string, active: boolean): void;
|
|
93
97
|
getSortableID(child: Component & Partial<ItemComponent>): number | undefined;
|
package/package.json
CHANGED