@dreamboard-games/sdk 0.4.0-alpha.6 → 0.4.0-alpha.7
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/REFERENCE.md +408 -8
- package/dist/authoring/index.d.ts +5 -4
- package/dist/authoring/index.js +3 -3
- package/dist/authoring/index.js.map +1 -1
- package/dist/{chunk-PAPIAMYX.js → chunk-3QIZKXJ2.js} +6 -4
- package/dist/{chunk-PAPIAMYX.js.map → chunk-3QIZKXJ2.js.map} +1 -1
- package/dist/chunk-5IHU5CUK.js +575 -0
- package/dist/chunk-5IHU5CUK.js.map +1 -0
- package/dist/chunk-IU6KGPY7.js +659 -0
- package/dist/chunk-IU6KGPY7.js.map +1 -0
- package/dist/{chunk-HK3WN4U7.js → chunk-KYEWGZ2Y.js} +2 -2
- package/dist/{chunk-HK3WN4U7.js.map → chunk-KYEWGZ2Y.js.map} +1 -1
- package/dist/{chunk-DDST4U2P.js → chunk-NO537WSS.js} +2 -2
- package/dist/{chunk-SOBNI363.js → chunk-Q322XCY2.js} +11 -6
- package/dist/{chunk-SOBNI363.js.map → chunk-Q322XCY2.js.map} +1 -1
- package/dist/{chunk-OV6JC2BM.js → chunk-RKGJ64UN.js} +19 -15
- package/dist/chunk-RKGJ64UN.js.map +1 -0
- package/dist/chunk-VLG4YST5.js +564 -0
- package/dist/chunk-VLG4YST5.js.map +1 -0
- package/dist/{stale-contract-artifact-error-BelRiIDR.d.ts → diagnostics-1BWjRo6-.d.ts} +1 -18
- package/dist/index.js +2 -2
- package/dist/package-set.d.ts +2 -2
- package/dist/package-set.js +2 -2
- package/dist/reducer.d.ts +3 -2
- package/dist/reducer.js +5 -5
- package/dist/reducer.js.map +1 -1
- package/dist/reference-games/index.d.ts +223 -0
- package/dist/reference-games/index.js +230 -0
- package/dist/reference-games/index.js.map +1 -0
- package/dist/runtime/primitives.js +4 -3
- package/dist/runtime/workspace-contract.js +5 -4
- package/dist/runtime.js +15 -205
- package/dist/runtime.js.map +1 -1
- package/dist/stale-contract-artifact-error-C5AaZPJ8.d.ts +18 -0
- package/dist/testing-runtime.d.ts +42 -0
- package/dist/testing-runtime.js +153 -0
- package/dist/testing-runtime.js.map +1 -0
- package/dist/testing.d.ts +5 -191
- package/dist/testing.js +22 -640
- package/dist/testing.js.map +1 -1
- package/dist/types-DcADVHe9.d.ts +192 -0
- package/package.json +13 -2
- package/dist/chunk-OV6JC2BM.js.map +0 -1
- package/dist/chunk-UUQNOGZV.js +0 -1266
- package/dist/chunk-UUQNOGZV.js.map +0 -1
- /package/dist/{chunk-DDST4U2P.js.map → chunk-NO537WSS.js.map} +0 -0
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
import {
|
|
2
|
+
defaultRuntimeSnapshotEquality,
|
|
3
|
+
useArmedInteraction,
|
|
4
|
+
useAuthoredPluginGameplayFrameSelector,
|
|
5
|
+
useInteractionDraft,
|
|
6
|
+
useInteractionSubmitting,
|
|
7
|
+
useInteractionUiStore,
|
|
8
|
+
usePendingInteractionKey,
|
|
9
|
+
usePendingInteractionRevision,
|
|
10
|
+
usePluginGameplayFrameSelector,
|
|
11
|
+
usePluginSession,
|
|
12
|
+
usePluginSessionDescriptor,
|
|
13
|
+
useRuntimeContext
|
|
14
|
+
} from "./chunk-VLG4YST5.js";
|
|
1
15
|
import {
|
|
2
16
|
CardDragSurface,
|
|
3
17
|
CardDropTargetView,
|
|
@@ -24,20 +38,6 @@ import {
|
|
|
24
38
|
composeEventHandlers,
|
|
25
39
|
renderPrimitive
|
|
26
40
|
} from "./chunk-VDXOF4FW.js";
|
|
27
|
-
import {
|
|
28
|
-
defaultRuntimeSnapshotEquality,
|
|
29
|
-
useArmedInteraction,
|
|
30
|
-
useAuthoredPluginGameplayFrameSelector,
|
|
31
|
-
useInteractionDraft,
|
|
32
|
-
useInteractionSubmitting,
|
|
33
|
-
useInteractionUiStore,
|
|
34
|
-
usePendingInteractionKey,
|
|
35
|
-
usePendingInteractionRevision,
|
|
36
|
-
usePluginGameplayFrameSelector,
|
|
37
|
-
usePluginSession,
|
|
38
|
-
usePluginSessionDescriptor,
|
|
39
|
-
useRuntimeContext
|
|
40
|
-
} from "./chunk-UUQNOGZV.js";
|
|
41
41
|
import {
|
|
42
42
|
createGameplayActuatorAttributes,
|
|
43
43
|
createGameplayInteractionRootAttributes,
|
|
@@ -2994,6 +2994,8 @@ function UnambiguousBoardTarget({
|
|
|
2994
2994
|
type: "button",
|
|
2995
2995
|
...props,
|
|
2996
2996
|
...targetState.browserAttributes,
|
|
2997
|
+
role: "button",
|
|
2998
|
+
tabIndex: isDisabled ? -1 : 0,
|
|
2997
2999
|
children,
|
|
2998
3000
|
disabled: isDisabled,
|
|
2999
3001
|
"aria-disabled": isDisabled,
|
|
@@ -3053,6 +3055,8 @@ function ExplicitBoardTarget({
|
|
|
3053
3055
|
type: "button",
|
|
3054
3056
|
...props,
|
|
3055
3057
|
...browserAttributes,
|
|
3058
|
+
role: "button",
|
|
3059
|
+
tabIndex: isDisabled ? -1 : 0,
|
|
3056
3060
|
children,
|
|
3057
3061
|
disabled: isDisabled,
|
|
3058
3062
|
"aria-disabled": isDisabled,
|
|
@@ -5972,4 +5976,4 @@ export {
|
|
|
5972
5976
|
DiceValues,
|
|
5973
5977
|
Dice
|
|
5974
5978
|
};
|
|
5975
|
-
//# sourceMappingURL=chunk-
|
|
5979
|
+
//# sourceMappingURL=chunk-RKGJ64UN.js.map
|