@tachybase/plugin-demos-game-runesweeper 0.23.18 → 0.23.20
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/client/RunesweeperBlockInitializer.d.ts +1 -2
- package/dist/client/RunesweeperSchemaToolbar.d.ts +1 -1
- package/dist/client/runesweeper/Runesweeper.d.ts +1 -2
- package/dist/client/runesweeper/components/aboutModal/AboutModal.d.ts +2 -2
- package/dist/client/runesweeper/components/header/Header.d.ts +1 -2
- package/dist/client/runesweeper/components/instaloseToast/InstaloseToast.d.ts +1 -2
- package/dist/client/runesweeper/components/mineCounter/MineCounter.d.ts +1 -2
- package/dist/client/runesweeper/components/recordModal/RecordModal.d.ts +2 -2
- package/dist/client/runesweeper/components/settingsModal/SettingsModal.d.ts +2 -2
- package/dist/client/runesweeper/components/tile/PregameTile.d.ts +1 -2
- package/dist/client/runesweeper/components/tile/Tile.d.ts +1 -2
- package/dist/client/runesweeper/components/timer/Timer.d.ts +1 -2
- package/dist/externalVersion.js +2 -2
- package/package.json +4 -4
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const RunesweeperBlockInitializer: () => React.JSX.Element;
|
|
1
|
+
export declare const RunesweeperBlockInitializer: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,4 +2,4 @@ import React from 'react';
|
|
|
2
2
|
import { SchemaToolbarProps } from '@tachybase/client';
|
|
3
3
|
export declare const RunesweeperSchemaToolbar: (props: React.JSX.IntrinsicAttributes & SchemaToolbarProps & {
|
|
4
4
|
children?: React.ReactNode;
|
|
5
|
-
}) =>
|
|
5
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare function Runesweeper(): React.JSX.Element;
|
|
1
|
+
export declare function Runesweeper(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export default function Header(): React.JSX.Element;
|
|
1
|
+
export default function Header(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export default function MineCounter(): React.JSX.Element;
|
|
1
|
+
export default function MineCounter(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { type Dispatch } from 'react';
|
|
2
2
|
export default function RecordModal({ shown, setShown, record, oldRecord, }: {
|
|
3
3
|
shown: boolean;
|
|
4
4
|
setShown: Dispatch<boolean>;
|
|
5
5
|
record: number | null;
|
|
6
6
|
oldRecord?: number | null;
|
|
7
|
-
}):
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { type Dispatch } from 'react';
|
|
2
2
|
export default function SettingsModal({ shown, setShown }: {
|
|
3
3
|
shown: boolean;
|
|
4
4
|
setShown: Dispatch<boolean>;
|
|
5
|
-
}):
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
type FlagStatus = 'flagged' | 'maybe' | 'unflagged';
|
|
3
2
|
export interface TileType {
|
|
4
3
|
isMine: boolean;
|
|
@@ -12,5 +11,5 @@ export interface TileType {
|
|
|
12
11
|
interface TileProps {
|
|
13
12
|
tile: TileType;
|
|
14
13
|
}
|
|
15
|
-
export default function Tile({ tile }: TileProps):
|
|
14
|
+
export default function Tile({ tile }: TileProps): import("react/jsx-runtime").JSX.Element;
|
|
16
15
|
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export default function Timer(): React.JSX.Element;
|
|
1
|
+
export default function Timer(): import("react/jsx-runtime").JSX.Element;
|
package/dist/externalVersion.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tachybase/plugin-demos-game-runesweeper",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.20",
|
|
4
4
|
"main": "dist/server/index.js",
|
|
5
5
|
"dependencies": {},
|
|
6
6
|
"devDependencies": {
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"react-swipeable": "^7.0.2"
|
|
10
10
|
},
|
|
11
11
|
"peerDependencies": {
|
|
12
|
-
"@tachybase/client": "0.23.
|
|
13
|
-
"@tachybase/
|
|
14
|
-
"@tachybase/
|
|
12
|
+
"@tachybase/client": "0.23.20",
|
|
13
|
+
"@tachybase/test": "0.23.20",
|
|
14
|
+
"@tachybase/server": "0.23.20"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tachybase-build --no-dts @tachybase/plugin-demos-game-runesweeper"
|