@abyss-project/commons-front-core 1.0.141 → 1.0.143
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/.claude/settings.local.json +7 -0
- package/dist/components/Avatars/OrganizationAvatar/OrganizationAvatar.component.d.ts +3 -2
- package/dist/components/Avatars/ProjectAvatar/ProjectAvatar.component.d.ts +3 -2
- package/dist/components/Avatars/UserAvatar/UserAvatar.component.d.ts +3 -2
- package/dist/components/InfoBox/InfoBox.component.d.ts +1 -1
- package/dist/components/Inputs/AbyssNumberField/AbyssNumberField.component.d.ts +2 -1
- package/dist/components/Inputs/PasswordInput/PasswordInput.component.d.ts +3 -2
- package/dist/components/Modals/UserSettingsModal/UserSettings.compat.d.ts +2 -1
- package/dist/components/PdfEditor/types.d.ts +4 -4
- package/dist/components/Support/types.d.ts +6 -6
- package/dist/components/Utils/AbyssDrawer/AbyssDrawer.component.d.ts +2 -1
- package/dist/hooks/confirm-modal/confirm-modal.context.d.ts +3 -3
- package/dist/hooks/use-rich-intl.hook.d.ts +32 -0
- package/dist/{index-CnuCwLCI.js → index-0qb6YhgV.js} +2 -2
- package/dist/{index-C9HpxdlC.js → index-1u1el1f5.js} +2 -2
- package/dist/{index-BLr1fOuq.js → index-BlAxx0qM.js} +4 -4
- package/dist/{index-B3Y7Rb_Q.js → index-BpPAOM8y.js} +1 -1
- package/dist/{index-BWj4TKOS.js → index-CMWMj2q-.js} +2 -2
- package/dist/{index-0jt8DKLf.js → index-CYTUtJ1a.js} +2 -2
- package/dist/{index-tz9rZQUM.js → index-CadocGiW.js} +2 -2
- package/dist/{index-CkpUdKTG.js → index-Cbmdxst-.js} +3 -3
- package/dist/{index-CQv4ue2W.js → index-CgrJ7FhF.js} +2 -2
- package/dist/{index-jiAI8FrN.js → index-ClzOO_BD.js} +4 -4
- package/dist/{index-Cb3RkMZy.js → index-CrKObS9o.js} +2 -2
- package/dist/{index-BrSAVa-Q.js → index-D5bHj5Xy.js} +2 -2
- package/dist/{index-CDvwJmU3.js → index-D7xEmIDx.js} +2 -2
- package/dist/{index-Blqg9cwf.js → index-DRhJX2fG.js} +3 -3
- package/dist/{index-CxyWN2Jp.js → index-DZIEFA9C.js} +2 -2
- package/dist/{index-rNuCv1FV.js → index-Dbd_xKL4.js} +2 -2
- package/dist/{index-CI_ndLtL.js → index-DgtjymrE.js} +7673 -7673
- package/dist/{index-prtXdje2.js → index-HKLND03d.js} +2 -2
- package/dist/{index-B_fAiFZq.js → index-VTLXfj7y.js} +3 -3
- package/dist/{index-C70H1Rqy.js → index-eTVkFOlH.js} +4 -4
- package/dist/{index-CRlvyprK.js → index-ld9SEAyd.js} +3 -3
- package/dist/{index-DQJBss56.js → index-rTu81tl5.js} +2 -2
- package/dist/index.js +1 -1
- package/package.json +12 -11
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { SxProps } from '@mui/material';
|
|
2
|
+
import { FC, ReactNode } from 'react';
|
|
2
3
|
export type OrganizationAvatarProfileInfo = {
|
|
3
4
|
createdAt?: string;
|
|
4
5
|
projectCount?: number;
|
|
5
6
|
memberCount?: number;
|
|
6
7
|
integrations?: string[];
|
|
7
|
-
extra?:
|
|
8
|
+
extra?: ReactNode;
|
|
8
9
|
};
|
|
9
10
|
type Props = {
|
|
10
11
|
orgId: string;
|
|
@@ -19,5 +20,5 @@ type Props = {
|
|
|
19
20
|
profileInfo?: OrganizationAvatarProfileInfo;
|
|
20
21
|
onClick?: () => void;
|
|
21
22
|
};
|
|
22
|
-
declare const OrganizationAvatar:
|
|
23
|
+
declare const OrganizationAvatar: FC<Props>;
|
|
23
24
|
export default OrganizationAvatar;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SxProps } from '@mui/material';
|
|
2
|
+
import { FC, ReactNode } from 'react';
|
|
2
3
|
export type ProjectAvatarProfileInfo = {
|
|
3
4
|
description?: string;
|
|
4
5
|
memberCount?: number;
|
|
@@ -8,7 +9,7 @@ export type ProjectAvatarProfileInfo = {
|
|
|
8
9
|
createdAt?: string;
|
|
9
10
|
onGoToOrg?: () => void;
|
|
10
11
|
onGoToProject?: () => void;
|
|
11
|
-
extra?:
|
|
12
|
+
extra?: ReactNode;
|
|
12
13
|
};
|
|
13
14
|
type Props = {
|
|
14
15
|
projectId: string;
|
|
@@ -21,5 +22,5 @@ type Props = {
|
|
|
21
22
|
profileInfo?: ProjectAvatarProfileInfo;
|
|
22
23
|
onClick?: () => void;
|
|
23
24
|
};
|
|
24
|
-
declare const ProjectAvatar:
|
|
25
|
+
declare const ProjectAvatar: FC<Props>;
|
|
25
26
|
export default ProjectAvatar;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { SxProps } from '@mui/material';
|
|
2
|
+
import { FC, ReactNode } from 'react';
|
|
2
3
|
export type UserAvatarProfileInfo = {
|
|
3
4
|
email?: string;
|
|
4
5
|
role?: string;
|
|
5
6
|
status?: 'online' | 'offline' | 'away';
|
|
6
7
|
joinedAt?: string;
|
|
7
|
-
extra?:
|
|
8
|
+
extra?: ReactNode;
|
|
8
9
|
};
|
|
9
10
|
type Props = {
|
|
10
11
|
userId: string;
|
|
@@ -17,5 +18,5 @@ type Props = {
|
|
|
17
18
|
profileInfo?: UserAvatarProfileInfo;
|
|
18
19
|
onClick?: () => void;
|
|
19
20
|
};
|
|
20
|
-
declare const UserAvatar:
|
|
21
|
+
declare const UserAvatar: FC<Props>;
|
|
21
22
|
export default UserAvatar;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TextFieldProps } from '@mui/material';
|
|
2
|
+
import { FC } from 'react';
|
|
2
3
|
export type AbyssNumberFieldProps = Omit<TextFieldProps, 'value' | 'onChange'> & {
|
|
3
4
|
value: number | null;
|
|
4
5
|
onChange: (value: number | null) => void;
|
|
@@ -12,5 +13,5 @@ export type AbyssNumberFieldProps = Omit<TextFieldProps, 'value' | 'onChange'> &
|
|
|
12
13
|
max?: number;
|
|
13
14
|
allowNegative?: boolean;
|
|
14
15
|
};
|
|
15
|
-
declare const AbyssNumberField:
|
|
16
|
+
declare const AbyssNumberField: FC<AbyssNumberFieldProps>;
|
|
16
17
|
export default AbyssNumberField;
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { SxProps } from '@mui/material';
|
|
2
|
+
import { FC, ChangeEvent } from 'react';
|
|
2
3
|
type Props = {
|
|
3
4
|
name: string;
|
|
4
5
|
label?: string;
|
|
5
6
|
placeholder?: string;
|
|
6
7
|
value: string;
|
|
7
8
|
error: boolean;
|
|
8
|
-
onChange: (e:
|
|
9
|
+
onChange: (e: ChangeEvent<any>) => void;
|
|
9
10
|
variant?: 'filled' | 'outlined';
|
|
10
11
|
size?: 'small' | 'medium';
|
|
11
12
|
sx?: SxProps;
|
|
12
13
|
disabled?: boolean;
|
|
13
14
|
};
|
|
14
|
-
declare const LoginForm:
|
|
15
|
+
declare const LoginForm: FC<Props>;
|
|
15
16
|
export default LoginForm;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
1
2
|
import { UserSettingsUser } from './UserSettingsModal.component';
|
|
2
3
|
type Props = {
|
|
3
4
|
isOpen: boolean;
|
|
@@ -9,5 +10,5 @@ type Props = {
|
|
|
9
10
|
apiKey: string;
|
|
10
11
|
abyssUrl: string;
|
|
11
12
|
};
|
|
12
|
-
declare const UserSettings:
|
|
13
|
+
declare const UserSettings: FC<Props>;
|
|
13
14
|
export default UserSettings;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
1
2
|
import { AssetKind } from '@abyss-project/main';
|
|
2
3
|
import { ISpace, IFile } from '@abyss-project/cloud';
|
|
3
4
|
import { SupportCloudImportProps } from '../Support/types';
|
|
4
|
-
import type * as React from 'react';
|
|
5
5
|
export interface PdfEditorCloudImportProps extends SupportCloudImportProps {
|
|
6
6
|
downloadCloudFile: (cloud: ISpace, file: IFile) => Promise<ArrayBuffer>;
|
|
7
7
|
}
|
|
@@ -174,18 +174,18 @@ export interface AssetPaletteOrgBucket {
|
|
|
174
174
|
id: string;
|
|
175
175
|
name: string;
|
|
176
176
|
items: AssetPaletteItem[];
|
|
177
|
-
avatar?:
|
|
177
|
+
avatar?: ReactNode;
|
|
178
178
|
}
|
|
179
179
|
export interface AssetPaletteProjectBucket {
|
|
180
180
|
id: string;
|
|
181
181
|
name: string;
|
|
182
182
|
organizationId: string;
|
|
183
183
|
items: AssetPaletteItem[];
|
|
184
|
-
avatar?:
|
|
184
|
+
avatar?: ReactNode;
|
|
185
185
|
}
|
|
186
186
|
export interface AssetPalette {
|
|
187
187
|
personal: AssetPaletteItem[];
|
|
188
|
-
personalAvatar?:
|
|
188
|
+
personalAvatar?: ReactNode;
|
|
189
189
|
organizations?: AssetPaletteOrgBucket[];
|
|
190
190
|
projects?: AssetPaletteProjectBucket[];
|
|
191
191
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
1
2
|
import { ISupportTicket, ISupportTicketMessage, ISupportTicketActivity, ISupportTicketAttachment, ISupportTicketTag, SupportTicketStatus, SupportTicketCategory, SupportTicketPriority, SupportTicketAction, AbyssService } from '@abyss-project/main';
|
|
2
3
|
import { ISpace, IFile, IGetRepositoryCloudData } from '@abyss-project/cloud';
|
|
3
|
-
import { default as React } from 'react';
|
|
4
4
|
export interface SupportCloudImportProps {
|
|
5
5
|
user?: {
|
|
6
6
|
enabledService?: string[];
|
|
@@ -17,7 +17,7 @@ export interface SupportCloudImportProps {
|
|
|
17
17
|
handleImportFromCloud?: (cloud: ISpace, files: IFile[]) => Promise<void>;
|
|
18
18
|
getSpaceDisplay?: (space: ISpace) => {
|
|
19
19
|
label: string;
|
|
20
|
-
avatar?:
|
|
20
|
+
avatar?: ReactNode;
|
|
21
21
|
subtitle?: string;
|
|
22
22
|
organizationId?: string | null;
|
|
23
23
|
organizationName?: string | null;
|
|
@@ -49,7 +49,7 @@ export interface SupportTicketListProps {
|
|
|
49
49
|
onCreateClick?: () => void;
|
|
50
50
|
isLoading: boolean;
|
|
51
51
|
isAdmin?: boolean;
|
|
52
|
-
renderRowActions?: (ticket: ISupportTicket) =>
|
|
52
|
+
renderRowActions?: (ticket: ISupportTicket) => ReactNode;
|
|
53
53
|
showRequester?: boolean;
|
|
54
54
|
requesterUsers?: Record<string, {
|
|
55
55
|
alias?: string | null;
|
|
@@ -59,7 +59,7 @@ export interface SupportTicketListProps {
|
|
|
59
59
|
name?: string | null;
|
|
60
60
|
pictureThumbnailId?: string | null;
|
|
61
61
|
}>;
|
|
62
|
-
renderExtraFilters?: () =>
|
|
62
|
+
renderExtraFilters?: () => ReactNode;
|
|
63
63
|
title?: string;
|
|
64
64
|
subtitle?: string;
|
|
65
65
|
hideCreateButton?: boolean;
|
|
@@ -91,8 +91,8 @@ export interface SupportTicketCreateStepperProps {
|
|
|
91
91
|
isAdmin?: boolean;
|
|
92
92
|
onCancel?: () => void;
|
|
93
93
|
initialValues?: Partial<SupportTicketCreateStepperValues>;
|
|
94
|
-
renderForWhoStep?: (userId: string | null, onUserChange: (userId: string | null) => void, orgId: string | null, onOrgChange: (orgId: string | null) => void) =>
|
|
95
|
-
renderProjectSelect?: (value: string | null, onChange: (projectId: string | null) => void) =>
|
|
94
|
+
renderForWhoStep?: (userId: string | null, onUserChange: (userId: string | null) => void, orgId: string | null, onOrgChange: (orgId: string | null) => void) => ReactNode;
|
|
95
|
+
renderProjectSelect?: (value: string | null, onChange: (projectId: string | null) => void) => ReactNode;
|
|
96
96
|
}
|
|
97
97
|
export interface SupportCategoryGroupCardsProps {
|
|
98
98
|
value: SupportTicketCategory | null;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AbyssService } from '@abyss-project/main';
|
|
2
|
+
import { FC } from 'react';
|
|
2
3
|
export declare const DRAWER_WIDTH_EXPANDED = 275;
|
|
3
4
|
export declare const DRAWER_WIDTH_COLLAPSED = 72;
|
|
4
5
|
export type DrawerElements = {
|
|
@@ -34,5 +35,5 @@ type Props = {
|
|
|
34
35
|
onCollapsedChange?: (collapsed: boolean) => void;
|
|
35
36
|
defaultCollapsed?: boolean;
|
|
36
37
|
};
|
|
37
|
-
declare const AbyssDrawer:
|
|
38
|
+
declare const AbyssDrawer: FC<Props>;
|
|
38
39
|
export default AbyssDrawer;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ComponentProps } from 'react';
|
|
1
|
+
import { ComponentProps, FC, ReactNode } from 'react';
|
|
2
2
|
import { default as ConfirmModal } from '../../components/Modals/ConfirmModal';
|
|
3
3
|
type Params = Partial<Omit<ComponentProps<typeof ConfirmModal>, 'isOpen'>>;
|
|
4
|
-
export declare const ConfirmModalContextProvider:
|
|
5
|
-
children:
|
|
4
|
+
export declare const ConfirmModalContextProvider: FC<{
|
|
5
|
+
children: ReactNode;
|
|
6
6
|
}>;
|
|
7
7
|
export declare const useConfirm: () => {
|
|
8
8
|
confirm: (p?: Params) => Promise<boolean>;
|
|
@@ -130,6 +130,22 @@ export declare const translations: {
|
|
|
130
130
|
title: string;
|
|
131
131
|
content: string;
|
|
132
132
|
};
|
|
133
|
+
"memories-event-pdf-ready": {
|
|
134
|
+
title: string;
|
|
135
|
+
content: string;
|
|
136
|
+
};
|
|
137
|
+
"memories-highlight-reel-ready": {
|
|
138
|
+
title: string;
|
|
139
|
+
content: string;
|
|
140
|
+
};
|
|
141
|
+
"memories-seasonal-compilation-ready": {
|
|
142
|
+
title: string;
|
|
143
|
+
content: string;
|
|
144
|
+
};
|
|
145
|
+
"memories-content-shared": {
|
|
146
|
+
title: string;
|
|
147
|
+
content: string;
|
|
148
|
+
};
|
|
133
149
|
};
|
|
134
150
|
ABYSS_BANKING: {
|
|
135
151
|
"bank-connection-success": {
|
|
@@ -1328,6 +1344,22 @@ export declare const translations: {
|
|
|
1328
1344
|
title: string;
|
|
1329
1345
|
content: string;
|
|
1330
1346
|
};
|
|
1347
|
+
"memories-event-pdf-ready": {
|
|
1348
|
+
title: string;
|
|
1349
|
+
content: string;
|
|
1350
|
+
};
|
|
1351
|
+
"memories-highlight-reel-ready": {
|
|
1352
|
+
title: string;
|
|
1353
|
+
content: string;
|
|
1354
|
+
};
|
|
1355
|
+
"memories-seasonal-compilation-ready": {
|
|
1356
|
+
title: string;
|
|
1357
|
+
content: string;
|
|
1358
|
+
};
|
|
1359
|
+
"memories-content-shared": {
|
|
1360
|
+
title: string;
|
|
1361
|
+
content: string;
|
|
1362
|
+
};
|
|
1331
1363
|
};
|
|
1332
1364
|
ABYSS_BANKING: {
|
|
1333
1365
|
"bank-connection-success": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as r } from "./index-
|
|
2
|
-
import { s as e, t as O, a as s, L as X, i as l, f as Y, c as $, j as S, m as o, g as t } from "./index-
|
|
1
|
+
import { L as r } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as e, t as O, a as s, L as X, i as l, f as Y, c as $, j as S, m as o, g as t } from "./index-DgtjymrE.js";
|
|
3
3
|
const Z = e({
|
|
4
4
|
null: O.null,
|
|
5
5
|
instanceof: O.operatorKeyword,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as w, E as p, a as Y } from "./index-
|
|
2
|
-
import { s as x, t as r, a as q, L as j, e as G, i as R, f as T, c as E, g as _, o as C, I as U } from "./index-
|
|
1
|
+
import { L as w, E as p, a as Y } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as x, t as r, a as q, L as j, e as G, i as R, f as T, c as E, g as _, o as C, I as U } from "./index-DgtjymrE.js";
|
|
3
3
|
const V = 122, g = 1, Z = 123, W = 124, b = 2, N = 125, I = 3, F = 4, X = [
|
|
4
4
|
9,
|
|
5
5
|
10,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { a as g, L as P, p as l, s as q, t as r } from "./index-
|
|
2
|
-
import { html as c } from "./index-
|
|
3
|
-
import { javascriptLanguage as i } from "./index-
|
|
4
|
-
import { L as R, E as p } from "./index-
|
|
1
|
+
import { a as g, L as P, p as l, s as q, t as r } from "./index-DgtjymrE.js";
|
|
2
|
+
import { html as c } from "./index-ClzOO_BD.js";
|
|
3
|
+
import { javascriptLanguage as i } from "./index-CgrJ7FhF.js";
|
|
4
|
+
import { L as R, E as p } from "./index-BpPAOM8y.js";
|
|
5
5
|
const b = 1, $ = 33, m = 34, v = 35, x = 36, W = /* @__PURE__ */ new p((O) => {
|
|
6
6
|
let t = O.pos;
|
|
7
7
|
for (; ; ) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as W, E as i, C as B } from "./index-
|
|
2
|
-
import { s as U, t as n, a as C, L as b, p as E, i as u, f as M, j as v, g as N } from "./index-
|
|
1
|
+
import { L as W, E as i, C as B } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as U, t as n, a as C, L as b, p as E, i as u, f as M, j as v, g as N } from "./index-DgtjymrE.js";
|
|
3
3
|
const c = 63, D = 64, j = 1, A = 2, y = 3, H = 4, Z = 5, F = 6, I = 7, z = 65, K = 66, J = 8, OO = 9, eO = 10, aO = 11, rO = 12, V = 13, tO = 19, nO = 20, oO = 29, PO = 33, QO = 34, sO = 47, lO = 0, T = 1, g = 2, d = 3, m = 4;
|
|
4
4
|
class s {
|
|
5
5
|
constructor(e, a, r) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as D, E as h, C as L } from "./index-
|
|
2
|
-
import { s as H, t as n, b as B, a as K, L as M, e as OO, i as eO, f as iO, j as f, g as aO, o as nO, I as rO, d as QO, n as d } from "./index-
|
|
1
|
+
import { L as D, E as h, C as L } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as H, t as n, b as B, a as K, L as M, e as OO, i as eO, f as iO, j as f, g as aO, o as nO, I as rO, d as QO, n as d } from "./index-DgtjymrE.js";
|
|
3
3
|
const tO = 1, Z = 194, j = 195, oO = 196, x = 197, dO = 198, sO = 199, lO = 200, TO = 2, E = 3, u = 201, SO = 24, pO = 25, qO = 49, gO = 50, PO = 55, mO = 56, $O = 57, hO = 59, cO = 60, fO = 61, XO = 62, yO = 63, zO = 65, WO = 238, vO = 71, RO = 241, kO = 242, _O = 243, xO = 244, uO = 245, UO = 246, bO = 247, VO = 248, Y = 72, GO = 249, wO = 250, ZO = 251, jO = 252, EO = 253, YO = 254, FO = 255, CO = 256, JO = 73, AO = 77, IO = 263, NO = 112, DO = 130, LO = 151, HO = 152, BO = 155, p = 10, q = 13, k = 32, c = 9, _ = 35, KO = 40, MO = 46, R = 123, U = 125, F = 39, C = 34, b = 92, Oe = 111, ee = 120, ie = 78, ae = 117, ne = 85, re = /* @__PURE__ */ new Set([
|
|
4
4
|
pO,
|
|
5
5
|
qO,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as G, E as A, C as N } from "./index-
|
|
2
|
-
import { s as I, t as p, E as Y, a as j, L as U, e as k, h as Z, i as B, f as D, H as M } from "./index-
|
|
1
|
+
import { L as G, E as A, C as N } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as I, t as p, E as Y, a as j, L as U, e as k, h as Z, i as B, f as D, H as M } from "./index-DgtjymrE.js";
|
|
3
3
|
const h = 1, F = 2, L = 3, H = 4, K = 5, J = 36, ee = 37, te = 38, Oe = 11, oe = 13;
|
|
4
4
|
function re(e) {
|
|
5
5
|
return e == 45 || e == 46 || e == 58 || e >= 65 && e <= 90 || e == 95 || e >= 97 && e <= 122 || e >= 161;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { L as V, E as X } from "./index-
|
|
2
|
-
import { s as d, t as $, a as Z, L as R, p as s, i as t, f as y, c, j as U, g as l } from "./index-
|
|
3
|
-
import { html as w } from "./index-
|
|
1
|
+
import { L as V, E as X } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as d, t as $, a as Z, L as R, p as s, i as t, f as y, c, j as U, g as l } from "./index-DgtjymrE.js";
|
|
3
|
+
import { html as w } from "./index-ClzOO_BD.js";
|
|
4
4
|
const W = 1, p = 2, q = 275, u = 3, b = 276, _ = 277, f = 278, k = 4, m = 5, G = 6, x = 7, z = 8, h = 9, g = 10, v = 11, j = 12, E = 13, I = 14, N = 15, L = 16, F = 17, C = 18, H = 19, A = 20, K = 21, D = 22, B = 23, M = 24, J = 25, OO = 26, $O = 27, QO = 28, iO = 29, aO = 30, TO = 31, PO = 32, XO = 33, SO = 34, cO = 35, eO = 36, oO = 37, _O = 38, zO = 39, nO = 40, rO = 41, YO = 42, VO = 43, dO = 44, ZO = 45, RO = 46, sO = 47, tO = 48, yO = 49, UO = 50, lO = 51, wO = 52, WO = 53, pO = 54, qO = 55, uO = 56, bO = 57, fO = 58, kO = 59, mO = 60, GO = 61, xO = 62, e = 63, hO = 64, gO = 65, vO = 66, jO = {
|
|
5
5
|
abstract: k,
|
|
6
6
|
and: m,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as M, E as X, a as h, C as E } from "./index-
|
|
2
|
-
import { s as A, t as i, E as C, a as J, n as o, L as I, b as B, d as D, e as u, h as K, i as N, f as H, c as g, j as F, m as OO, g as aO, J as j, x as QO, o as iO, I as eO } from "./index-
|
|
1
|
+
import { L as M, E as X, a as h, C as E } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as A, t as i, E as C, a as J, n as o, L as I, b as B, d as D, e as u, h as K, i as N, f as H, c as g, j as F, m as OO, g as aO, J as j, x as QO, o as iO, I as eO } from "./index-DgtjymrE.js";
|
|
3
3
|
const $O = 315, rO = 316, v = 1, tO = 2, lO = 3, nO = 4, oO = 317, sO = 319, ZO = 320, PO = 5, pO = 6, cO = 0, q = [
|
|
4
4
|
9,
|
|
5
5
|
10,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { L as be, E as $, C as Pe } from "./index-
|
|
2
|
-
import { p as xe, s as Te, t as h, E as Ve, a as we, L as ye, e as K, h as ve, i as Xe, f as ke, H as $e } from "./index-
|
|
3
|
-
import { cssLanguage as J, css as _e } from "./index-
|
|
4
|
-
import { typescriptLanguage as qe, jsxLanguage as Ce, tsxLanguage as Qe, javascriptLanguage as R, javascript as Ae } from "./index-
|
|
1
|
+
import { L as be, E as $, C as Pe } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { p as xe, s as Te, t as h, E as Ve, a as we, L as ye, e as K, h as ve, i as Xe, f as ke, H as $e } from "./index-DgtjymrE.js";
|
|
3
|
+
import { cssLanguage as J, css as _e } from "./index-1u1el1f5.js";
|
|
4
|
+
import { typescriptLanguage as qe, jsxLanguage as Ce, tsxLanguage as Qe, javascriptLanguage as R, javascript as Ae } from "./index-CgrJ7FhF.js";
|
|
5
5
|
const Ye = 54, Me = 1, Re = 55, Ee = 2, Ze = 56, Be = 3, z = 4, ze = 5, X = 6, ee = 7, te = 8, ae = 9, le = 10, We = 11, De = 12, Ne = 13, _ = 57, Ge = 14, W = 58, re = 20, Ie = 22, ne = 23, je = 24, Y = 26, se = 27, Ue = 28, Le = 31, Fe = 34, He = 36, Ke = 37, Je = 0, et = 1, tt = {
|
|
6
6
|
area: !0,
|
|
7
7
|
base: !0,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as te, a as re, i as ae, f as ne, s as ie, c as se, t as i, b as oe, d as le, e as ce } from "./index-
|
|
2
|
-
import { L as de, E as me } from "./index-
|
|
1
|
+
import { L as te, a as re, i as ae, f as ne, s as ie, c as se, t as i, b as oe, d as le, e as ce } from "./index-DgtjymrE.js";
|
|
2
|
+
import { L as de, E as me } from "./index-BpPAOM8y.js";
|
|
3
3
|
const ue = 36, B = 1, pe = 2, y = 3, C = 4, fe = 5, _e = 6, ge = 7, he = 8, ye = 9, be = 10, ve = 11, ke = 12, xe = 13, Oe = 14, we = 15, Qe = 16, Ce = 17, X = 18, Se = 19, A = 20, E = 21, I = 22, qe = 23, Pe = 24;
|
|
4
4
|
function q(t) {
|
|
5
5
|
return t >= 65 && t <= 90 || t >= 97 && t <= 122 || t >= 48 && t <= 57;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as O, L as r, i as b, f as s, s as a, j as t, g as P, t as e } from "./index-
|
|
2
|
-
import { L as n } from "./index-
|
|
1
|
+
import { a as O, L as r, i as b, f as s, s as a, j as t, g as P, t as e } from "./index-DgtjymrE.js";
|
|
2
|
+
import { L as n } from "./index-BpPAOM8y.js";
|
|
3
3
|
const S = { __proto__: null, anyref: 34, dataref: 34, eqref: 34, externref: 34, i31ref: 34, funcref: 34, i8: 34, i16: 34, i32: 34, i64: 34, f32: 34, f64: 34 }, i = /* @__PURE__ */ n.deserialize({
|
|
4
4
|
version: 14,
|
|
5
5
|
states: "!^Q]QPOOOqQPO'#CbOOQO'#Cd'#CdOOQO'#Cl'#ClOOQO'#Ch'#ChQ]QPOOOOQO,58|,58|OxQPO,58|OOQO-E6f-E6fOOQO1G.h1G.h",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as s, E as R, a as Y, C as x } from "./index-
|
|
2
|
-
import { s as w, t as O, a as d, n as X, L as k, b as h, d as f, i as u, f as y, c as l, j as g, m as j, g as U, e as G, o as b, I as Z } from "./index-
|
|
1
|
+
import { L as s, E as R, a as Y, C as x } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as w, t as O, a as d, n as X, L as k, b as h, d as f, i as u, f as y, c as l, j as g, m as j, g as U, e as G, o as b, I as Z } from "./index-DgtjymrE.js";
|
|
3
3
|
const _ = 177, q = 179, E = 184, v = 12, C = 13, D = 17, z = 20, F = 25, B = 53, N = 95, I = 142, L = 144, A = 145, J = 148, M = 10, H = 13, K = 32, OO = 9, $ = 47, QO = 41, eO = 125, aO = new R((Q, e) => {
|
|
4
4
|
for (let n = 0, a = Q.next; (e.context && (a < 0 || a == M || a == H || a == $ && Q.peek(n + 1) == $) || a == QO || a == eO) && Q.acceptToken(_), !(a != K && a != OO); )
|
|
5
5
|
a = Q.peek(++n);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { L as v, E as i, C as _ } from "./index-
|
|
2
|
-
import { s as W, t as e, a as g, L as x, f as p, i as U, g as V, c as E } from "./index-
|
|
3
|
-
import { defineCSSCompletionSource as N } from "./index-
|
|
1
|
+
import { L as v, E as i, C as _ } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as W, t as e, a as g, L as x, f as p, i as U, g as V, c as E } from "./index-DgtjymrE.js";
|
|
3
|
+
import { defineCSSCompletionSource as N } from "./index-1u1el1f5.js";
|
|
4
4
|
const j = 168, X = 169, C = 170, I = 1, D = 2, w = 3, L = 171, F = 172, Y = 4, z = 173, K = 5, A = 174, T = 175, Z = 176, s = 177, G = 6, q = 7, B = 8, H = 9, c = 0, R = [
|
|
5
5
|
9,
|
|
6
6
|
10,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as nt, k as j, l as v, q as st, N as Ae, s as Be, p as it, t as c, T as E, r as ot, L as le, u as at, v as lt, w as ht, x as ft, e as _, h as P, y as T, z as ut, f as Ie, i as dt, A as pt, C as ct, B as mt, F as he, G as gt } from "./index-
|
|
2
|
-
import { html as kt, htmlCompletionSource as Lt } from "./index-
|
|
1
|
+
import { P as nt, k as j, l as v, q as st, N as Ae, s as Be, p as it, t as c, T as E, r as ot, L as le, u as at, v as lt, w as ht, x as ft, e as _, h as P, y as T, z as ut, f as Ie, i as dt, A as pt, C as ct, B as mt, F as he, G as gt } from "./index-DgtjymrE.js";
|
|
2
|
+
import { html as kt, htmlCompletionSource as Lt } from "./index-ClzOO_BD.js";
|
|
3
3
|
class $ {
|
|
4
4
|
static create(e, r, n, s, i) {
|
|
5
5
|
let o = s + (s << 8) + e + (r << 4) | 0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as o, E as a } from "./index-
|
|
2
|
-
import { s as Z, t as Q, a as _, L as q, i as l, f as w, c as r, g as V } from "./index-
|
|
1
|
+
import { L as o, E as a } from "./index-BpPAOM8y.js";
|
|
2
|
+
import { s as Z, t as Q, a as _, L as q, i as l, f as w, c as r, g as V } from "./index-DgtjymrE.js";
|
|
3
3
|
const g = 1, R = 2, b = 3, y = 4, T = 5, s = 98, c = 101, v = 102, t = 114, p = 69, X = 48, W = 46, d = 43, f = 45, Y = 35, z = 34, x = 124, U = 60, h = 62;
|
|
4
4
|
function n(O) {
|
|
5
5
|
return O >= 48 && O <= 57;
|