@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.
- package/dist/index.d.ts +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
|
-
|
|
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
|
-
|
|
503
|
+
protected onConfirmHandler(): void;
|
|
504
504
|
}
|
|
505
505
|
|
|
506
506
|
type CoreNoticeProps = {
|