bard-legends-framework 1.4.1 → 1.4.3
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.mts +1 -5
- package/dist/index.d.ts +1 -5
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -450,6 +450,7 @@ interface MenuEntityOptions {
|
|
|
450
450
|
readonly closeOnBackgroundClick: boolean;
|
|
451
451
|
}
|
|
452
452
|
declare class MenuEntity extends SingletonEntity {
|
|
453
|
+
static subscribeIsOpen(): Sequence<boolean>;
|
|
453
454
|
constructor(partialOptions: Partial<MenuEntityOptions>);
|
|
454
455
|
onCreate(): SingleEvent;
|
|
455
456
|
onOpen(): SingleEvent;
|
|
@@ -791,19 +792,14 @@ declare class KeyboardService {
|
|
|
791
792
|
}
|
|
792
793
|
|
|
793
794
|
declare class MouseService {
|
|
794
|
-
readonly _initialMouseMovementHappened: Variable<boolean>;
|
|
795
795
|
readonly onInitialMouseMove: actions_lib.Notifier<boolean>;
|
|
796
796
|
get initialMouseMoveHappened(): boolean;
|
|
797
|
-
readonly _stagePosition: Variable<Vector>;
|
|
798
797
|
readonly stagePosition: actions_lib.Notifier<Vector>;
|
|
799
798
|
getStagePosition(): Vector;
|
|
800
|
-
readonly _screenPosition: Variable<Vector>;
|
|
801
799
|
readonly screenPosition: actions_lib.Notifier<Vector>;
|
|
802
800
|
getScreenPosition(): Vector;
|
|
803
|
-
readonly _mainButtonState: Variable<boolean>;
|
|
804
801
|
readonly mainButtonState: actions_lib.Notifier<boolean>;
|
|
805
802
|
getMainButtonState(): boolean;
|
|
806
|
-
readonly _secondaryButtonState: Variable<boolean>;
|
|
807
803
|
readonly secondaryButtonState: actions_lib.Notifier<boolean>;
|
|
808
804
|
getSecondaryButtonState(): boolean;
|
|
809
805
|
constructor();
|
package/dist/index.d.ts
CHANGED
|
@@ -450,6 +450,7 @@ interface MenuEntityOptions {
|
|
|
450
450
|
readonly closeOnBackgroundClick: boolean;
|
|
451
451
|
}
|
|
452
452
|
declare class MenuEntity extends SingletonEntity {
|
|
453
|
+
static subscribeIsOpen(): Sequence<boolean>;
|
|
453
454
|
constructor(partialOptions: Partial<MenuEntityOptions>);
|
|
454
455
|
onCreate(): SingleEvent;
|
|
455
456
|
onOpen(): SingleEvent;
|
|
@@ -791,19 +792,14 @@ declare class KeyboardService {
|
|
|
791
792
|
}
|
|
792
793
|
|
|
793
794
|
declare class MouseService {
|
|
794
|
-
readonly _initialMouseMovementHappened: Variable<boolean>;
|
|
795
795
|
readonly onInitialMouseMove: actions_lib.Notifier<boolean>;
|
|
796
796
|
get initialMouseMoveHappened(): boolean;
|
|
797
|
-
readonly _stagePosition: Variable<Vector>;
|
|
798
797
|
readonly stagePosition: actions_lib.Notifier<Vector>;
|
|
799
798
|
getStagePosition(): Vector;
|
|
800
|
-
readonly _screenPosition: Variable<Vector>;
|
|
801
799
|
readonly screenPosition: actions_lib.Notifier<Vector>;
|
|
802
800
|
getScreenPosition(): Vector;
|
|
803
|
-
readonly _mainButtonState: Variable<boolean>;
|
|
804
801
|
readonly mainButtonState: actions_lib.Notifier<boolean>;
|
|
805
802
|
getMainButtonState(): boolean;
|
|
806
|
-
readonly _secondaryButtonState: Variable<boolean>;
|
|
807
803
|
readonly secondaryButtonState: actions_lib.Notifier<boolean>;
|
|
808
804
|
getSecondaryButtonState(): boolean;
|
|
809
805
|
constructor();
|