@federball/components 0.0.14 → 0.0.15

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"}
@@ -6,6 +6,8 @@ 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
+ export { AddButton, BackButton, ConfirmButton, ContinueButton, DeleteButton, DeleteIconButton, EditButton, EditIconButton, EventButton, GameButton, LocationIconButton, };
11
13
  //# 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;AAE1D,OAAO,EACN,SAAS,EACT,UAAU,EACV,aAAa,EACb,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,cAAc,EACd,WAAW,EACX,UAAU,EACV,kBAAkB,GAClB,CAAC"}
@@ -6,6 +6,8 @@ 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
+ export { AddButton, BackButton, ConfirmButton, ContinueButton, DeleteButton, DeleteIconButton, EditButton, EditIconButton, EventButton, GameButton, LocationIconButton, };
11
13
  //# 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;AAE1D,OAAO,EACN,SAAS,EACT,UAAU,EACV,aAAa,EACb,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,cAAc,EACd,WAAW,EACX,UAAU,EACV,kBAAkB,GAClB,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.15",
4
4
  "type": "module",
5
5
  "description": "Component library for federball.app",
6
6
  "source": "src/index.ts",