@coldsurf/ocean-road 1.13.2
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/css/global.css +30 -0
- package/dist/index.d.ts +641 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +733 -0
- package/dist/index.js.map +1 -0
- package/dist/native.cjs +94 -0
- package/dist/native.cjs.map +1 -0
- package/dist/native.d.cts +304 -0
- package/dist/native.d.cts.map +1 -0
- package/dist/native.d.ts +304 -0
- package/dist/native.d.ts.map +1 -0
- package/dist/native.js +94 -0
- package/dist/native.js.map +1 -0
- package/dist/next.cjs +949 -0
- package/dist/next.cjs.map +1 -0
- package/dist/next.d.cts +270 -0
- package/dist/next.d.cts.map +1 -0
- package/dist/next.d.ts +270 -0
- package/dist/next.d.ts.map +1 -0
- package/dist/next.js +949 -0
- package/dist/next.js.map +1 -0
- package/native/index.d.ts +7 -0
- package/next/index.d.ts +7 -0
- package/package.json +126 -0
- package/src/GlobalStyle.tsx +111 -0
- package/src/base/badge/badge.tsx +50 -0
- package/src/base/badge/index.ts +1 -0
- package/src/base/button/button.styled.tsx +123 -0
- package/src/base/button/button.tsx +60 -0
- package/src/base/button/button.types.ts +20 -0
- package/src/base/button/button.utils.ts +36 -0
- package/src/base/button/index.tsx +2 -0
- package/src/base/checkbox/checkbox.styled.ts +52 -0
- package/src/base/checkbox/checkbox.tsx +26 -0
- package/src/base/checkbox/index.ts +1 -0
- package/src/base/icon-button/icon-button.styled.ts +8 -0
- package/src/base/icon-button/icon-button.tsx +15 -0
- package/src/base/icon-button/icon-button.types.ts +3 -0
- package/src/base/icon-button/index.ts +2 -0
- package/src/base/index.ts +11 -0
- package/src/base/label/index.ts +1 -0
- package/src/base/label/label.styled.ts +7 -0
- package/src/base/label/label.tsx +27 -0
- package/src/base/modal/index.ts +1 -0
- package/src/base/modal/modal.tsx +59 -0
- package/src/base/spinner/index.ts +2 -0
- package/src/base/spinner/spinner.styled.ts +25 -0
- package/src/base/spinner/spinner.tsx +36 -0
- package/src/base/spinner/spinner.types.ts +1 -0
- package/src/base/switch/index.ts +1 -0
- package/src/base/switch/switch.styled.tsx +49 -0
- package/src/base/switch/switch.tsx +29 -0
- package/src/base/text/index.ts +1 -0
- package/src/base/text/text.styled.ts +17 -0
- package/src/base/text/text.tsx +37 -0
- package/src/base/text-area/index.ts +2 -0
- package/src/base/text-area/text-area.styled.ts +16 -0
- package/src/base/text-area/text-area.tsx +29 -0
- package/src/base/text-area/text-area.types.ts +11 -0
- package/src/base/text-input/index.ts +2 -0
- package/src/base/text-input/text-input.styled.ts +40 -0
- package/src/base/text-input/text-input.tsx +59 -0
- package/src/base/text-input/text-input.types.ts +15 -0
- package/src/base/toast/index.ts +2 -0
- package/src/base/toast/toast.tsx +60 -0
- package/src/base/toast/toast.types.ts +5 -0
- package/src/constants.ts +1 -0
- package/src/contexts/ColorSchemeProvider.tsx +154 -0
- package/src/css/global.css +30 -0
- package/src/extensions/accordion/accordion.hooks.ts +11 -0
- package/src/extensions/accordion/accordion.tsx +80 -0
- package/src/extensions/accordion/index.ts +1 -0
- package/src/extensions/app-header/app-header.hooks.ts +94 -0
- package/src/extensions/app-header/app-header.tsx +31 -0
- package/src/extensions/app-header/app-header.types.ts +1 -0
- package/src/extensions/app-header/index.ts +8 -0
- package/src/extensions/app-logo/app-logo.tsx +40 -0
- package/src/extensions/app-logo/index.ts +1 -0
- package/src/extensions/app-store-button/app-store-button.tsx +64 -0
- package/src/extensions/app-store-button/index.ts +1 -0
- package/src/extensions/brand-icon/brand-icon.android.tsx +11 -0
- package/src/extensions/brand-icon/brand-icon.apple.tsx +11 -0
- package/src/extensions/brand-icon/brand-icon.google.tsx +11 -0
- package/src/extensions/brand-icon/brand-icon.tsx +22 -0
- package/src/extensions/brand-icon/index.ts +1 -0
- package/src/extensions/color-scheme-toggle/color-scheme-toggle.tsx +76 -0
- package/src/extensions/color-scheme-toggle/index.ts +1 -0
- package/src/extensions/dropdown/dropdown.menu-item.tsx +237 -0
- package/src/extensions/dropdown/dropdown.result-item.tsx +26 -0
- package/src/extensions/dropdown/dropdown.styled.tsx +48 -0
- package/src/extensions/dropdown/dropdown.trigger.tsx +72 -0
- package/src/extensions/dropdown/dropdown.tsx +222 -0
- package/src/extensions/dropdown/dropdown.types.ts +3 -0
- package/src/extensions/dropdown/dropdown.utils.ts +40 -0
- package/src/extensions/dropdown/index.ts +14 -0
- package/src/extensions/error-ui/index.ts +7 -0
- package/src/extensions/error-ui/network-error/index.ts +1 -0
- package/src/extensions/error-ui/network-error/network-error.styled.ts +16 -0
- package/src/extensions/error-ui/network-error/network-error.tsx +14 -0
- package/src/extensions/error-ui/unknown-error/index.ts +1 -0
- package/src/extensions/error-ui/unknown-error/unknown-error.styled.ts +16 -0
- package/src/extensions/error-ui/unknown-error/unknown-error.tsx +14 -0
- package/src/extensions/full-screen-modal/full-screen-modal.tsx +52 -0
- package/src/extensions/full-screen-modal/index.ts +1 -0
- package/src/extensions/grid-card-image/grid-card-image.tsx +11 -0
- package/src/extensions/grid-card-image/index.ts +1 -0
- package/src/extensions/grid-card-image-empty/grid-card-image-empty.tsx +11 -0
- package/src/extensions/grid-card-image-empty/index.ts +1 -0
- package/src/extensions/grid-card-item/grid-card-item.masonry.styled.tsx +95 -0
- package/src/extensions/grid-card-item/grid-card-item.masonry.tsx +63 -0
- package/src/extensions/grid-card-item/grid-card-item.styled.tsx +93 -0
- package/src/extensions/grid-card-item/grid-card-item.subscribe-btn-layout.tsx +30 -0
- package/src/extensions/grid-card-item/grid-card-item.tsx +81 -0
- package/src/extensions/grid-card-item/index.ts +2 -0
- package/src/extensions/grid-card-list/grid-card-list.masonry.styled.tsx +45 -0
- package/src/extensions/grid-card-list/grid-card-list.masonry.tsx +58 -0
- package/src/extensions/grid-card-list/grid-card-list.styled.tsx +40 -0
- package/src/extensions/grid-card-list/grid-card-list.tsx +59 -0
- package/src/extensions/grid-card-list/index.ts +2 -0
- package/src/extensions/grid-card-list-empty/grid-card-list-empty.tsx +38 -0
- package/src/extensions/grid-card-list-empty/index.ts +1 -0
- package/src/extensions/grid-card-list-load-more/grid-card-list-load-more.styled.tsx +15 -0
- package/src/extensions/grid-card-list-load-more/grid-card-list-load-more.tsx +43 -0
- package/src/extensions/grid-card-list-load-more/index.ts +1 -0
- package/src/extensions/index.ts +38 -0
- package/src/extensions/menu-item/index.ts +1 -0
- package/src/extensions/menu-item/menu-item.tsx +87 -0
- package/src/extensions/sns-icon/index.ts +1 -0
- package/src/extensions/sns-icon/sns-icon.facebook.tsx +11 -0
- package/src/extensions/sns-icon/sns-icon.instagram.tsx +11 -0
- package/src/extensions/sns-icon/sns-icon.tsx +24 -0
- package/src/extensions/sns-icon/sns-icon.x.tsx +11 -0
- package/src/extensions/sns-icon/sns-icon.youtube.tsx +11 -0
- package/src/index.ts +8 -0
- package/src/native/button/button.styled.tsx +99 -0
- package/src/native/button/button.tsx +42 -0
- package/src/native/button/index.ts +1 -0
- package/src/native/contexts/color-scheme-context/color-scheme-context.tsx +45 -0
- package/src/native/contexts/color-scheme-context/index.ts +1 -0
- package/src/native/contexts/index.ts +1 -0
- package/src/native/icon-button/icon-button.styled.ts +6 -0
- package/src/native/icon-button/icon-button.tsx +33 -0
- package/src/native/icon-button/icon-button.types.ts +14 -0
- package/src/native/icon-button/icon-button.utils.ts +114 -0
- package/src/native/icon-button/index.ts +1 -0
- package/src/native/index.ts +9 -0
- package/src/native/modal/index.ts +2 -0
- package/src/native/modal/modal.styled.ts +17 -0
- package/src/native/modal/modal.tsx +21 -0
- package/src/native/modal/modal.types.ts +8 -0
- package/src/native/profile-thumbnail/index.ts +1 -0
- package/src/native/profile-thumbnail/profile-thumbnail.tsx +91 -0
- package/src/native/spinner/index.ts +1 -0
- package/src/native/spinner/spinner.tsx +75 -0
- package/src/native/text/index.ts +2 -0
- package/src/native/text/text.tsx +51 -0
- package/src/native/text/text.types.ts +5 -0
- package/src/native/text-input/index.ts +2 -0
- package/src/native/text-input/text-input.tsx +72 -0
- package/src/native/text-input/text-input.types.ts +3 -0
- package/src/native/toast/index.ts +2 -0
- package/src/native/toast/toast.styled.ts +40 -0
- package/src/native/toast/toast.tsx +23 -0
- package/src/native/toast/toast.types.ts +10 -0
- package/src/next/app-footer/app-footer.tsx +250 -0
- package/src/next/app-footer/index.ts +1 -0
- package/src/next/app-header/app-header.fixed-header.tsx +83 -0
- package/src/next/app-header/app-header.full-screen-mobile-accordion-drawer.tsx +131 -0
- package/src/next/app-header/app-header.logo.tsx +50 -0
- package/src/next/app-header/app-header.modal-mobile-accordion-drawer.tsx +69 -0
- package/src/next/app-header/app-header.styled.ts +160 -0
- package/src/next/app-header/app-header.tsx +91 -0
- package/src/next/app-header/index.ts +13 -0
- package/src/next/global-link/global-link.store.ts +41 -0
- package/src/next/global-link/global-link.tsx +52 -0
- package/src/next/global-link/global-link.utils.ts +9 -0
- package/src/next/global-link/index.ts +3 -0
- package/src/next/grid-card-item/grid-card-item.masonry.tsx +23 -0
- package/src/next/grid-card-item/grid-card-item.tsx +23 -0
- package/src/next/grid-card-item/index.ts +2 -0
- package/src/next/index.ts +16 -0
- package/src/next/new-tab-link/index.ts +1 -0
- package/src/next/new-tab-link/new-tab-link.tsx +15 -0
- package/src/next/route-loading/index.ts +1 -0
- package/src/next/route-loading/route-loading.tsx +21 -0
- package/src/tokens/index.ts +2 -0
- package/src/tokens/tokens.ts +8 -0
- package/src/tokens/tokens.types.ts +7 -0
- package/src/utils/breakpoints.ts +9 -0
- package/src/utils/common-styles.ts +23 -0
- package/src/utils/index.ts +2 -0
- package/src/utils/media.ts +23 -0
- package/src/utils/use-prevent-scroll-effect.ts +19 -0
- package/src/utils/with-id.ts +3 -0
- package/src/utils/with-stop-propagation.ts +10 -0
package/dist/next.d.cts
ADDED
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
import * as react59 from "react";
|
|
2
|
+
import * as react60 from "react";
|
|
3
|
+
import * as react62 from "react";
|
|
4
|
+
import * as react61 from "react";
|
|
5
|
+
import * as react21 from "react";
|
|
6
|
+
import * as react0 from "react";
|
|
7
|
+
import { AnchorHTMLAttributes, DependencyList, MouseEventHandler, PropsWithChildren, ReactNode } from "react";
|
|
8
|
+
import * as _emotion_react0 from "@emotion/react";
|
|
9
|
+
import * as _emotion_styled0 from "@emotion/styled";
|
|
10
|
+
import { LinkProps } from "next/link";
|
|
11
|
+
|
|
12
|
+
//#region src/utils/with-id.d.ts
|
|
13
|
+
type WithId<T> = {
|
|
14
|
+
id: string;
|
|
15
|
+
} & T;
|
|
16
|
+
//# sourceMappingURL=with-id.d.ts.map
|
|
17
|
+
//#endregion
|
|
18
|
+
//#region src/extensions/grid-card-item/grid-card-item.d.ts
|
|
19
|
+
type GridCardListItemProps = WithId<{
|
|
20
|
+
thumbnailUrl: string;
|
|
21
|
+
titleText: string;
|
|
22
|
+
subText: string;
|
|
23
|
+
bottomText?: string;
|
|
24
|
+
isSubscribed?: boolean;
|
|
25
|
+
rightBottomSlot?: {
|
|
26
|
+
type: 'subscribe';
|
|
27
|
+
subscribeEventBtn: ReactNode;
|
|
28
|
+
};
|
|
29
|
+
renderThumbnail?: (url: string) => ReactNode;
|
|
30
|
+
href?: string;
|
|
31
|
+
onClick?: MouseEventHandler<HTMLDivElement | HTMLAnchorElement>;
|
|
32
|
+
}>;
|
|
33
|
+
//#endregion
|
|
34
|
+
//#region src/extensions/app-header/app-header.types.d.ts
|
|
35
|
+
type AnimatedHeaderAnimation = 'show' | 'hide';
|
|
36
|
+
//# sourceMappingURL=app-header.types.d.ts.map
|
|
37
|
+
//#endregion
|
|
38
|
+
//#region src/extensions/app-header/app-header.d.ts
|
|
39
|
+
type AnimatedHeaderProps = PropsWithChildren<{
|
|
40
|
+
animation: AnimatedHeaderAnimation;
|
|
41
|
+
className?: string;
|
|
42
|
+
zIndex?: number;
|
|
43
|
+
}>;
|
|
44
|
+
//#endregion
|
|
45
|
+
//#region src/extensions/app-header/app-header.hooks.d.ts
|
|
46
|
+
declare function useHeaderScrollAnimation(): {
|
|
47
|
+
headerAnimation: AnimatedHeaderAnimation;
|
|
48
|
+
};
|
|
49
|
+
declare function useIsMobileMenuOpen(): {
|
|
50
|
+
isMobileMenuOpen: boolean;
|
|
51
|
+
openMobileMenu: () => void;
|
|
52
|
+
closeMobileMenu: () => void;
|
|
53
|
+
};
|
|
54
|
+
//#endregion
|
|
55
|
+
//#region src/extensions/accordion/accordion.d.ts
|
|
56
|
+
type AccordionProps<ItemT> = {
|
|
57
|
+
data: ItemT[];
|
|
58
|
+
renderTrigger: (item: ItemT) => ReactNode;
|
|
59
|
+
renderExpanded: ({
|
|
60
|
+
selectedItem
|
|
61
|
+
}: {
|
|
62
|
+
selectedItem: ItemT;
|
|
63
|
+
}) => ReactNode;
|
|
64
|
+
customized?: ReactNode;
|
|
65
|
+
};
|
|
66
|
+
//#endregion
|
|
67
|
+
//#region src/next/global-link/global-link.d.ts
|
|
68
|
+
declare function GlobalLink({
|
|
69
|
+
children,
|
|
70
|
+
href,
|
|
71
|
+
onClick,
|
|
72
|
+
target,
|
|
73
|
+
...otherProps
|
|
74
|
+
}: PropsWithChildren<LinkProps & AnchorHTMLAttributes<HTMLAnchorElement>>): react59.JSX.Element;
|
|
75
|
+
//# sourceMappingURL=global-link.d.ts.map
|
|
76
|
+
//#endregion
|
|
77
|
+
//#region src/next/global-link/global-link.store.d.ts
|
|
78
|
+
declare function useLinkStore(): {
|
|
79
|
+
isLoading: boolean;
|
|
80
|
+
setIsLoading: (isLoading: boolean) => void;
|
|
81
|
+
};
|
|
82
|
+
//# sourceMappingURL=global-link.store.d.ts.map
|
|
83
|
+
//#endregion
|
|
84
|
+
//#region src/next/global-link/global-link.utils.d.ts
|
|
85
|
+
declare function initializeGlobalLinkRedirectMap(map: Record<string, string>): void;
|
|
86
|
+
//#endregion
|
|
87
|
+
//#region src/next/route-loading/route-loading.d.ts
|
|
88
|
+
declare function RouteLoading({
|
|
89
|
+
children,
|
|
90
|
+
deps
|
|
91
|
+
}: PropsWithChildren<{
|
|
92
|
+
deps?: DependencyList;
|
|
93
|
+
}>): react60.JSX.Element;
|
|
94
|
+
//# sourceMappingURL=route-loading.d.ts.map
|
|
95
|
+
//#endregion
|
|
96
|
+
//#region src/next/new-tab-link/new-tab-link.d.ts
|
|
97
|
+
declare const NewTabLink: react62.MemoExoticComponent<({
|
|
98
|
+
children,
|
|
99
|
+
...linkProps
|
|
100
|
+
}: PropsWithChildren<Omit<LinkProps, "target" | "rel">>) => react62.JSX.Element>;
|
|
101
|
+
//# sourceMappingURL=new-tab-link.d.ts.map
|
|
102
|
+
//#endregion
|
|
103
|
+
//#region src/next/app-footer/app-footer.d.ts
|
|
104
|
+
declare function AppFooter({
|
|
105
|
+
appStoreUrl,
|
|
106
|
+
playStoreUrl,
|
|
107
|
+
instagramUrl,
|
|
108
|
+
xUrl
|
|
109
|
+
}: {
|
|
110
|
+
appStoreUrl: string;
|
|
111
|
+
playStoreUrl: string;
|
|
112
|
+
instagramUrl: string;
|
|
113
|
+
xUrl: string;
|
|
114
|
+
}): react61.JSX.Element;
|
|
115
|
+
//# sourceMappingURL=app-footer.d.ts.map
|
|
116
|
+
//#endregion
|
|
117
|
+
//#region src/next/app-header/index.d.ts
|
|
118
|
+
declare const AppHeader: {
|
|
119
|
+
FloatingHeader: react21.MemoExoticComponent<({
|
|
120
|
+
serviceName,
|
|
121
|
+
HeaderMenuItemComponent,
|
|
122
|
+
ColorSchemeToggleComponent,
|
|
123
|
+
onClickOpenMobileDrawer,
|
|
124
|
+
className,
|
|
125
|
+
zIndex
|
|
126
|
+
}: {
|
|
127
|
+
serviceName: string;
|
|
128
|
+
HeaderMenuItemComponent: react21.ReactNode;
|
|
129
|
+
ColorSchemeToggleComponent: react21.ReactNode;
|
|
130
|
+
onClickOpenMobileDrawer?: (params: {
|
|
131
|
+
isMobileMenuOpen: boolean;
|
|
132
|
+
}) => void;
|
|
133
|
+
className?: string;
|
|
134
|
+
zIndex?: AnimatedHeaderProps["zIndex"];
|
|
135
|
+
}) => react21.JSX.Element>;
|
|
136
|
+
FixedHeader: react21.MemoExoticComponent<({
|
|
137
|
+
zIndex,
|
|
138
|
+
onClickOpenDrawer,
|
|
139
|
+
mobileLeftAccessory,
|
|
140
|
+
HeaderMenuItemComponent,
|
|
141
|
+
logoRightAccessory,
|
|
142
|
+
headerHeight
|
|
143
|
+
}: {
|
|
144
|
+
zIndex?: number;
|
|
145
|
+
onClickOpenDrawer?: () => void;
|
|
146
|
+
mobileLeftAccessory?: react21.ReactNode;
|
|
147
|
+
HeaderMenuItemComponent: react21.ReactNode;
|
|
148
|
+
logoRightAccessory?: react21.ReactNode;
|
|
149
|
+
headerHeight?: string;
|
|
150
|
+
}) => react21.JSX.Element>;
|
|
151
|
+
FullScreenMobileAccordionDrawer: {
|
|
152
|
+
<ItemT extends {
|
|
153
|
+
accordionKey: string;
|
|
154
|
+
}>(props: ({
|
|
155
|
+
standalone: true;
|
|
156
|
+
isOpen: boolean;
|
|
157
|
+
zIndex?: number;
|
|
158
|
+
} & {
|
|
159
|
+
onClickClose?: (params: {
|
|
160
|
+
isOpen: boolean;
|
|
161
|
+
}) => void;
|
|
162
|
+
ColorSchemeToggleComponent: react21.ReactNode;
|
|
163
|
+
} & AccordionProps<ItemT>) | ({
|
|
164
|
+
standalone: false;
|
|
165
|
+
} & {
|
|
166
|
+
onClickClose?: (params: {
|
|
167
|
+
isOpen: boolean;
|
|
168
|
+
}) => void;
|
|
169
|
+
ColorSchemeToggleComponent: react21.ReactNode;
|
|
170
|
+
} & AccordionProps<ItemT>)): react21.JSX.Element;
|
|
171
|
+
displayName: string;
|
|
172
|
+
};
|
|
173
|
+
ModalMobileAccordionDrawer: {
|
|
174
|
+
<ItemT extends {
|
|
175
|
+
accordionKey: string;
|
|
176
|
+
}>({
|
|
177
|
+
isOpen,
|
|
178
|
+
onClose,
|
|
179
|
+
bottomAccessory,
|
|
180
|
+
...accordionProps
|
|
181
|
+
}: {
|
|
182
|
+
isOpen: boolean;
|
|
183
|
+
onClose: () => void;
|
|
184
|
+
bottomAccessory?: react21.ReactNode;
|
|
185
|
+
} & AccordionProps<ItemT>): react21.JSX.Element;
|
|
186
|
+
displayName: string;
|
|
187
|
+
};
|
|
188
|
+
useHeaderScrollAnimation: typeof useHeaderScrollAnimation;
|
|
189
|
+
useIsMobileMenuOpen: typeof useIsMobileMenuOpen;
|
|
190
|
+
AnimatedHeader: react21.MemoExoticComponent<({
|
|
191
|
+
animation,
|
|
192
|
+
children,
|
|
193
|
+
className,
|
|
194
|
+
zIndex
|
|
195
|
+
}: AnimatedHeaderProps) => react21.JSX.Element>;
|
|
196
|
+
};
|
|
197
|
+
//# sourceMappingURL=index.d.ts.map
|
|
198
|
+
//#endregion
|
|
199
|
+
//#region src/next/index.d.ts
|
|
200
|
+
declare const GridCardList: {
|
|
201
|
+
Item: react0.MemoExoticComponent<({
|
|
202
|
+
href,
|
|
203
|
+
onClick,
|
|
204
|
+
...gridCardListItemProps
|
|
205
|
+
}: GridCardListItemProps) => react0.JSX.Element>;
|
|
206
|
+
MasonryItem: react0.MemoExoticComponent<({
|
|
207
|
+
href,
|
|
208
|
+
onClick,
|
|
209
|
+
...gridCardListItemProps
|
|
210
|
+
}: GridCardListItemProps) => react0.JSX.Element>;
|
|
211
|
+
List: react0.MemoExoticComponent<({
|
|
212
|
+
items,
|
|
213
|
+
renderItem,
|
|
214
|
+
onLoadMore,
|
|
215
|
+
headerText,
|
|
216
|
+
hasNextPage,
|
|
217
|
+
isEmpty,
|
|
218
|
+
emptyComponent,
|
|
219
|
+
navigationComponent
|
|
220
|
+
}: {
|
|
221
|
+
items: GridCardListItemProps[];
|
|
222
|
+
renderItem: (item: GridCardListItemProps) => react0.ReactNode;
|
|
223
|
+
onLoadMore: () => void;
|
|
224
|
+
headerText?: string;
|
|
225
|
+
hasNextPage?: boolean;
|
|
226
|
+
isEmpty?: boolean;
|
|
227
|
+
emptyComponent?: react0.ReactNode;
|
|
228
|
+
navigationComponent?: react0.ReactNode;
|
|
229
|
+
}) => react0.JSX.Element>;
|
|
230
|
+
MasonryList: react0.MemoExoticComponent<({
|
|
231
|
+
items,
|
|
232
|
+
renderItem,
|
|
233
|
+
onLoadMore,
|
|
234
|
+
headerText,
|
|
235
|
+
hasNextPage,
|
|
236
|
+
isEmpty,
|
|
237
|
+
emptyComponent,
|
|
238
|
+
navigationComponent
|
|
239
|
+
}: {
|
|
240
|
+
items: GridCardListItemProps[];
|
|
241
|
+
renderItem: (item: GridCardListItemProps) => react0.ReactNode;
|
|
242
|
+
onLoadMore: () => void;
|
|
243
|
+
headerText?: string;
|
|
244
|
+
hasNextPage?: boolean;
|
|
245
|
+
isEmpty?: boolean;
|
|
246
|
+
emptyComponent?: react0.ReactNode;
|
|
247
|
+
navigationComponent?: react0.ReactNode;
|
|
248
|
+
}) => react0.JSX.Element>;
|
|
249
|
+
LoadMore: react0.MemoExoticComponent<({
|
|
250
|
+
onLoadMore
|
|
251
|
+
}: {
|
|
252
|
+
onLoadMore: () => void;
|
|
253
|
+
}) => react0.JSX.Element>;
|
|
254
|
+
Empty: react0.MemoExoticComponent<({
|
|
255
|
+
text
|
|
256
|
+
}: {
|
|
257
|
+
text: string;
|
|
258
|
+
}) => react0.JSX.Element>;
|
|
259
|
+
ImageEmpty: _emotion_styled0.StyledComponent<{
|
|
260
|
+
theme?: _emotion_react0.Theme;
|
|
261
|
+
as?: React.ElementType;
|
|
262
|
+
}, react0.DetailedHTMLProps<react0.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
263
|
+
Image: _emotion_styled0.StyledComponent<{
|
|
264
|
+
theme?: _emotion_react0.Theme;
|
|
265
|
+
as?: React.ElementType;
|
|
266
|
+
}, react0.DetailedHTMLProps<react0.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
267
|
+
};
|
|
268
|
+
//#endregion
|
|
269
|
+
export { AppFooter, AppHeader, GlobalLink, GridCardList, NewTabLink, RouteLoading, initializeGlobalLinkRedirectMap, useLinkStore };
|
|
270
|
+
//# sourceMappingURL=next.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"next.d.cts","names":[],"sources":["../src/utils/with-id.ts","../src/extensions/grid-card-item/grid-card-item.tsx","../src/extensions/app-header/app-header.types.ts","../src/extensions/app-header/app-header.tsx","../src/extensions/app-header/app-header.hooks.ts","../src/extensions/accordion/accordion.tsx","../src/next/global-link/global-link.tsx","../src/next/global-link/global-link.store.ts","../src/next/global-link/global-link.utils.ts","../src/next/route-loading/route-loading.tsx","../src/next/new-tab-link/new-tab-link.tsx","../src/next/app-footer/app-footer.tsx","../src/next/app-header/index.ts","../src/next/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;;KAAY;;IAER;;;;KCcQ,qBAAA,GAAwB;;;;;;;;uBAQb;;EDxBX,eAAM,CAAA,EAAA,CAAA,GAEb,EAAA,MAAA,EAAA,GCwBgC,SDxBhC;;YC0BO,kBAAkB,iBAAiB;;;;KC5BnC,uBAAA;;;;KCcA,mBAAA,GAAsB;aACrB;;;;;;iBCXG,wBAAA,CAAA;mBAAwB;;iBA2ExB,mBAAA,CAAA;EJ/EJ,gBAAM,EAAA,OAEb;;;;;;KKqCO;QACJ;wBACgB,UAAU;;;;kBACmB;QAAY;eAClD;;;;iBC5BC,UAAA;;;;;;GAMb,kBAAkB,YAAY,qBAAqB,sBAAmB,OAAA,CAAA,GAAA,CAAA;;;;iBCQzD,YAAA,CAAA;;;;;;;iBC3BA,+BAAA,MAAqC;;;iBCIrC,YAAA;;;GAAiC;SAA2B;KAAiB,OAAA,CAAA,GAAA,CAAA;;;;cCFhF,YACsE,OAAA,CAD5D;;;GACQ,kBAAkB,KAAK,kCAA6B,OAAA,CAAA,GAAA,CAAA;;;;iBCwLnE,SAAA;;;;;;;;;;IAUf,OAAA,CAAA,GAAA,CAAA;;;;cCjMY;;;;;;;;;;;;;;;;;;;;;;;;;EXUoB;IDhBrB,MAAM,CAAA,EAAA,MAAA;;kCYaq+B;6BAAA,OAAA,CAAA;IXG3+B,kBAAA,CAAA,UWHujC,SXGliC;IAAA,YAAA,CAAA,EAAA,MAAA;EAAA,CAAA,EAQV,GWX4iC,OAAA,CAAA,GAAA,CAAA,OXW5iC,CAAA;EAAS,+BAEK,EAAA;IAEP,CAAA,cAAA;MAAiB,YAAA,EAAA,MAAA;IAAnC,CAAA,CAAA,CAAA,KAAA,EAAA,CAAA;MAZwB,UAAA,EAAA,IAAA;MAAM,MAAA,EAAA,OAAA;;;;QChB9B,MAAA,EAAA,OAAuB;;;;MCcvB,UAAA,EAAA,KAAmB;IAAA,CAAA,GAAA;MAClB,YAAA,CAAA,EAAA,CAAA,MAAA,EAAA;QADqB,MAAA,EAAA,OAAA;MAAiB,CAAA,EAAA,GAAA,IAAA;;;;ECVnC,CAAA;EA2EA,0BAAmB,EAAA;;;;;;;;ICtCX;MAFZ,MAAA,EAAA,OAAc;MAAA,OAAA,EAAA,GAAA,GAAA,IAAA;MAClB,eAAA,CAAA,mBAAA;IACgB,CAAA,iBAAA,MAAA,CAAA,CAAA,qBAAA;IAAU,WAAA,EAAA,MAAA;EAAS,CAAA;EACV,wBAAoB,EAAA,+BAAA;EAAK,mBAAO,EAAA,0BAAA;EAAS,cAC3D,6BAAA,CAAA,CAAA;IAAA,SAAA;IAAA,QAAA;IAAA,SAAA;IAAA;EAAA,CAAA,qBAAA,EAAA,sBAAA,CAAA;AAAS,CAAA;;;;cQtCX;;;;;;;;;;;;;;;;;;;;EbLD;;;;;;;;;EAAA,CAAA,EAAA,qBAEP,CAAA;;;;;;;;;;EC0B2D;;;IAZpD,UAAA,EAAA,GAAA,GAAA,IAAqB;IAAA,UAAA,CAAA,EAAA,MAAA;IAQV,WAAA,CAAA,EAAA,OAAA;IAEc,OAAA,CAAA,EAAA,OAAA;IAEP,cAAA,CAAA,kBAAA;IAAiB,mBAAA,CAAA,kBAAA;EAAiB,CAAA,EAApD,qBAAA,CAAA;EAAiB,QAZO,4BAAA,CAAA,CAAA;IAAA;GAAA,EAAA;IAAM,UAAA,EAAA,GAAA,GAAA,IAAA;;;;EChB9B;;EAAA,CAAA,EAAA,qBAAuB,CAAA;;;;ECcvB,CAAA,0BAAmB,sBAAA,eAAA,CAAA,gBAAA,CAAA,EAAA,CAAA,CAAA,CAAA;EAAA,KAAA,kCAAA,CAAA;IAClB,KAAA,CAAA,uBAAA;IADqB,EAAA,CAAA,mBAAA;EAAiB,CAAA,0BAAA,yBAAA,iBAAA,CAAA,kBAAA,CAAA,EAAA,CAAA,CAAA,CAAA"}
|
package/dist/next.d.ts
ADDED
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
import * as _emotion_styled0 from "@emotion/styled";
|
|
2
|
+
import * as react84 from "react";
|
|
3
|
+
import * as react61 from "react";
|
|
4
|
+
import * as react59 from "react";
|
|
5
|
+
import * as react62 from "react";
|
|
6
|
+
import * as react21 from "react";
|
|
7
|
+
import * as react0 from "react";
|
|
8
|
+
import { AnchorHTMLAttributes, DependencyList, MouseEventHandler, PropsWithChildren, ReactNode } from "react";
|
|
9
|
+
import * as _emotion_react0 from "@emotion/react";
|
|
10
|
+
import { LinkProps } from "next/link";
|
|
11
|
+
|
|
12
|
+
//#region src/utils/with-id.d.ts
|
|
13
|
+
type WithId<T> = {
|
|
14
|
+
id: string;
|
|
15
|
+
} & T;
|
|
16
|
+
//# sourceMappingURL=with-id.d.ts.map
|
|
17
|
+
//#endregion
|
|
18
|
+
//#region src/extensions/grid-card-item/grid-card-item.d.ts
|
|
19
|
+
type GridCardListItemProps = WithId<{
|
|
20
|
+
thumbnailUrl: string;
|
|
21
|
+
titleText: string;
|
|
22
|
+
subText: string;
|
|
23
|
+
bottomText?: string;
|
|
24
|
+
isSubscribed?: boolean;
|
|
25
|
+
rightBottomSlot?: {
|
|
26
|
+
type: 'subscribe';
|
|
27
|
+
subscribeEventBtn: ReactNode;
|
|
28
|
+
};
|
|
29
|
+
renderThumbnail?: (url: string) => ReactNode;
|
|
30
|
+
href?: string;
|
|
31
|
+
onClick?: MouseEventHandler<HTMLDivElement | HTMLAnchorElement>;
|
|
32
|
+
}>;
|
|
33
|
+
//#endregion
|
|
34
|
+
//#region src/extensions/app-header/app-header.types.d.ts
|
|
35
|
+
type AnimatedHeaderAnimation = 'show' | 'hide';
|
|
36
|
+
//# sourceMappingURL=app-header.types.d.ts.map
|
|
37
|
+
//#endregion
|
|
38
|
+
//#region src/extensions/app-header/app-header.d.ts
|
|
39
|
+
type AnimatedHeaderProps = PropsWithChildren<{
|
|
40
|
+
animation: AnimatedHeaderAnimation;
|
|
41
|
+
className?: string;
|
|
42
|
+
zIndex?: number;
|
|
43
|
+
}>;
|
|
44
|
+
//#endregion
|
|
45
|
+
//#region src/extensions/app-header/app-header.hooks.d.ts
|
|
46
|
+
declare function useHeaderScrollAnimation(): {
|
|
47
|
+
headerAnimation: AnimatedHeaderAnimation;
|
|
48
|
+
};
|
|
49
|
+
declare function useIsMobileMenuOpen(): {
|
|
50
|
+
isMobileMenuOpen: boolean;
|
|
51
|
+
openMobileMenu: () => void;
|
|
52
|
+
closeMobileMenu: () => void;
|
|
53
|
+
};
|
|
54
|
+
//#endregion
|
|
55
|
+
//#region src/extensions/accordion/accordion.d.ts
|
|
56
|
+
type AccordionProps<ItemT> = {
|
|
57
|
+
data: ItemT[];
|
|
58
|
+
renderTrigger: (item: ItemT) => ReactNode;
|
|
59
|
+
renderExpanded: ({
|
|
60
|
+
selectedItem
|
|
61
|
+
}: {
|
|
62
|
+
selectedItem: ItemT;
|
|
63
|
+
}) => ReactNode;
|
|
64
|
+
customized?: ReactNode;
|
|
65
|
+
};
|
|
66
|
+
//#endregion
|
|
67
|
+
//#region src/next/global-link/global-link.d.ts
|
|
68
|
+
declare function GlobalLink({
|
|
69
|
+
children,
|
|
70
|
+
href,
|
|
71
|
+
onClick,
|
|
72
|
+
target,
|
|
73
|
+
...otherProps
|
|
74
|
+
}: PropsWithChildren<LinkProps & AnchorHTMLAttributes<HTMLAnchorElement>>): react84.JSX.Element;
|
|
75
|
+
//# sourceMappingURL=global-link.d.ts.map
|
|
76
|
+
//#endregion
|
|
77
|
+
//#region src/next/global-link/global-link.store.d.ts
|
|
78
|
+
declare function useLinkStore(): {
|
|
79
|
+
isLoading: boolean;
|
|
80
|
+
setIsLoading: (isLoading: boolean) => void;
|
|
81
|
+
};
|
|
82
|
+
//# sourceMappingURL=global-link.store.d.ts.map
|
|
83
|
+
//#endregion
|
|
84
|
+
//#region src/next/global-link/global-link.utils.d.ts
|
|
85
|
+
declare function initializeGlobalLinkRedirectMap(map: Record<string, string>): void;
|
|
86
|
+
//#endregion
|
|
87
|
+
//#region src/next/route-loading/route-loading.d.ts
|
|
88
|
+
declare function RouteLoading({
|
|
89
|
+
children,
|
|
90
|
+
deps
|
|
91
|
+
}: PropsWithChildren<{
|
|
92
|
+
deps?: DependencyList;
|
|
93
|
+
}>): react61.JSX.Element;
|
|
94
|
+
//# sourceMappingURL=route-loading.d.ts.map
|
|
95
|
+
//#endregion
|
|
96
|
+
//#region src/next/new-tab-link/new-tab-link.d.ts
|
|
97
|
+
declare const NewTabLink: react59.MemoExoticComponent<({
|
|
98
|
+
children,
|
|
99
|
+
...linkProps
|
|
100
|
+
}: PropsWithChildren<Omit<LinkProps, "target" | "rel">>) => react59.JSX.Element>;
|
|
101
|
+
//# sourceMappingURL=new-tab-link.d.ts.map
|
|
102
|
+
//#endregion
|
|
103
|
+
//#region src/next/app-footer/app-footer.d.ts
|
|
104
|
+
declare function AppFooter({
|
|
105
|
+
appStoreUrl,
|
|
106
|
+
playStoreUrl,
|
|
107
|
+
instagramUrl,
|
|
108
|
+
xUrl
|
|
109
|
+
}: {
|
|
110
|
+
appStoreUrl: string;
|
|
111
|
+
playStoreUrl: string;
|
|
112
|
+
instagramUrl: string;
|
|
113
|
+
xUrl: string;
|
|
114
|
+
}): react62.JSX.Element;
|
|
115
|
+
//# sourceMappingURL=app-footer.d.ts.map
|
|
116
|
+
//#endregion
|
|
117
|
+
//#region src/next/app-header/index.d.ts
|
|
118
|
+
declare const AppHeader: {
|
|
119
|
+
FloatingHeader: react21.MemoExoticComponent<({
|
|
120
|
+
serviceName,
|
|
121
|
+
HeaderMenuItemComponent,
|
|
122
|
+
ColorSchemeToggleComponent,
|
|
123
|
+
onClickOpenMobileDrawer,
|
|
124
|
+
className,
|
|
125
|
+
zIndex
|
|
126
|
+
}: {
|
|
127
|
+
serviceName: string;
|
|
128
|
+
HeaderMenuItemComponent: react21.ReactNode;
|
|
129
|
+
ColorSchemeToggleComponent: react21.ReactNode;
|
|
130
|
+
onClickOpenMobileDrawer?: (params: {
|
|
131
|
+
isMobileMenuOpen: boolean;
|
|
132
|
+
}) => void;
|
|
133
|
+
className?: string;
|
|
134
|
+
zIndex?: AnimatedHeaderProps["zIndex"];
|
|
135
|
+
}) => react21.JSX.Element>;
|
|
136
|
+
FixedHeader: react21.MemoExoticComponent<({
|
|
137
|
+
zIndex,
|
|
138
|
+
onClickOpenDrawer,
|
|
139
|
+
mobileLeftAccessory,
|
|
140
|
+
HeaderMenuItemComponent,
|
|
141
|
+
logoRightAccessory,
|
|
142
|
+
headerHeight
|
|
143
|
+
}: {
|
|
144
|
+
zIndex?: number;
|
|
145
|
+
onClickOpenDrawer?: () => void;
|
|
146
|
+
mobileLeftAccessory?: react21.ReactNode;
|
|
147
|
+
HeaderMenuItemComponent: react21.ReactNode;
|
|
148
|
+
logoRightAccessory?: react21.ReactNode;
|
|
149
|
+
headerHeight?: string;
|
|
150
|
+
}) => react21.JSX.Element>;
|
|
151
|
+
FullScreenMobileAccordionDrawer: {
|
|
152
|
+
<ItemT extends {
|
|
153
|
+
accordionKey: string;
|
|
154
|
+
}>(props: ({
|
|
155
|
+
standalone: true;
|
|
156
|
+
isOpen: boolean;
|
|
157
|
+
zIndex?: number;
|
|
158
|
+
} & {
|
|
159
|
+
onClickClose?: (params: {
|
|
160
|
+
isOpen: boolean;
|
|
161
|
+
}) => void;
|
|
162
|
+
ColorSchemeToggleComponent: react21.ReactNode;
|
|
163
|
+
} & AccordionProps<ItemT>) | ({
|
|
164
|
+
standalone: false;
|
|
165
|
+
} & {
|
|
166
|
+
onClickClose?: (params: {
|
|
167
|
+
isOpen: boolean;
|
|
168
|
+
}) => void;
|
|
169
|
+
ColorSchemeToggleComponent: react21.ReactNode;
|
|
170
|
+
} & AccordionProps<ItemT>)): react21.JSX.Element;
|
|
171
|
+
displayName: string;
|
|
172
|
+
};
|
|
173
|
+
ModalMobileAccordionDrawer: {
|
|
174
|
+
<ItemT extends {
|
|
175
|
+
accordionKey: string;
|
|
176
|
+
}>({
|
|
177
|
+
isOpen,
|
|
178
|
+
onClose,
|
|
179
|
+
bottomAccessory,
|
|
180
|
+
...accordionProps
|
|
181
|
+
}: {
|
|
182
|
+
isOpen: boolean;
|
|
183
|
+
onClose: () => void;
|
|
184
|
+
bottomAccessory?: react21.ReactNode;
|
|
185
|
+
} & AccordionProps<ItemT>): react21.JSX.Element;
|
|
186
|
+
displayName: string;
|
|
187
|
+
};
|
|
188
|
+
useHeaderScrollAnimation: typeof useHeaderScrollAnimation;
|
|
189
|
+
useIsMobileMenuOpen: typeof useIsMobileMenuOpen;
|
|
190
|
+
AnimatedHeader: react21.MemoExoticComponent<({
|
|
191
|
+
animation,
|
|
192
|
+
children,
|
|
193
|
+
className,
|
|
194
|
+
zIndex
|
|
195
|
+
}: AnimatedHeaderProps) => react21.JSX.Element>;
|
|
196
|
+
};
|
|
197
|
+
//# sourceMappingURL=index.d.ts.map
|
|
198
|
+
//#endregion
|
|
199
|
+
//#region src/next/index.d.ts
|
|
200
|
+
declare const GridCardList: {
|
|
201
|
+
Item: react0.MemoExoticComponent<({
|
|
202
|
+
href,
|
|
203
|
+
onClick,
|
|
204
|
+
...gridCardListItemProps
|
|
205
|
+
}: GridCardListItemProps) => react0.JSX.Element>;
|
|
206
|
+
MasonryItem: react0.MemoExoticComponent<({
|
|
207
|
+
href,
|
|
208
|
+
onClick,
|
|
209
|
+
...gridCardListItemProps
|
|
210
|
+
}: GridCardListItemProps) => react0.JSX.Element>;
|
|
211
|
+
List: react0.MemoExoticComponent<({
|
|
212
|
+
items,
|
|
213
|
+
renderItem,
|
|
214
|
+
onLoadMore,
|
|
215
|
+
headerText,
|
|
216
|
+
hasNextPage,
|
|
217
|
+
isEmpty,
|
|
218
|
+
emptyComponent,
|
|
219
|
+
navigationComponent
|
|
220
|
+
}: {
|
|
221
|
+
items: GridCardListItemProps[];
|
|
222
|
+
renderItem: (item: GridCardListItemProps) => react0.ReactNode;
|
|
223
|
+
onLoadMore: () => void;
|
|
224
|
+
headerText?: string;
|
|
225
|
+
hasNextPage?: boolean;
|
|
226
|
+
isEmpty?: boolean;
|
|
227
|
+
emptyComponent?: react0.ReactNode;
|
|
228
|
+
navigationComponent?: react0.ReactNode;
|
|
229
|
+
}) => react0.JSX.Element>;
|
|
230
|
+
MasonryList: react0.MemoExoticComponent<({
|
|
231
|
+
items,
|
|
232
|
+
renderItem,
|
|
233
|
+
onLoadMore,
|
|
234
|
+
headerText,
|
|
235
|
+
hasNextPage,
|
|
236
|
+
isEmpty,
|
|
237
|
+
emptyComponent,
|
|
238
|
+
navigationComponent
|
|
239
|
+
}: {
|
|
240
|
+
items: GridCardListItemProps[];
|
|
241
|
+
renderItem: (item: GridCardListItemProps) => react0.ReactNode;
|
|
242
|
+
onLoadMore: () => void;
|
|
243
|
+
headerText?: string;
|
|
244
|
+
hasNextPage?: boolean;
|
|
245
|
+
isEmpty?: boolean;
|
|
246
|
+
emptyComponent?: react0.ReactNode;
|
|
247
|
+
navigationComponent?: react0.ReactNode;
|
|
248
|
+
}) => react0.JSX.Element>;
|
|
249
|
+
LoadMore: react0.MemoExoticComponent<({
|
|
250
|
+
onLoadMore
|
|
251
|
+
}: {
|
|
252
|
+
onLoadMore: () => void;
|
|
253
|
+
}) => react0.JSX.Element>;
|
|
254
|
+
Empty: react0.MemoExoticComponent<({
|
|
255
|
+
text
|
|
256
|
+
}: {
|
|
257
|
+
text: string;
|
|
258
|
+
}) => react0.JSX.Element>;
|
|
259
|
+
ImageEmpty: _emotion_styled0.StyledComponent<{
|
|
260
|
+
theme?: _emotion_react0.Theme;
|
|
261
|
+
as?: React.ElementType;
|
|
262
|
+
}, react0.DetailedHTMLProps<react0.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
263
|
+
Image: _emotion_styled0.StyledComponent<{
|
|
264
|
+
theme?: _emotion_react0.Theme;
|
|
265
|
+
as?: React.ElementType;
|
|
266
|
+
}, react0.DetailedHTMLProps<react0.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
267
|
+
};
|
|
268
|
+
//#endregion
|
|
269
|
+
export { AppFooter, AppHeader, GlobalLink, GridCardList, NewTabLink, RouteLoading, initializeGlobalLinkRedirectMap, useLinkStore };
|
|
270
|
+
//# sourceMappingURL=next.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"next.d.ts","names":[],"sources":["../src/utils/with-id.ts","../src/extensions/grid-card-item/grid-card-item.tsx","../src/extensions/app-header/app-header.types.ts","../src/extensions/app-header/app-header.tsx","../src/extensions/app-header/app-header.hooks.ts","../src/extensions/accordion/accordion.tsx","../src/next/global-link/global-link.tsx","../src/next/global-link/global-link.store.ts","../src/next/global-link/global-link.utils.ts","../src/next/route-loading/route-loading.tsx","../src/next/new-tab-link/new-tab-link.tsx","../src/next/app-footer/app-footer.tsx","../src/next/app-header/index.ts","../src/next/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;;KAAY;;IAER;;;;KCcQ,qBAAA,GAAwB;;;;;;;;uBAQb;;EDxBX,eAAM,CAAA,EAAA,CAAA,GAEb,EAAA,MAAA,EAAA,GCwBgC,SDxBhC;;YC0BO,kBAAkB,iBAAiB;;;;KC5BnC,uBAAA;;;;KCcA,mBAAA,GAAsB;aACrB;;;;;;iBCXG,wBAAA,CAAA;mBAAwB;;iBA2ExB,mBAAA,CAAA;EJ/EJ,gBAAM,EAAA,OAEb;;;;;;KKqCO;QACJ;wBACgB,UAAU;;;;kBACmB;QAAY;eAClD;;;;iBC5BC,UAAA;;;;;;GAMb,kBAAkB,YAAY,qBAAqB,sBAAmB,OAAA,CAAA,GAAA,CAAA;;;;iBCQzD,YAAA,CAAA;;;;;;;iBC3BA,+BAAA,MAAqC;;;iBCIrC,YAAA;;;GAAiC;SAA2B;KAAiB,OAAA,CAAA,GAAA,CAAA;;;;cCFhF,YACsE,OAAA,CAD5D;;;GACQ,kBAAkB,KAAK,kCAA6B,OAAA,CAAA,GAAA,CAAA;;;;iBCwLnE,SAAA;;;;;;;;;;IAUf,OAAA,CAAA,GAAA,CAAA;;;;cCjMY;;;;;;;;;;;;;;;;;;;;;;;;;EXUoB;IDhBrB,MAAM,CAAA,EAAA,MAAA;;kCYaq+B;6BAAA,OAAA,CAAA;IXG3+B,kBAAA,CAAA,UWHujC,SXGliC;IAAA,YAAA,CAAA,EAAA,MAAA;EAAA,CAAA,EAQV,GWX4iC,OAAA,CAAA,GAAA,CAAA,OXW5iC,CAAA;EAAS,+BAEK,EAAA;IAEP,CAAA,cAAA;MAAiB,YAAA,EAAA,MAAA;IAAnC,CAAA,CAAA,CAAA,KAAA,EAAA,CAAA;MAZwB,UAAA,EAAA,IAAA;MAAM,MAAA,EAAA,OAAA;;;;QChB9B,MAAA,EAAA,OAAuB;;;;MCcvB,UAAA,EAAA,KAAmB;IAAA,CAAA,GAAA;MAClB,YAAA,CAAA,EAAA,CAAA,MAAA,EAAA;QADqB,MAAA,EAAA,OAAA;MAAiB,CAAA,EAAA,GAAA,IAAA;;;;ECVnC,CAAA;EA2EA,0BAAmB,EAAA;;;;;;;;ICtCX;MAFZ,MAAA,EAAA,OAAc;MAAA,OAAA,EAAA,GAAA,GAAA,IAAA;MAClB,eAAA,CAAA,mBAAA;IACgB,CAAA,iBAAA,MAAA,CAAA,CAAA,qBAAA;IAAU,WAAA,EAAA,MAAA;EAAS,CAAA;EACV,wBAAoB,EAAA,+BAAA;EAAK,mBAAO,EAAA,0BAAA;EAAS,cAC3D,6BAAA,CAAA,CAAA;IAAA,SAAA;IAAA,QAAA;IAAA,SAAA;IAAA;EAAA,CAAA,qBAAA,EAAA,sBAAA,CAAA;AAAS,CAAA;;;;cQtCX;;;;;;;;;;;;;;;;;;;;EbLD;;;;;;;;;EAAA,CAAA,EAAA,qBAEP,CAAA;;;;;;;;;;EC0B2D;;;IAZpD,UAAA,EAAA,GAAA,GAAA,IAAqB;IAAA,UAAA,CAAA,EAAA,MAAA;IAQV,WAAA,CAAA,EAAA,OAAA;IAEc,OAAA,CAAA,EAAA,OAAA;IAEP,cAAA,CAAA,kBAAA;IAAiB,mBAAA,CAAA,kBAAA;EAAiB,CAAA,EAApD,qBAAA,CAAA;EAAiB,QAZO,4BAAA,CAAA,CAAA;IAAA;GAAA,EAAA;IAAM,UAAA,EAAA,GAAA,GAAA,IAAA;;;;EChB9B;;EAAA,CAAA,EAAA,qBAAuB,CAAA;;;;ECcvB,CAAA,0BAAmB,sBAAA,eAAA,CAAA,gBAAA,CAAA,EAAA,CAAA,CAAA,CAAA;EAAA,KAAA,kCAAA,CAAA;IAClB,KAAA,CAAA,uBAAA;IADqB,EAAA,CAAA,mBAAA;EAAiB,CAAA,0BAAA,yBAAA,iBAAA,CAAA,kBAAA,CAAA,EAAA,CAAA,CAAA,CAAA"}
|