-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from 'react'; | ||
import { DefaultProps, MantineNumberSize, Selectors } from '@mantine/core'; | ||
export interface DemoMantineComponentStylesParams { | ||
radius?: MantineNumberSize; | ||
} | ||
declare const useStyles: (params: DemoMantineComponentStylesParams, options?: import("@mantine/core").UseStylesOptions<string>) => { | ||
classes: { | ||
root: string; | ||
}; | ||
cx: (...args: any) => string; | ||
theme: import("@mantine/core").MantineTheme; | ||
}; | ||
declare type DemoMantineComponentStylesNames = Selectors<typeof useStyles>; | ||
export interface DemoMantineComponentProps extends DefaultProps<DemoMantineComponentStylesNames, DemoMantineComponentStylesParams> { | ||
radius?: MantineNumberSize; | ||
} | ||
export declare const DemoMantineComponent: React.FC<DemoMantineComponentProps>; | ||
export {}; | ||
//# sourceMappingURL=DemoMantineComponent.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/// <reference types="react" /> | ||
declare const _default: { | ||
title: string; | ||
}; | ||
export default _default; | ||
export declare function WithClassNameRenaming(): JSX.Element; | ||
export declare function WithSXUsage(): JSX.Element; | ||
export declare function WithStylesUsage(): JSX.Element; | ||
//# sourceMappingURL=DemoMantineComponent.story.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
export interface PlayerLossesProps { | ||
losses: unknown; | ||
} | ||
export declare const PlayerLosses: React.FC<PlayerLossesProps>; | ||
//# sourceMappingURL=PlayerLosses.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/// <reference types="react" /> | ||
declare const _default: { | ||
title: string; | ||
}; | ||
export default _default; | ||
export declare function WithNoWin(): JSX.Element; | ||
export declare function WithAValidWinValue(): JSX.Element; | ||
export declare function WithNegative(): JSX.Element; | ||
export declare function WithUndefined(): JSX.Element; | ||
export declare function WithNull(): JSX.Element; | ||
//# sourceMappingURL=PlayerLosses.story.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
export interface PlayerRankProps { | ||
rank: unknown; | ||
} | ||
export declare const PlayerRank: React.FC<PlayerRankProps>; | ||
//# sourceMappingURL=PlayerRank.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/// <reference types="react" /> | ||
declare const _default: { | ||
title: string; | ||
}; | ||
export default _default; | ||
export declare function WithAValidRank(): JSX.Element; | ||
export declare function WithNegativeOne(): JSX.Element; | ||
export declare function WithUndefined(): JSX.Element; | ||
export declare function WithNull(): JSX.Element; | ||
//# sourceMappingURL=PlayerRank.story.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
export interface PlayerStreakProps { | ||
streak: unknown; | ||
} | ||
export declare const PlayerStreak: React.FC<PlayerStreakProps>; | ||
//# sourceMappingURL=PlayerStreak.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/// <reference types="react" /> | ||
declare const _default: { | ||
title: string; | ||
}; | ||
export default _default; | ||
export declare function WithNoStreak(): JSX.Element; | ||
export declare function WithPositiveStreak(): JSX.Element; | ||
export declare function WithNegativeStreak(): JSX.Element; | ||
export declare function WithUndefined(): JSX.Element; | ||
export declare function WithNull(): JSX.Element; | ||
//# sourceMappingURL=PlayerStreak.story.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import React from 'react'; | ||
export interface PlayerWinRatioProps { | ||
wins: unknown; | ||
losses: unknown; | ||
} | ||
export declare const PlayerWinRatio: React.FC<PlayerWinRatioProps>; | ||
//# sourceMappingURL=PlayerWinRatio.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/// <reference types="react" /> | ||
declare const _default: { | ||
title: string; | ||
}; | ||
export default _default; | ||
export declare function WithNoWinNoLoss(): JSX.Element; | ||
export declare function Usage(): JSX.Element; | ||
export declare function WithNegativeWins(): JSX.Element; | ||
export declare function WithNegativeLosses(): JSX.Element; | ||
export declare function WithUndefinedWins(): JSX.Element; | ||
export declare function WithUndefinedLosses(): JSX.Element; | ||
export declare function WithNullWins(): JSX.Element; | ||
export declare function WithNullLosses(): JSX.Element; | ||
//# sourceMappingURL=PlayerWinRatio.story.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
export interface PlayerWinsProps { | ||
wins: unknown; | ||
} | ||
export declare const PlayerWins: React.FC<PlayerWinsProps>; | ||
//# sourceMappingURL=PlayerWins.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/// <reference types="react" /> | ||
declare const _default: { | ||
title: string; | ||
}; | ||
export default _default; | ||
export declare function WithNoWin(): JSX.Element; | ||
export declare function WithAValidWinValue(): JSX.Element; | ||
export declare function WithNegative(): JSX.Element; | ||
export declare function WithUndefined(): JSX.Element; | ||
export declare function WithNull(): JSX.Element; | ||
//# sourceMappingURL=PlayerWins.story.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export { PlayerLosses } from "./PlayerLosses/PlayerLosses"; | ||
export { PlayerWins } from "./PlayerWins/PlayerWins"; | ||
export { PlayerWinRatio } from "./PlayerWinRatio/PlayerWinRatio"; | ||
export { PlayerRank } from "./PlayerRank/PlayerRank"; | ||
export { PlayerStreak } from "./PlayerStreak/PlayerStreak"; | ||
//# sourceMappingURL=index.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
export { TestComponent } from './TestComponent/TestComponent'; | ||
export type { TestComponentProps } from './TestComponent/TestComponent'; | ||
export { IconButton } from "./IconButton/IconButton"; | ||
export type { IconButtonProps } from "./IconButton/IconButton"; | ||
export { ColorSchemeToggle } from "./ColorSchemeToggle/ColorSchemeToggle"; | ||
export { IconButton } from './IconButton/IconButton'; | ||
export type { IconButtonProps } from './IconButton/IconButton'; | ||
export { ColorSchemeToggle } from './ColorSchemeToggle/ColorSchemeToggle'; | ||
export * from "./PlayerStats"; | ||
//# sourceMappingURL=index.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from 'react'; | ||
import { DefaultProps, MantineNumberSize, Selectors } from '@mantine/core'; | ||
export interface DemoMantineComponentStylesParams { | ||
radius?: MantineNumberSize; | ||
} | ||
declare const useStyles: (params: DemoMantineComponentStylesParams, options?: import("@mantine/core").UseStylesOptions<string>) => { | ||
classes: { | ||
root: string; | ||
}; | ||
cx: (...args: any) => string; | ||
theme: import("@mantine/core").MantineTheme; | ||
}; | ||
declare type DemoMantineComponentStylesNames = Selectors<typeof useStyles>; | ||
export interface DemoMantineComponentProps extends DefaultProps<DemoMantineComponentStylesNames, DemoMantineComponentStylesParams> { | ||
radius?: MantineNumberSize; | ||
} | ||
export declare const DemoMantineComponent: React.FC<DemoMantineComponentProps>; | ||
export {}; | ||
//# sourceMappingURL=DemoMantineComponent.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/// <reference types="react" /> | ||
declare const _default: { | ||
title: string; | ||
}; | ||
export default _default; | ||
export declare function WithClassNameRenaming(): JSX.Element; | ||
export declare function WithSXUsage(): JSX.Element; | ||
export declare function WithStylesUsage(): JSX.Element; | ||
//# sourceMappingURL=DemoMantineComponent.story.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
export interface PlayerLossesProps { | ||
losses: unknown; | ||
} | ||
export declare const PlayerLosses: React.FC<PlayerLossesProps>; | ||
//# sourceMappingURL=PlayerLosses.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.