@benev/tact 0.1.0-5 → 0.1.0
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/README.md +0 -12
- package/package.json +9 -9
- package/s/core/bindings/parts/defaults.ts +2 -2
- package/s/core/bindings/resolver.ts +24 -17
- package/s/core/core.test.ts +22 -0
- package/s/core/testing/testing.ts +2 -1
- package/x/core/bindings/parts/defaults.d.ts +1 -1
- package/x/core/bindings/parts/defaults.js +2 -2
- package/x/core/bindings/parts/defaults.js.map +1 -1
- package/x/core/bindings/resolver.js +20 -16
- package/x/core/bindings/resolver.js.map +1 -1
- package/x/core/core.test.d.ts +1 -0
- package/x/core/core.test.js +21 -0
- package/x/core/core.test.js.map +1 -1
- package/x/core/devices/infra/group.d.ts +1 -2
- package/x/core/devices/standard/keyboard.d.ts +1 -4
- package/x/core/devices/standard/pointer.d.ts +1 -4
- package/x/core/hub/port.d.ts +2 -3
- package/x/core/testing/testing.d.ts +5 -0
- package/x/core/testing/testing.js +1 -0
- package/x/core/testing/testing.js.map +1 -1
- package/x/deck/deck.d.ts +1 -4
- package/x/deck/parts/catalog.d.ts +1 -2
- package/x/deck/parts/db.d.ts +1 -4
- package/x/deck/parts/overlay-visibility.d.ts +1 -4
- package/x/demo/game/game.d.ts +1 -4
- package/x/demo/main.bundle.min.js +45 -45
- package/x/demo/main.bundle.min.js.map +4 -4
- package/x/demo/ui/theater/view.d.ts +1 -1
- package/x/index.html +20 -20
- package/x/nubs/stick/component.d.ts +1 -1
- package/x/nubs/vpad/component.d.ts +1 -1
|
@@ -2,7 +2,7 @@ import { Game } from "../../game/game.js";
|
|
|
2
2
|
declare const DemoTheater_base: import("@e280/sly").ComponentClass<{
|
|
3
3
|
new (): {
|
|
4
4
|
game: Game;
|
|
5
|
-
#private: any;
|
|
5
|
+
"__#private@#private": any;
|
|
6
6
|
readonly shadow: ShadowRoot;
|
|
7
7
|
createShadow(): ShadowRoot;
|
|
8
8
|
render(_use: import("@e280/sly").Use): import("@e280/sly").Content;
|
package/x/index.html
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<!doctype html>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8"/>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
|
6
|
+
<meta name="darkreader-lock"/>
|
|
7
|
+
<title>@benev/tact</title>
|
|
8
|
+
<style>
|
|
9
9
|
@layer vars, core, basics, page;
|
|
10
10
|
|
|
11
11
|
@layer vars {
|
|
@@ -91,25 +91,25 @@ body {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
</style>
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
<script type=module src="demo/main.bundle.min.js?v=2d29bb465eb6"></script>
|
|
95
|
+
<link rel="icon" href="assets/b.png?v=32b1d0126431"/>
|
|
96
96
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
97
|
+
<meta name="theme-color" content="#f2ea8e">
|
|
98
|
+
<meta property="og:type" content="website">
|
|
99
|
+
<meta property="og:site_name" content="tact.benevolent.games">
|
|
100
|
+
<meta property="og:title" content="@benev/tact">
|
|
101
|
+
<meta property="og:description" content="keybindings and gamepad support for web games">
|
|
102
|
+
<meta property="og:image" content="https://tact.benevolent.games/assets/b.png">
|
|
103
103
|
|
|
104
104
|
|
|
105
105
|
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
</head>
|
|
107
|
+
<body>
|
|
108
108
|
|
|
109
109
|
<header>
|
|
110
110
|
<h1>
|
|
111
111
|
<strong>@benev/tact</strong>
|
|
112
|
-
<small>v0.1.0
|
|
112
|
+
<small>v0.1.0</small>
|
|
113
113
|
</h1>
|
|
114
114
|
<div class=deets>
|
|
115
115
|
<p><em>"from keypress to couch co-op"</em></p>
|
|
@@ -132,5 +132,5 @@ body {
|
|
|
132
132
|
</ul>
|
|
133
133
|
</section>
|
|
134
134
|
|
|
135
|
-
|
|
136
|
-
|
|
135
|
+
</body>
|
|
136
|
+
</html>
|
|
@@ -2,7 +2,7 @@ import { StickDevice } from "../../core/devices/standard/stick.js";
|
|
|
2
2
|
declare const NubStick_base: import("@e280/sly").ComponentClass<{
|
|
3
3
|
new (): {
|
|
4
4
|
readonly device: StickDevice;
|
|
5
|
-
#private: any;
|
|
5
|
+
"__#private@#private": any;
|
|
6
6
|
readonly shadow: ShadowRoot;
|
|
7
7
|
createShadow(): ShadowRoot;
|
|
8
8
|
render(_use: import("@e280/sly").Use): import("@e280/sly").Content;
|
|
@@ -2,7 +2,7 @@ import { VpadDevice } from "../../core/devices/standard/vpad.js";
|
|
|
2
2
|
declare const NubVpad_base: import("@e280/sly").ComponentClass<{
|
|
3
3
|
new (): {
|
|
4
4
|
readonly device: VpadDevice;
|
|
5
|
-
#private: any;
|
|
5
|
+
"__#private@#private": any;
|
|
6
6
|
readonly shadow: ShadowRoot;
|
|
7
7
|
createShadow(): ShadowRoot;
|
|
8
8
|
render(_use: import("@e280/sly").Use): import("@e280/sly").Content;
|