wacomm 1.46.1 → 1.48.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/dist/DuelVersus.d.ts +1 -0
- package/dist/GameScore.d.ts +10 -0
- package/dist/containers/Column.d.ts +3 -1
- package/dist/containers/Row.d.ts +3 -1
- package/dist/containers/index.d.ts +0 -1
- package/dist/html/ClickableDiv.d.ts +9 -0
- package/dist/html/H1.d.ts +1 -3
- package/dist/html/P.d.ts +1 -1
- package/dist/html/index.d.ts +1 -0
- package/dist/{index-XLx-6BNc.mjs → index-DKpHRmjp.mjs} +4982 -4963
- package/dist/{index-6qRcRv9P.js → index-fFUAaPq7.js} +53 -53
- package/dist/index.d.ts +7 -3
- package/dist/{mapbox-gl-B8SVXmQg.mjs → mapbox-gl-BIH-KLK6.mjs} +1 -1
- package/dist/{mapbox-gl-BZWnt6oA.js → mapbox-gl-CpjimSiM.js} +1 -1
- package/dist/static/StaticColumn.d.ts +3 -0
- package/dist/static/StaticRow.d.ts +3 -0
- package/dist/static/index.d.ts +3 -0
- package/dist/static/util.d.ts +4 -0
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.css +1 -1
- package/dist/wacomm.es.js +90 -86
- package/package.json +1 -1
- package/dist/containers/ClickableRow.d.ts +0 -7
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function DuelVersus(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
import { LeaderboardType } from 'wenum';
|
|
3
|
+
interface GameScoreProps {
|
|
4
|
+
score: number | string;
|
|
5
|
+
className?: string;
|
|
6
|
+
leaderboardType?: LeaderboardType;
|
|
7
|
+
onClick?: ZeroFuncType;
|
|
8
|
+
}
|
|
9
|
+
declare function GameScore({ score, className, leaderboardType, onClick }: GameScoreProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default GameScore;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
1
2
|
interface ColumnProps {
|
|
2
3
|
children: any;
|
|
3
4
|
className?: string;
|
|
5
|
+
onClick?: ZeroFuncType;
|
|
4
6
|
}
|
|
5
|
-
declare function Column({ children, className }: ColumnProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function Column({ children, className, onClick }: ColumnProps): import("react/jsx-runtime").JSX.Element;
|
|
6
8
|
export default Column;
|
package/dist/containers/Row.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
1
2
|
export interface RowProps {
|
|
2
3
|
children: any;
|
|
3
4
|
className?: string;
|
|
5
|
+
onClick?: ZeroFuncType;
|
|
4
6
|
}
|
|
5
|
-
declare function Row({ children, className }: RowProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function Row({ children, className, onClick }: RowProps): import("react/jsx-runtime").JSX.Element;
|
|
6
8
|
export default Row;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
export declare const divClassName = "appearance-none bg-transparent border-none p-0 m-0 text-left cursor-pointer focus:outline-none";
|
|
3
|
+
export interface ClickableDivProps {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
className?: string;
|
|
6
|
+
onClick?: ZeroFuncType;
|
|
7
|
+
}
|
|
8
|
+
declare function ClickableDiv({ children, className, onClick }: ClickableDivProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default ClickableDiv;
|
package/dist/html/H1.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import { ZeroFuncType } from 'waujs';
|
|
2
1
|
interface H1Props {
|
|
3
2
|
label: string;
|
|
4
3
|
className?: string;
|
|
5
|
-
onClick?: ZeroFuncType;
|
|
6
4
|
}
|
|
7
|
-
export default function H1({ label,
|
|
5
|
+
export default function H1({ label, className }: H1Props): import("react/jsx-runtime").JSX.Element;
|
|
8
6
|
export {};
|
package/dist/html/P.d.ts
CHANGED
package/dist/html/index.d.ts
CHANGED
|
@@ -5,5 +5,6 @@ export { default as P } from './P';
|
|
|
5
5
|
export { default as Textarea } from './Textarea';
|
|
6
6
|
export { default as Span } from './Span';
|
|
7
7
|
export { default as List } from './List';
|
|
8
|
+
export { default as ClickableDiv } from './ClickableDiv';
|
|
8
9
|
export * from './input';
|
|
9
10
|
export * from './form';
|