@federball/components 0.0.14 → 0.0.16

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.
@@ -0,0 +1,9 @@
1
+ type EventButtonProps = {
2
+ size?: "sm" | "md" | "lg";
3
+ title: string;
4
+ onPress: () => void;
5
+ isDisabled?: boolean;
6
+ };
7
+ export declare const EventButton: ({ size, title, onPress, isDisabled, }: EventButtonProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
9
+ //# sourceMappingURL=EventButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EventButton.d.ts","sourceRoot":"","sources":["../../src/buttons/EventButton.tsx"],"names":[],"mappings":"AAGA,KAAK,gBAAgB,GAAG;IACvB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,uCAKzB,gBAAgB,4CAalB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Button } from "@heroui/react";
3
+ import { EventIcon } from "../icons/EventIcon";
4
+ export const EventButton = ({ size = "md", title, onPress, isDisabled = false, }) => {
5
+ return (_jsxs(Button, { "aria-label": title, variant: "tertiary", size: size, onPress: onPress, isDisabled: isDisabled, children: [_jsx(EventIcon, {}), title] }));
6
+ };
7
+ //# sourceMappingURL=EventButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EventButton.js","sourceRoot":"","sources":["../../src/buttons/EventButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAS/C,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,EAC3B,IAAI,GAAG,IAAI,EACX,KAAK,EACL,OAAO,EACP,UAAU,GAAG,KAAK,GACA,EAAE,EAAE;IACtB,OAAO,CACN,MAAC,MAAM,kBACM,KAAK,EACjB,OAAO,EAAC,UAAU,EAClB,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,UAAU,aAEtB,KAAC,SAAS,KAAG,EACZ,KAAK,IACE,CACT,CAAC;AACH,CAAC,CAAC"}
@@ -0,0 +1,9 @@
1
+ type GameButtonProps = {
2
+ size?: "sm" | "md" | "lg";
3
+ title: string;
4
+ onPress: () => void;
5
+ isDisabled?: boolean;
6
+ };
7
+ export declare const GameButton: ({ size, title, onPress, isDisabled, }: GameButtonProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
9
+ //# sourceMappingURL=GameButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameButton.d.ts","sourceRoot":"","sources":["../../src/buttons/GameButton.tsx"],"names":[],"mappings":"AAGA,KAAK,eAAe,GAAG;IACtB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,uCAKxB,eAAe,4CAajB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Button } from "@heroui/react";
3
+ import { GameIcon } from "../icons/GameIcon";
4
+ export const GameButton = ({ size = "md", title, onPress, isDisabled = false, }) => {
5
+ return (_jsxs(Button, { "aria-label": title, variant: "tertiary", size: size, onPress: onPress, isDisabled: isDisabled, children: [_jsx(GameIcon, {}), title] }));
6
+ };
7
+ //# sourceMappingURL=GameButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameButton.js","sourceRoot":"","sources":["../../src/buttons/GameButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAS7C,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,EAC1B,IAAI,GAAG,IAAI,EACX,KAAK,EACL,OAAO,EACP,UAAU,GAAG,KAAK,GACD,EAAE,EAAE;IACrB,OAAO,CACN,MAAC,MAAM,kBACM,KAAK,EACjB,OAAO,EAAC,UAAU,EAClB,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,UAAU,aAEtB,KAAC,QAAQ,KAAG,EACX,KAAK,IACE,CACT,CAAC;AACH,CAAC,CAAC"}
@@ -0,0 +1,9 @@
1
+ type TournamentButtonProps = {
2
+ size?: "sm" | "md" | "lg";
3
+ title: string;
4
+ onPress: () => void;
5
+ isDisabled?: boolean;
6
+ };
7
+ export declare const TournamentButton: ({ size, title, onPress, isDisabled, }: TournamentButtonProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
9
+ //# sourceMappingURL=TournamentButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TournamentButton.d.ts","sourceRoot":"","sources":["../../src/buttons/TournamentButton.tsx"],"names":[],"mappings":"AAGA,KAAK,qBAAqB,GAAG;IAC5B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,uCAK9B,qBAAqB,4CAavB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Button } from "@heroui/react";
3
+ import { TournamentIcon } from "../icons/TournamentIcon";
4
+ export const TournamentButton = ({ size = "md", title, onPress, isDisabled = false, }) => {
5
+ return (_jsxs(Button, { "aria-label": title, variant: "tertiary", size: size, onPress: onPress, isDisabled: isDisabled, children: [_jsx(TournamentIcon, {}), title] }));
6
+ };
7
+ //# sourceMappingURL=TournamentButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TournamentButton.js","sourceRoot":"","sources":["../../src/buttons/TournamentButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AASzD,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,EAChC,IAAI,GAAG,IAAI,EACX,KAAK,EACL,OAAO,EACP,UAAU,GAAG,KAAK,GACK,EAAE,EAAE;IAC3B,OAAO,CACN,MAAC,MAAM,kBACM,KAAK,EACjB,OAAO,EAAC,UAAU,EAClB,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,UAAU,aAEtB,KAAC,cAAc,KAAG,EACjB,KAAK,IACE,CACT,CAAC;AACH,CAAC,CAAC"}
@@ -6,6 +6,9 @@ import { DeleteButton } from "./DeleteButton";
6
6
  import { DeleteIconButton } from "./DeleteIconButton";
7
7
  import { EditButton } from "./EditButton";
8
8
  import { EditIconButton } from "./EditIconButton";
9
+ import { EventButton } from "./EventButton";
10
+ import { GameButton } from "./GameButton";
9
11
  import { LocationIconButton } from "./LocationIconButton";
10
- export { AddButton, BackButton, ConfirmButton, ContinueButton, DeleteButton, DeleteIconButton, EditButton, EditIconButton, LocationIconButton, };
12
+ import { TournamentButton } from "./TournamentButton";
13
+ export { AddButton, BackButton, ConfirmButton, ContinueButton, DeleteButton, DeleteIconButton, EditButton, EditIconButton, EventButton, GameButton, LocationIconButton, TournamentButton, };
11
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/buttons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,EACN,SAAS,EACT,UAAU,EACV,aAAa,EACb,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,cAAc,EACd,kBAAkB,GAClB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/buttons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,OAAO,EACN,SAAS,EACT,UAAU,EACV,aAAa,EACb,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,cAAc,EACd,WAAW,EACX,UAAU,EACV,kBAAkB,EAClB,gBAAgB,GAChB,CAAC"}
@@ -6,6 +6,9 @@ import { DeleteButton } from "./DeleteButton";
6
6
  import { DeleteIconButton } from "./DeleteIconButton";
7
7
  import { EditButton } from "./EditButton";
8
8
  import { EditIconButton } from "./EditIconButton";
9
+ import { EventButton } from "./EventButton";
10
+ import { GameButton } from "./GameButton";
9
11
  import { LocationIconButton } from "./LocationIconButton";
10
- export { AddButton, BackButton, ConfirmButton, ContinueButton, DeleteButton, DeleteIconButton, EditButton, EditIconButton, LocationIconButton, };
12
+ import { TournamentButton } from "./TournamentButton";
13
+ export { AddButton, BackButton, ConfirmButton, ContinueButton, DeleteButton, DeleteIconButton, EditButton, EditIconButton, EventButton, GameButton, LocationIconButton, TournamentButton, };
11
14
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/buttons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,EACN,SAAS,EACT,UAAU,EACV,aAAa,EACb,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,cAAc,EACd,kBAAkB,GAClB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/buttons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,OAAO,EACN,SAAS,EACT,UAAU,EACV,aAAa,EACb,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,cAAc,EACd,WAAW,EACX,UAAU,EACV,kBAAkB,EAClB,gBAAgB,GAChB,CAAC"}
@@ -2,8 +2,8 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { Chip } from "@heroui/react";
3
3
  export const AvailableChip = ({ available }) => {
4
4
  if (available) {
5
- return (_jsx(Chip, { color: "success", variant: "soft", children: "Available" }));
5
+ return (_jsx(Chip, { color: "success", variant: "soft", size: "lg", children: "Available" }));
6
6
  }
7
- return (_jsx(Chip, { color: "warning", variant: "soft", children: "Unavailable" }));
7
+ return (_jsx(Chip, { color: "warning", variant: "soft", size: "lg", children: "Unavailable" }));
8
8
  };
9
9
  //# sourceMappingURL=AvailableChip.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"AvailableChip.js","sourceRoot":"","sources":["../../src/chips/AvailableChip.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAMrC,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,EAAE,SAAS,EAAsB,EAAE,EAAE;IAClE,IAAI,SAAS,EAAE,CAAC;QACf,OAAO,CACN,KAAC,IAAI,IAAC,KAAK,EAAC,SAAS,EAAC,OAAO,EAAC,MAAM,0BAE7B,CACP,CAAC;IACH,CAAC;IACD,OAAO,CACN,KAAC,IAAI,IAAC,KAAK,EAAC,SAAS,EAAC,OAAO,EAAC,MAAM,4BAE7B,CACP,CAAC;AACH,CAAC,CAAC"}
1
+ {"version":3,"file":"AvailableChip.js","sourceRoot":"","sources":["../../src/chips/AvailableChip.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAMrC,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,EAAE,SAAS,EAAsB,EAAE,EAAE;IAClE,IAAI,SAAS,EAAE,CAAC;QACf,OAAO,CACN,KAAC,IAAI,IAAC,KAAK,EAAC,SAAS,EAAC,OAAO,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,0BAEvC,CACP,CAAC;IACH,CAAC;IACD,OAAO,CACN,KAAC,IAAI,IAAC,KAAK,EAAC,SAAS,EAAC,OAAO,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,4BAEvC,CACP,CAAC;AACH,CAAC,CAAC"}
@@ -2,6 +2,6 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Chip } from "@heroui/react";
3
3
  import { LocationIcon } from "../icons/LocationIcon";
4
4
  export const LocationChip = ({ location }) => {
5
- return (_jsxs(Chip, { variant: "secondary", children: [_jsx(LocationIcon, { size: "sm" }), location.name] }));
5
+ return (_jsxs(Chip, { variant: "secondary", size: "lg", children: [_jsx(LocationIcon, { size: "sm" }), location.name] }));
6
6
  };
7
7
  //# sourceMappingURL=LocationChip.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"LocationChip.js","sourceRoot":"","sources":["../../src/chips/LocationChip.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAKrD,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,EAAE,QAAQ,EAAqB,EAAE,EAAE;IAC/D,OAAO,CACN,MAAC,IAAI,IAAC,OAAO,EAAC,WAAW,aACxB,KAAC,YAAY,IAAC,IAAI,EAAC,IAAI,GAAG,EACzB,QAAQ,CAAC,IAAI,IACR,CACP,CAAC;AACH,CAAC,CAAC"}
1
+ {"version":3,"file":"LocationChip.js","sourceRoot":"","sources":["../../src/chips/LocationChip.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAKrD,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,EAAE,QAAQ,EAAqB,EAAE,EAAE;IAC/D,OAAO,CACN,MAAC,IAAI,IAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,IAAI,aAClC,KAAC,YAAY,IAAC,IAAI,EAAC,IAAI,GAAG,EACzB,QAAQ,CAAC,IAAI,IACR,CACP,CAAC;AACH,CAAC,CAAC"}
@@ -0,0 +1,6 @@
1
+ type TournamentCodeChipProps = {
2
+ code: string;
3
+ };
4
+ export declare const TournamentCodeChip: ({ code }: TournamentCodeChipProps) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
6
+ //# sourceMappingURL=TournamentCodeChip.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TournamentCodeChip.d.ts","sourceRoot":"","sources":["../../src/chips/TournamentCodeChip.tsx"],"names":[],"mappings":"AAGA,KAAK,uBAAuB,GAAG;IAC9B,IAAI,EAAE,MAAM,CAAC;CACb,CAAC;AAEF,eAAO,MAAM,kBAAkB,GAAI,UAAU,uBAAuB,4CAOnE,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Chip } from "@heroui/react";
3
+ import { TagIcon } from "../icons/TagIcon";
4
+ export const TournamentCodeChip = ({ code }) => {
5
+ return (_jsxs(Chip, { size: "lg", children: [_jsx(TagIcon, { size: "sm" }), _jsx(Chip.Label, { children: code })] }));
6
+ };
7
+ //# sourceMappingURL=TournamentCodeChip.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TournamentCodeChip.js","sourceRoot":"","sources":["../../src/chips/TournamentCodeChip.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAM3C,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,EAAE,IAAI,EAA2B,EAAE,EAAE;IACvE,OAAO,CACN,MAAC,IAAI,IAAC,IAAI,EAAC,IAAI,aACd,KAAC,OAAO,IAAC,IAAI,EAAC,IAAI,GAAG,EACrB,KAAC,IAAI,CAAC,KAAK,cAAE,IAAI,GAAc,IACzB,CACP,CAAC;AACH,CAAC,CAAC"}
@@ -11,6 +11,7 @@ import { GameStatusChip } from "./GameStatusChip";
11
11
  import { LocationChip } from "./LocationChip";
12
12
  import { RankingPositionChip } from "./RankingPositionChip";
13
13
  import { TournamentChip } from "./TournamentChip";
14
+ import { TournamentCodeChip } from "./TournamentCodeChip";
14
15
  import { UserTypeChip } from "./UserTypeChip";
15
- export { AvailableChip, ClubChip, CourtChip, DateChip, DrawChip, DrawTypeChip, EventChip, EventTypeChip, GameStageChip, GameStatusChip, LocationChip, RankingPositionChip, TournamentChip, UserTypeChip, };
16
+ export { AvailableChip, ClubChip, CourtChip, DateChip, DrawChip, DrawTypeChip, EventChip, EventTypeChip, GameStageChip, GameStatusChip, LocationChip, RankingPositionChip, TournamentChip, TournamentCodeChip, UserTypeChip, };
16
17
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/chips/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,OAAO,EACN,aAAa,EACb,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,SAAS,EACT,aAAa,EACb,aAAa,EACb,cAAc,EACd,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,YAAY,GACZ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/chips/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,OAAO,EACN,aAAa,EACb,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,SAAS,EACT,aAAa,EACb,aAAa,EACb,cAAc,EACd,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,kBAAkB,EAClB,YAAY,GACZ,CAAC"}
@@ -11,6 +11,7 @@ import { GameStatusChip } from "./GameStatusChip";
11
11
  import { LocationChip } from "./LocationChip";
12
12
  import { RankingPositionChip } from "./RankingPositionChip";
13
13
  import { TournamentChip } from "./TournamentChip";
14
+ import { TournamentCodeChip } from "./TournamentCodeChip";
14
15
  import { UserTypeChip } from "./UserTypeChip";
15
- export { AvailableChip, ClubChip, CourtChip, DateChip, DrawChip, DrawTypeChip, EventChip, EventTypeChip, GameStageChip, GameStatusChip, LocationChip, RankingPositionChip, TournamentChip, UserTypeChip, };
16
+ export { AvailableChip, ClubChip, CourtChip, DateChip, DrawChip, DrawTypeChip, EventChip, EventTypeChip, GameStageChip, GameStatusChip, LocationChip, RankingPositionChip, TournamentChip, TournamentCodeChip, UserTypeChip, };
16
17
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/chips/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,OAAO,EACN,aAAa,EACb,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,SAAS,EACT,aAAa,EACb,aAAa,EACb,cAAc,EACd,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,YAAY,GACZ,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/chips/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,OAAO,EACN,aAAa,EACb,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,SAAS,EACT,aAAa,EACb,aAAa,EACb,cAAc,EACd,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,kBAAkB,EAClB,YAAY,GACZ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@federball/components",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "type": "module",
5
5
  "description": "Component library for federball.app",
6
6
  "source": "src/index.ts",