@shimotsuki/core 1.0.25 → 1.0.26

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 (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -492,7 +492,7 @@ type CoreReconnectionProps = {
492
492
  declare class CoreReconnection extends RootUILayer<CoreReconnectionProps> {
493
493
  common_prompt_text: Label;
494
494
  btn_confirm: Button;
495
- private is_close;
495
+ protected is_close: boolean;
496
496
  props: CoreReconnectionProps;
497
497
  protected initUI(): void;
498
498
  protected onLoad(): void;
@@ -500,7 +500,7 @@ declare class CoreReconnection extends RootUILayer<CoreReconnectionProps> {
500
500
  updateProps(props: ReconnectPrompt): void;
501
501
  /**更新提示文案 */
502
502
  protected updatePromptText(text: ReconnectPrompt, isAnim?: boolean): void;
503
- private onConfirmHandler;
503
+ protected onConfirmHandler(): void;
504
504
  }
505
505
 
506
506
  type CoreNoticeProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shimotsuki/core",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",