@wayward/types 2.15.3-beta.dev.20260227.1 → 2.15.3-beta.dev.20260303.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.
|
@@ -17,6 +17,7 @@ export declare enum CurseInfoClasses {
|
|
|
17
17
|
export default class CurseInfo extends StatInfo {
|
|
18
18
|
private readonly curseFactors;
|
|
19
19
|
private readonly curseFactorsExact;
|
|
20
|
+
private getCurseRatePercent;
|
|
20
21
|
hasContent(context: InfoProviderContext): boolean;
|
|
21
22
|
get(): InfoProvider[];
|
|
22
23
|
}
|
|
@@ -52,6 +52,7 @@ export default class Input extends Component implements IRefreshable {
|
|
|
52
52
|
private shouldNotClearOnEscape;
|
|
53
53
|
private shouldSelectOnFocus;
|
|
54
54
|
private shouldSelectOnNextMouseUp;
|
|
55
|
+
private shouldEscapeStopPropagation;
|
|
55
56
|
private debounce;
|
|
56
57
|
private isFocusing?;
|
|
57
58
|
get changed(): boolean;
|
|
@@ -76,6 +77,7 @@ export default class Input extends Component implements IRefreshable {
|
|
|
76
77
|
setBlurOnEnterAndEmpty(shouldBlurOnEnterAndEmpty?: boolean): this;
|
|
77
78
|
setBlurOnEnter(shouldBlurOnEnter?: boolean): this;
|
|
78
79
|
setNotClearOnEscape(shouldNotClearOnEscape?: boolean): this;
|
|
80
|
+
setStopPropagationOnEscape(shouldStopPropagationOnEscape?: boolean): this;
|
|
79
81
|
setSelectOnFocus(selectOnFocus?: boolean): this;
|
|
80
82
|
setDebounce(debounce?: number): this;
|
|
81
83
|
editInput(consumer: (input: Component) => any): this;
|
package/package.json
CHANGED