@bailaya/react 1.0.2 → 1.0.4
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/README.md +163 -163
- package/package.json +35 -35
- package/dist/components/ClassSchedule.d.ts +0 -40
- package/dist/components/ClassSchedule.d.ts.map +0 -1
- package/dist/components/ClassSchedule.js +0 -64
- package/dist/components/ClassScheduleByType.d.ts +0 -42
- package/dist/components/ClassScheduleByType.d.ts.map +0 -1
- package/dist/components/ClassScheduleByType.js +0 -67
- package/dist/components/InstructorList.d.ts +0 -34
- package/dist/components/InstructorList.d.ts.map +0 -1
- package/dist/components/InstructorList.js +0 -38
- package/dist/components/StudioProfileCard.d.ts +0 -47
- package/dist/components/StudioProfileCard.d.ts.map +0 -1
- package/dist/components/StudioProfileCard.js +0 -58
- package/dist/components/UserProfileCard.d.ts +0 -47
- package/dist/components/UserProfileCard.d.ts.map +0 -1
- package/dist/components/UserProfileCard.js +0 -60
- package/dist/components/ui/LoadingIcon.d.ts +0 -3
- package/dist/components/ui/LoadingIcon.d.ts.map +0 -1
- package/dist/components/ui/LoadingIcon.js +0 -13
- package/dist/context/BailayaProvider.d.ts +0 -8
- package/dist/context/BailayaProvider.d.ts.map +0 -1
- package/dist/context/BailayaProvider.js +0 -51
- package/dist/hooks/useClasses.d.ts +0 -15
- package/dist/hooks/useClasses.d.ts.map +0 -1
- package/dist/hooks/useClasses.js +0 -25
- package/dist/hooks/useClassesByType.d.ts +0 -16
- package/dist/hooks/useClassesByType.d.ts.map +0 -1
- package/dist/hooks/useClassesByType.js +0 -28
- package/dist/hooks/useInstructors.d.ts +0 -15
- package/dist/hooks/useInstructors.d.ts.map +0 -1
- package/dist/hooks/useInstructors.js +0 -23
- package/dist/hooks/useStudioProfile.d.ts +0 -10
- package/dist/hooks/useStudioProfile.d.ts.map +0 -1
- package/dist/hooks/useStudioProfile.js +0 -18
- package/dist/hooks/useUserProfile.d.ts +0 -12
- package/dist/hooks/useUserProfile.d.ts.map +0 -1
- package/dist/hooks/useUserProfile.js +0 -20
- package/dist/index.d.ts +0 -29
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -56
- package/dist/types.d.ts +0 -9
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -2
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.InstructorList = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const useInstructors_1 = require("../hooks/useInstructors");
|
|
9
|
-
const LoadingIcon_1 = require("./ui/LoadingIcon");
|
|
10
|
-
/**
|
|
11
|
-
* Component to display a list of instructors for a studio.
|
|
12
|
-
*
|
|
13
|
-
* Fetches instructors via `useInstructors` and renders a list of
|
|
14
|
-
* "cards." You can override any part of the styling via props
|
|
15
|
-
* or completely replace the layout with `renderItem`.
|
|
16
|
-
*/
|
|
17
|
-
const InstructorList = ({ overrideId, className = 'mt-6 md:mt-12 space-y-8', itemClassName = 'flex flex-col md:flex-row items-center rounded-lg border border-[#DCDCDC] shadow-lg overflow-hidden', imageWrapperClassName = 'w-full p-4 pb-0 md:pb-4 md:w-1/3 aspect-square', imageClassName = 'w-full h-full rounded-xl object-cover', bodyClassName = 'p-6 flex-1 text-left', nameClassName = 'text-xl md:text-3xl font-geologica font-semibold text-[#2A2343]', bioClassName = 'mt-2 text-xs md:text-xl font-sourcesans font-semibold text-[#464646]', renderItem, }) => {
|
|
18
|
-
const { data: instructors, isLoading, error } = (0, useInstructors_1.useInstructors)(overrideId);
|
|
19
|
-
if (isLoading) {
|
|
20
|
-
return react_1.default.createElement("div", { className: className },
|
|
21
|
-
react_1.default.createElement(LoadingIcon_1.LoadingIcon, null));
|
|
22
|
-
}
|
|
23
|
-
if (error) {
|
|
24
|
-
return react_1.default.createElement("div", { className: className }, error.message);
|
|
25
|
-
}
|
|
26
|
-
return (react_1.default.createElement("div", { className: className }, instructors === null || instructors === void 0 ? void 0 : instructors.map((instr) => {
|
|
27
|
-
var _a;
|
|
28
|
-
return renderItem ? (renderItem(instr)) : (react_1.default.createElement("div", { key: instr.id, className: itemClassName },
|
|
29
|
-
instr.image && (react_1.default.createElement("div", { className: imageWrapperClassName },
|
|
30
|
-
react_1.default.createElement("img", { src: instr.image, alt: `${instr.name} ${(_a = instr.lastname) !== null && _a !== void 0 ? _a : ''}`.trim(), className: imageClassName }))),
|
|
31
|
-
react_1.default.createElement("div", { className: bodyClassName },
|
|
32
|
-
react_1.default.createElement("h3", { className: nameClassName },
|
|
33
|
-
instr.name,
|
|
34
|
-
instr.lastname ? ` ${instr.lastname}` : ''),
|
|
35
|
-
instr.bio && (react_1.default.createElement("p", { className: bioClassName }, Object.values(instr.bio)[0])))));
|
|
36
|
-
})));
|
|
37
|
-
};
|
|
38
|
-
exports.InstructorList = InstructorList;
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { StudioProfile } from '@bailaya/core';
|
|
3
|
-
export interface StudioProfileCardProps {
|
|
4
|
-
/** Optional studio ID to override the default configured ID */
|
|
5
|
-
overrideId?: string;
|
|
6
|
-
/** Locale code (e.g., "en", "es") for picking the description */
|
|
7
|
-
locale?: string;
|
|
8
|
-
/** Root container wrapper */
|
|
9
|
-
className?: string;
|
|
10
|
-
/** Wrapper for the entire "card" */
|
|
11
|
-
itemClassName?: string;
|
|
12
|
-
/** Optional image `<img>` wrapper */
|
|
13
|
-
imageWrapperClassName?: string;
|
|
14
|
-
/** The `<img>` element itself */
|
|
15
|
-
imageClassName?: string;
|
|
16
|
-
/** Container for the body (name, desc, labels) */
|
|
17
|
-
bodyClassName?: string;
|
|
18
|
-
/** Heading for the studio name */
|
|
19
|
-
nameClassName?: string;
|
|
20
|
-
/** Paragraph for the description */
|
|
21
|
-
descriptionClassName?: string;
|
|
22
|
-
/** Paragraph for labels (address, hours) */
|
|
23
|
-
labelClassName?: string;
|
|
24
|
-
/**
|
|
25
|
-
* Completely override the default render
|
|
26
|
-
*/
|
|
27
|
-
renderProfile?: (profile: StudioProfile) => React.ReactNode;
|
|
28
|
-
/**
|
|
29
|
-
* Custom text labels (for localization):
|
|
30
|
-
* - addressLabel
|
|
31
|
-
* - businessHoursLabel
|
|
32
|
-
*/
|
|
33
|
-
labels?: {
|
|
34
|
-
addressLabel?: string;
|
|
35
|
-
businessHoursLabel?: string;
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Displays a "card" summary of a studio:
|
|
40
|
-
* - logo
|
|
41
|
-
* - name
|
|
42
|
-
* - localized description
|
|
43
|
-
* - address/unit
|
|
44
|
-
* - business hours
|
|
45
|
-
*/
|
|
46
|
-
export declare const StudioProfileCard: React.FC<StudioProfileCardProps>;
|
|
47
|
-
//# sourceMappingURL=StudioProfileCard.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"StudioProfileCard.d.ts","sourceRoot":"","sources":["../../src/components/StudioProfileCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAGnD,MAAM,WAAW,sBAAsB;IACrC,+DAA+D;IAC/D,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iEAAiE;IACjE,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oCAAoC;IACpC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,qCAAqC;IACrC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,iCAAiC;IACjC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,kDAAkD;IAClD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,kCAAkC;IAClC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,oCAAoC;IACpC,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,4CAA4C;IAC5C,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,aAAa,CAAC,EAAE,CAAC,OAAO,EAAE,aAAa,KAAK,KAAK,CAAC,SAAS,CAAC;IAC5D;;;;OAIG;IACH,MAAM,CAAC,EAAE;QACP,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,kBAAkB,CAAC,EAAE,MAAM,CAAC;KAC7B,CAAC;CACH;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CA4E9D,CAAC"}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.StudioProfileCard = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const useStudioProfile_1 = require("../hooks/useStudioProfile");
|
|
9
|
-
const LoadingIcon_1 = require("./ui/LoadingIcon");
|
|
10
|
-
/**
|
|
11
|
-
* Displays a "card" summary of a studio:
|
|
12
|
-
* - logo
|
|
13
|
-
* - name
|
|
14
|
-
* - localized description
|
|
15
|
-
* - address/unit
|
|
16
|
-
* - business hours
|
|
17
|
-
*/
|
|
18
|
-
const StudioProfileCard = ({ overrideId, locale, className = 'mt-6 md:mt-12 space-y-8', itemClassName = 'flex flex-col md:flex-row items-center rounded-lg border border-[#DCDCDC] shadow-lg overflow-hidden', imageWrapperClassName = 'w-full p-4 pb-0 md:pb-4 md:w-1/3 aspect-square', imageClassName = 'w-full h-full rounded-xl object-cover', bodyClassName = 'p-6 flex-1 text-left', nameClassName = 'text-xl md:text-3xl font-geologica font-semibold text-[#2A2343]', descriptionClassName = 'mt-2 text-xs md:text-lg font-sourcesans text-[#464646]', labelClassName = 'mt-1 text-sm text-gray-600', renderProfile, labels = {}, }) => {
|
|
19
|
-
var _a, _b;
|
|
20
|
-
const { data: profile, isLoading, error } = (0, useStudioProfile_1.useStudioProfile)(overrideId);
|
|
21
|
-
if (isLoading) {
|
|
22
|
-
return react_1.default.createElement("div", { className: className },
|
|
23
|
-
react_1.default.createElement(LoadingIcon_1.LoadingIcon, null));
|
|
24
|
-
}
|
|
25
|
-
if (error) {
|
|
26
|
-
return react_1.default.createElement("div", { className: className }, error.message);
|
|
27
|
-
}
|
|
28
|
-
if (!profile) {
|
|
29
|
-
return null;
|
|
30
|
-
}
|
|
31
|
-
// pick the right description by locale, fallback to first
|
|
32
|
-
const descMap = profile.description || {};
|
|
33
|
-
const locales = Object.keys(descMap);
|
|
34
|
-
const desc = (locale && descMap[locale]) ||
|
|
35
|
-
descMap[locales[0]] ||
|
|
36
|
-
'';
|
|
37
|
-
if (renderProfile) {
|
|
38
|
-
return react_1.default.createElement(react_1.default.Fragment, null, renderProfile(profile));
|
|
39
|
-
}
|
|
40
|
-
const addrLabel = (_a = labels === null || labels === void 0 ? void 0 : labels.addressLabel) !== null && _a !== void 0 ? _a : '';
|
|
41
|
-
const bizLabel = (_b = labels === null || labels === void 0 ? void 0 : labels.businessHoursLabel) !== null && _b !== void 0 ? _b : (locale === 'es' ? 'Horario Comercial' : 'Business Hours');
|
|
42
|
-
return (react_1.default.createElement("div", { className: className },
|
|
43
|
-
react_1.default.createElement("div", { className: itemClassName },
|
|
44
|
-
profile.logo && (react_1.default.createElement("div", { className: imageWrapperClassName },
|
|
45
|
-
react_1.default.createElement("img", { src: profile.logo, alt: `${profile.name} logo`, className: imageClassName }))),
|
|
46
|
-
react_1.default.createElement("div", { className: bodyClassName },
|
|
47
|
-
react_1.default.createElement("h2", { className: nameClassName }, profile.name),
|
|
48
|
-
desc && (react_1.default.createElement("p", { className: descriptionClassName }, desc)),
|
|
49
|
-
profile.address && (react_1.default.createElement("p", { className: labelClassName },
|
|
50
|
-
addrLabel && `${addrLabel}: `,
|
|
51
|
-
profile.address,
|
|
52
|
-
profile.unit ? `, ${profile.unit}` : '')),
|
|
53
|
-
profile.businessHours && (react_1.default.createElement("p", { className: labelClassName },
|
|
54
|
-
bizLabel,
|
|
55
|
-
": ",
|
|
56
|
-
profile.businessHours))))));
|
|
57
|
-
};
|
|
58
|
-
exports.StudioProfileCard = StudioProfileCard;
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { UserProfile } from '@bailaya/core';
|
|
3
|
-
export interface UserProfileCardProps {
|
|
4
|
-
/** The user ID to fetch */
|
|
5
|
-
userId: string;
|
|
6
|
-
/** Locale code (e.g. "en", "es") for picking the bio */
|
|
7
|
-
locale?: string;
|
|
8
|
-
/** Root container wrapper */
|
|
9
|
-
className?: string;
|
|
10
|
-
/** Wrapper for the entire "card" */
|
|
11
|
-
itemClassName?: string;
|
|
12
|
-
/** Wrapper around the profile image */
|
|
13
|
-
imageWrapperClassName?: string;
|
|
14
|
-
/** The `<img>` element itself */
|
|
15
|
-
imageClassName?: string;
|
|
16
|
-
/** Container for the name + bio + labels */
|
|
17
|
-
bodyClassName?: string;
|
|
18
|
-
/** Heading for the user’s name */
|
|
19
|
-
nameClassName?: string;
|
|
20
|
-
/** Paragraph for the bio */
|
|
21
|
-
bioClassName?: string;
|
|
22
|
-
/** Label/value lines (occupation, experience) */
|
|
23
|
-
labelClassName?: string;
|
|
24
|
-
/**
|
|
25
|
-
* If provided, completely overrides the default card render.
|
|
26
|
-
*/
|
|
27
|
-
renderProfile?: (profile: UserProfile) => React.ReactNode;
|
|
28
|
-
/**
|
|
29
|
-
* Custom text labels (useful for localization):
|
|
30
|
-
* - occupationLabel
|
|
31
|
-
* - experienceLabel
|
|
32
|
-
*/
|
|
33
|
-
labels?: {
|
|
34
|
-
occupationLabel?: string;
|
|
35
|
-
experienceLabel?: string;
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Displays a single user's profile as a "card":
|
|
40
|
-
* - photo
|
|
41
|
-
* - full name
|
|
42
|
-
* - localized bio
|
|
43
|
-
* - occupation
|
|
44
|
-
* - years of experience
|
|
45
|
-
*/
|
|
46
|
-
export declare const UserProfileCard: React.FC<UserProfileCardProps>;
|
|
47
|
-
//# sourceMappingURL=UserProfileCard.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UserProfileCard.d.ts","sourceRoot":"","sources":["../../src/components/UserProfileCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAGjD,MAAM,WAAW,oBAAoB;IACnC,2BAA2B;IAC3B,MAAM,EAAE,MAAM,CAAC;IAEf,wDAAwD;IACxD,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,oCAAoC;IACpC,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB,uCAAuC;IACvC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B,iCAAiC;IACjC,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB,4CAA4C;IAC5C,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB,kCAAkC;IAClC,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB,4BAA4B;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,iDAAiD;IACjD,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;OAEG;IACH,aAAa,CAAC,EAAE,CAAC,OAAO,EAAE,WAAW,KAAK,KAAK,CAAC,SAAS,CAAC;IAE1D;;;;OAIG;IACH,MAAM,CAAC,EAAE;QACP,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,eAAe,CAAC,EAAE,MAAM,CAAC;KAC1B,CAAC;CACH;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA8E1D,CAAC"}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.UserProfileCard = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const useUserProfile_1 = require("../hooks/useUserProfile");
|
|
9
|
-
const LoadingIcon_1 = require("./ui/LoadingIcon");
|
|
10
|
-
/**
|
|
11
|
-
* Displays a single user's profile as a "card":
|
|
12
|
-
* - photo
|
|
13
|
-
* - full name
|
|
14
|
-
* - localized bio
|
|
15
|
-
* - occupation
|
|
16
|
-
* - years of experience
|
|
17
|
-
*/
|
|
18
|
-
const UserProfileCard = ({ userId, locale, className = 'mt-6 md:mt-12 space-y-8', itemClassName = 'flex flex-col md:flex-row items-center rounded-lg border border-[#DCDCDC] shadow-lg overflow-hidden', imageWrapperClassName = 'w-full p-4 pb-0 md:pb-4 md:w-1/3 aspect-square', imageClassName = 'w-full h-full rounded-xl object-cover', bodyClassName = 'p-6 flex-1 text-left', nameClassName = 'text-xl md:text-3xl font-geologica font-semibold text-[#2A2343]', bioClassName = 'mt-2 text-xs md:text-xl font-sourcesans font-semibold text-[#464646]', labelClassName = 'mt-1 text-sm text-gray-600', renderProfile, labels = {}, }) => {
|
|
19
|
-
var _a, _b;
|
|
20
|
-
const { data: profile, isLoading, error } = (0, useUserProfile_1.useUserProfile)(userId);
|
|
21
|
-
if (isLoading) {
|
|
22
|
-
return react_1.default.createElement("div", { className: className },
|
|
23
|
-
react_1.default.createElement(LoadingIcon_1.LoadingIcon, null));
|
|
24
|
-
}
|
|
25
|
-
if (error) {
|
|
26
|
-
return react_1.default.createElement("div", { className: className }, error.message);
|
|
27
|
-
}
|
|
28
|
-
if (!profile) {
|
|
29
|
-
return null;
|
|
30
|
-
}
|
|
31
|
-
// pick bio by locale, fallback to first
|
|
32
|
-
const bioMap = profile.bio || {};
|
|
33
|
-
const locales = Object.keys(bioMap);
|
|
34
|
-
const selectedBio = (locale && bioMap[locale]) ||
|
|
35
|
-
bioMap[locales[0]] ||
|
|
36
|
-
'';
|
|
37
|
-
if (renderProfile) {
|
|
38
|
-
return react_1.default.createElement(react_1.default.Fragment, null, renderProfile(profile));
|
|
39
|
-
}
|
|
40
|
-
const occLabel = (_a = labels === null || labels === void 0 ? void 0 : labels.occupationLabel) !== null && _a !== void 0 ? _a : (locale === 'es' ? 'Ocupación' : 'Occupation');
|
|
41
|
-
const expLabel = (_b = labels === null || labels === void 0 ? void 0 : labels.experienceLabel) !== null && _b !== void 0 ? _b : (locale === 'es' ? 'Años de experiencia' : 'Years of experience');
|
|
42
|
-
return (react_1.default.createElement("div", { className: className },
|
|
43
|
-
react_1.default.createElement("div", { className: itemClassName },
|
|
44
|
-
profile.image && (react_1.default.createElement("div", { className: imageWrapperClassName },
|
|
45
|
-
react_1.default.createElement("img", { src: profile.image, alt: `${profile.name}${profile.lastname ? ' ' + profile.lastname : ''}`, className: imageClassName }))),
|
|
46
|
-
react_1.default.createElement("div", { className: bodyClassName },
|
|
47
|
-
react_1.default.createElement("h3", { className: nameClassName },
|
|
48
|
-
profile.name,
|
|
49
|
-
profile.lastname ? ` ${profile.lastname}` : ''),
|
|
50
|
-
selectedBio && (react_1.default.createElement("p", { className: bioClassName }, selectedBio)),
|
|
51
|
-
profile.occupation && (react_1.default.createElement("p", { className: labelClassName },
|
|
52
|
-
occLabel,
|
|
53
|
-
": ",
|
|
54
|
-
profile.occupation)),
|
|
55
|
-
profile.yearsOfExperience != null && (react_1.default.createElement("p", { className: labelClassName },
|
|
56
|
-
expLabel,
|
|
57
|
-
": ",
|
|
58
|
-
profile.yearsOfExperience))))));
|
|
59
|
-
};
|
|
60
|
-
exports.UserProfileCard = UserProfileCard;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LoadingIcon.d.ts","sourceRoot":"","sources":["../../../src/components/ui/LoadingIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,WAAW,yBAMvB,CAAC"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.LoadingIcon = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const lucide_react_1 = require("lucide-react");
|
|
9
|
-
const LoadingIcon = () => {
|
|
10
|
-
return (react_1.default.createElement("div", { className: "flex items-center justify-center h-screen" },
|
|
11
|
-
react_1.default.createElement(lucide_react_1.Loader, { className: "animate-spin w-12 h-12 text-blue-500" })));
|
|
12
|
-
};
|
|
13
|
-
exports.LoadingIcon = LoadingIcon;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { BailayaClient, BailayaClientOptions } from '@bailaya/core';
|
|
3
|
-
export declare const BailayaProvider: React.FC<{
|
|
4
|
-
children: React.ReactNode;
|
|
5
|
-
config: BailayaClientOptions;
|
|
6
|
-
}>;
|
|
7
|
-
export declare const useBailayaClient: () => BailayaClient;
|
|
8
|
-
//# sourceMappingURL=BailayaProvider.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BailayaProvider.d.ts","sourceRoot":"","sources":["../../src/context/BailayaProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAIpE,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC;IACrC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,MAAM,EAAE,oBAAoB,CAAC;CAC9B,CAOA,CAAC;AAEF,eAAO,MAAM,gBAAgB,qBAI5B,CAAC"}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.useBailayaClient = exports.BailayaProvider = void 0;
|
|
37
|
-
const react_1 = __importStar(require("react"));
|
|
38
|
-
const core_1 = require("@bailaya/core");
|
|
39
|
-
const BailayaContext = (0, react_1.createContext)(null);
|
|
40
|
-
const BailayaProvider = ({ children, config }) => {
|
|
41
|
-
const client = new core_1.BailayaClient(config);
|
|
42
|
-
return (react_1.default.createElement(BailayaContext.Provider, { value: client }, children));
|
|
43
|
-
};
|
|
44
|
-
exports.BailayaProvider = BailayaProvider;
|
|
45
|
-
const useBailayaClient = () => {
|
|
46
|
-
const ctx = (0, react_1.useContext)(BailayaContext);
|
|
47
|
-
if (!ctx)
|
|
48
|
-
throw new Error('useBailayaClient must be used inside a BailayaProvider');
|
|
49
|
-
return ctx;
|
|
50
|
-
};
|
|
51
|
-
exports.useBailayaClient = useBailayaClient;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { StudioClass } from '@bailaya/core';
|
|
3
|
-
/**
|
|
4
|
-
* Hook to fetch upcoming classes for a studio within a 7-day window.
|
|
5
|
-
*
|
|
6
|
-
* Utilizes the Bailaya API client from context and caches results with React Query.
|
|
7
|
-
*
|
|
8
|
-
* @param from - Optional Date object to start the 7-day window; defaults to today.
|
|
9
|
-
* @param overrideId - Optional studio ID to override the default configured ID.
|
|
10
|
-
* @returns A React Query result with an array of `StudioClass` objects,
|
|
11
|
-
* or an error if the fetch fails.
|
|
12
|
-
* @throws If used outside of a `BailayaProvider`.
|
|
13
|
-
*/
|
|
14
|
-
export declare function useClasses(from?: Date, overrideId?: string): UseQueryResult<StudioClass[], Error>;
|
|
15
|
-
//# sourceMappingURL=useClasses.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useClasses.d.ts","sourceRoot":"","sources":["../../src/hooks/useClasses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAEjE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD;;;;;;;;;;GAUG;AACH,wBAAgB,UAAU,CACxB,IAAI,CAAC,EAAE,IAAI,EACX,UAAU,CAAC,EAAE,MAAM,GAClB,cAAc,CAAC,WAAW,EAAE,EAAE,KAAK,CAAC,CAUtC"}
|
package/dist/hooks/useClasses.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.useClasses = useClasses;
|
|
4
|
-
const react_query_1 = require("@tanstack/react-query");
|
|
5
|
-
const BailayaProvider_1 = require("../context/BailayaProvider");
|
|
6
|
-
/**
|
|
7
|
-
* Hook to fetch upcoming classes for a studio within a 7-day window.
|
|
8
|
-
*
|
|
9
|
-
* Utilizes the Bailaya API client from context and caches results with React Query.
|
|
10
|
-
*
|
|
11
|
-
* @param from - Optional Date object to start the 7-day window; defaults to today.
|
|
12
|
-
* @param overrideId - Optional studio ID to override the default configured ID.
|
|
13
|
-
* @returns A React Query result with an array of `StudioClass` objects,
|
|
14
|
-
* or an error if the fetch fails.
|
|
15
|
-
* @throws If used outside of a `BailayaProvider`.
|
|
16
|
-
*/
|
|
17
|
-
function useClasses(from, overrideId) {
|
|
18
|
-
const client = (0, BailayaProvider_1.useBailayaClient)();
|
|
19
|
-
// Convert `from` to YYYY-MM-DD for the query key
|
|
20
|
-
const fromKey = from ? from.toISOString().split('T')[0] : 'today';
|
|
21
|
-
return (0, react_query_1.useQuery)({
|
|
22
|
-
queryKey: ['classes', fromKey],
|
|
23
|
-
queryFn: () => client.getClasses(from),
|
|
24
|
-
});
|
|
25
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { StudioClass } from '@bailaya/core';
|
|
3
|
-
/**
|
|
4
|
-
* Hook to fetch upcoming classes of a specific dance type for a studio within a 7-day window.
|
|
5
|
-
*
|
|
6
|
-
* Utilizes the Bailaya API client from context and caches results with React Query.
|
|
7
|
-
*
|
|
8
|
-
* @param typeName - Name of the dance type to filter by (e.g., "Salsa").
|
|
9
|
-
* @param from - Optional start `Date` for the 7-day window; defaults to today.
|
|
10
|
-
* @param overrideId - Optional studio ID to override the default configured ID.
|
|
11
|
-
* @returns A React Query result with an array of `StudioClass` objects,
|
|
12
|
-
* or an error if the fetch fails.
|
|
13
|
-
* @throws If used outside of a `BailayaProvider` or if `typeName` is missing.
|
|
14
|
-
*/
|
|
15
|
-
export declare function useClassesByType(typeName: string, from?: Date, overrideId?: string): UseQueryResult<StudioClass[], Error>;
|
|
16
|
-
//# sourceMappingURL=useClassesByType.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useClassesByType.d.ts","sourceRoot":"","sources":["../../src/hooks/useClassesByType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAEjE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD;;;;;;;;;;;GAWG;AACH,wBAAgB,gBAAgB,CAC9B,QAAQ,EAAE,MAAM,EAChB,IAAI,CAAC,EAAE,IAAI,EACX,UAAU,CAAC,EAAE,MAAM,GAClB,cAAc,CAAC,WAAW,EAAE,EAAE,KAAK,CAAC,CAatC"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.useClassesByType = useClassesByType;
|
|
4
|
-
const react_query_1 = require("@tanstack/react-query");
|
|
5
|
-
const BailayaProvider_1 = require("../context/BailayaProvider");
|
|
6
|
-
/**
|
|
7
|
-
* Hook to fetch upcoming classes of a specific dance type for a studio within a 7-day window.
|
|
8
|
-
*
|
|
9
|
-
* Utilizes the Bailaya API client from context and caches results with React Query.
|
|
10
|
-
*
|
|
11
|
-
* @param typeName - Name of the dance type to filter by (e.g., "Salsa").
|
|
12
|
-
* @param from - Optional start `Date` for the 7-day window; defaults to today.
|
|
13
|
-
* @param overrideId - Optional studio ID to override the default configured ID.
|
|
14
|
-
* @returns A React Query result with an array of `StudioClass` objects,
|
|
15
|
-
* or an error if the fetch fails.
|
|
16
|
-
* @throws If used outside of a `BailayaProvider` or if `typeName` is missing.
|
|
17
|
-
*/
|
|
18
|
-
function useClassesByType(typeName, from, overrideId) {
|
|
19
|
-
const client = (0, BailayaProvider_1.useBailayaClient)();
|
|
20
|
-
if (!typeName) {
|
|
21
|
-
throw new Error('useClassesByType requires a typeName argument');
|
|
22
|
-
}
|
|
23
|
-
const fromKey = from ? from.toISOString().split('T')[0] : 'today';
|
|
24
|
-
return (0, react_query_1.useQuery)({
|
|
25
|
-
queryKey: ['classesByType', typeName, overrideId !== null && overrideId !== void 0 ? overrideId : 'default', fromKey],
|
|
26
|
-
queryFn: () => client.getClasses(from),
|
|
27
|
-
});
|
|
28
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { Instructor } from '@bailaya/core';
|
|
3
|
-
/**
|
|
4
|
-
* Hook to fetch the list of instructors for a studio.
|
|
5
|
-
*
|
|
6
|
-
* Utilizes the Bailaya API client from context to retrieve instructor data
|
|
7
|
-
* and caches results using React Query.
|
|
8
|
-
*
|
|
9
|
-
* @param overrideId - Optional studio ID to override the default configured ID.
|
|
10
|
-
* @returns A React Query result containing an array of `Instructor` objects,
|
|
11
|
-
* or an error if the fetch fails.
|
|
12
|
-
* @throws If used outside of a `BailayaProvider`.
|
|
13
|
-
*/
|
|
14
|
-
export declare function useInstructors(overrideId?: string): UseQueryResult<Instructor[], Error>;
|
|
15
|
-
//# sourceMappingURL=useInstructors.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useInstructors.d.ts","sourceRoot":"","sources":["../../src/hooks/useInstructors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAEjE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAEhD;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAC5B,UAAU,CAAC,EAAE,MAAM,GAClB,cAAc,CAAC,UAAU,EAAE,EAAE,KAAK,CAAC,CAOrC"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.useInstructors = useInstructors;
|
|
4
|
-
const react_query_1 = require("@tanstack/react-query");
|
|
5
|
-
const BailayaProvider_1 = require("../context/BailayaProvider");
|
|
6
|
-
/**
|
|
7
|
-
* Hook to fetch the list of instructors for a studio.
|
|
8
|
-
*
|
|
9
|
-
* Utilizes the Bailaya API client from context to retrieve instructor data
|
|
10
|
-
* and caches results using React Query.
|
|
11
|
-
*
|
|
12
|
-
* @param overrideId - Optional studio ID to override the default configured ID.
|
|
13
|
-
* @returns A React Query result containing an array of `Instructor` objects,
|
|
14
|
-
* or an error if the fetch fails.
|
|
15
|
-
* @throws If used outside of a `BailayaProvider`.
|
|
16
|
-
*/
|
|
17
|
-
function useInstructors(overrideId) {
|
|
18
|
-
const client = (0, BailayaProvider_1.useBailayaClient)();
|
|
19
|
-
return (0, react_query_1.useQuery)({
|
|
20
|
-
queryKey: ['instructors', overrideId !== null && overrideId !== void 0 ? overrideId : 'default'],
|
|
21
|
-
queryFn: () => client.getInstructors(overrideId),
|
|
22
|
-
});
|
|
23
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { StudioProfile } from '@bailaya/core';
|
|
3
|
-
/**
|
|
4
|
-
* Hook to fetch the studio profile.
|
|
5
|
-
*
|
|
6
|
-
* @param overrideId - Optional studio ID to override the default configured ID.
|
|
7
|
-
* @returns A React Query result with the `StudioProfile` object.
|
|
8
|
-
*/
|
|
9
|
-
export declare function useStudioProfile(overrideId?: string): UseQueryResult<StudioProfile, Error>;
|
|
10
|
-
//# sourceMappingURL=useStudioProfile.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useStudioProfile.d.ts","sourceRoot":"","sources":["../../src/hooks/useStudioProfile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAEjE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAEnD;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAC9B,UAAU,CAAC,EAAE,MAAM,GAClB,cAAc,CAAC,aAAa,EAAE,KAAK,CAAC,CAOtC"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.useStudioProfile = useStudioProfile;
|
|
4
|
-
const react_query_1 = require("@tanstack/react-query");
|
|
5
|
-
const BailayaProvider_1 = require("../context/BailayaProvider");
|
|
6
|
-
/**
|
|
7
|
-
* Hook to fetch the studio profile.
|
|
8
|
-
*
|
|
9
|
-
* @param overrideId - Optional studio ID to override the default configured ID.
|
|
10
|
-
* @returns A React Query result with the `StudioProfile` object.
|
|
11
|
-
*/
|
|
12
|
-
function useStudioProfile(overrideId) {
|
|
13
|
-
const client = (0, BailayaProvider_1.useBailayaClient)();
|
|
14
|
-
return (0, react_query_1.useQuery)({
|
|
15
|
-
queryKey: ['instructors', overrideId !== null && overrideId !== void 0 ? overrideId : 'default'],
|
|
16
|
-
queryFn: () => client.getStudioProfile(overrideId),
|
|
17
|
-
});
|
|
18
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { UserProfile } from '@bailaya/core';
|
|
3
|
-
/**
|
|
4
|
-
* Hook to fetch a user’s profile by their ID.
|
|
5
|
-
*
|
|
6
|
-
* Wraps the BailayaClient.getUserProfile call in React Query.
|
|
7
|
-
*
|
|
8
|
-
* @param userId - The ID of the user to fetch.
|
|
9
|
-
* @returns A React Query result containing a `UserProfile` or an error.
|
|
10
|
-
*/
|
|
11
|
-
export declare function useUserProfile(userId: string): UseQueryResult<UserProfile, Error>;
|
|
12
|
-
//# sourceMappingURL=useUserProfile.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useUserProfile.d.ts","sourceRoot":"","sources":["../../src/hooks/useUserProfile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAEjE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD;;;;;;;GAOG;AACH,wBAAgB,cAAc,CAC5B,MAAM,EAAE,MAAM,GACb,cAAc,CAAC,WAAW,EAAE,KAAK,CAAC,CAOpC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.useUserProfile = useUserProfile;
|
|
4
|
-
const react_query_1 = require("@tanstack/react-query");
|
|
5
|
-
const BailayaProvider_1 = require("../context/BailayaProvider");
|
|
6
|
-
/**
|
|
7
|
-
* Hook to fetch a user’s profile by their ID.
|
|
8
|
-
*
|
|
9
|
-
* Wraps the BailayaClient.getUserProfile call in React Query.
|
|
10
|
-
*
|
|
11
|
-
* @param userId - The ID of the user to fetch.
|
|
12
|
-
* @returns A React Query result containing a `UserProfile` or an error.
|
|
13
|
-
*/
|
|
14
|
-
function useUserProfile(userId) {
|
|
15
|
-
const client = (0, BailayaProvider_1.useBailayaClient)();
|
|
16
|
-
return (0, react_query_1.useQuery)({
|
|
17
|
-
queryKey: ['userProfile', userId],
|
|
18
|
-
queryFn: () => client.getUserProfile(userId),
|
|
19
|
-
});
|
|
20
|
-
}
|
package/dist/index.d.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Exports all components and hooks for interacting with the Bailaya API.
|
|
3
|
-
*
|
|
4
|
-
* @packageDocumentation
|
|
5
|
-
*/
|
|
6
|
-
/**
|
|
7
|
-
* Re-exported context and hooks for easy import
|
|
8
|
-
*/
|
|
9
|
-
export { BailayaProvider, useBailayaClient } from './context/BailayaProvider';
|
|
10
|
-
/**
|
|
11
|
-
* Data hooks
|
|
12
|
-
*/
|
|
13
|
-
export { useStudioProfile } from './hooks/useStudioProfile';
|
|
14
|
-
export { useInstructors } from './hooks/useInstructors';
|
|
15
|
-
export { useClasses } from './hooks/useClasses';
|
|
16
|
-
export { useClassesByType } from './hooks/useClassesByType';
|
|
17
|
-
/**
|
|
18
|
-
* React components
|
|
19
|
-
*/
|
|
20
|
-
export { ClassSchedule, ClassScheduleProps } from './components/ClassSchedule';
|
|
21
|
-
export { ClassScheduleByType, ClassScheduleByTypeProps } from './components/ClassScheduleByType';
|
|
22
|
-
export { InstructorList, InstructorListProps } from './components/InstructorList';
|
|
23
|
-
export { StudioProfileCard, StudioProfileCardProps } from './components/StudioProfileCard';
|
|
24
|
-
export { UserProfileCard, UserProfileCardProps } from './components/UserProfileCard';
|
|
25
|
-
/**
|
|
26
|
-
* Types re-exported for consumer convenience
|
|
27
|
-
*/
|
|
28
|
-
export * from './types';
|
|
29
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAE9E;;GAEG;AACH,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAE5D;;GAEG;AACH,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAC/E,OAAO,EAAE,mBAAmB,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjG,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAClF,OAAO,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC3F,OAAO,EAAE,eAAe,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAErF;;GAEG;AACH,cAAc,SAAS,CAAC"}
|