@netless/window-manager 0.4.0-canary.18 → 0.4.0-canary.21
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/.idea/inspectionProfiles/Project_Default.xml +7 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/window-manager.iml +12 -0
- package/dist/Cursor/index.d.ts +0 -1
- package/dist/View/MainView.d.ts +1 -1
- package/dist/index.es.js +5 -5
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/AppManager.ts +1 -0
- package/src/AppProxy.ts +2 -0
- package/src/Cursor/index.ts +7 -5
- package/src/View/MainView.ts +7 -1
@@ -0,0 +1,7 @@
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
2
|
+
<profile version="1.0">
|
3
|
+
<option name="myName" value="Project Default" />
|
4
|
+
<inspection_tool class="ES6UnusedImports" enabled="false" level="WARNING" enabled_by_default="false" />
|
5
|
+
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
6
|
+
</profile>
|
7
|
+
</component>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/window-manager.iml" filepath="$PROJECT_DIR$/.idea/window-manager.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
package/.idea/vcs.xml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="WEB_MODULE" version="4">
|
3
|
+
<component name="NewModuleRootManager">
|
4
|
+
<content url="file://$MODULE_DIR$">
|
5
|
+
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
8
|
+
</content>
|
9
|
+
<orderEntry type="inheritedJdk" />
|
10
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
11
|
+
</component>
|
12
|
+
</module>
|
package/dist/Cursor/index.d.ts
CHANGED
@@ -23,7 +23,6 @@ export declare class CursorManager {
|
|
23
23
|
constructor(manager: AppManager);
|
24
24
|
setupWrapper(wrapper: HTMLElement): void;
|
25
25
|
setMainViewDivElement(div: HTMLDivElement): void;
|
26
|
-
private getUids;
|
27
26
|
get boxState(): any;
|
28
27
|
get focusView(): View | undefined;
|
29
28
|
private mouseMoveListener;
|
package/dist/View/MainView.d.ts
CHANGED
@@ -6,7 +6,6 @@ export declare class MainViewProxy {
|
|
6
6
|
private started;
|
7
7
|
private mainViewIsAddListener;
|
8
8
|
private mainView;
|
9
|
-
private viewId;
|
10
9
|
private store;
|
11
10
|
private sideEffectManager;
|
12
11
|
constructor(manager: AppManager);
|
@@ -26,6 +25,7 @@ export declare class MainViewProxy {
|
|
26
25
|
scale: number;
|
27
26
|
};
|
28
27
|
createMainView(): View;
|
28
|
+
onReconnect(): void;
|
29
29
|
private onCameraUpdatedByDevice;
|
30
30
|
addMainViewListener(): void;
|
31
31
|
removeMainViewListener(): void;
|