@operato/layout 10.2.1 → 10.3.3
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/CHANGELOG.md +28 -0
- package/dist/src/actions/snackbar.d.ts +69 -2
- package/dist/src/actions/snackbar.js +51 -5
- package/dist/src/actions/snackbar.js.map +1 -1
- package/dist/src/initializer.js +12 -6
- package/dist/src/initializer.js.map +1 -1
- package/dist/src/layouts/ox-snack-bar.d.ts +1 -1
- package/dist/src/layouts/ox-snack-bar.js +251 -49
- package/dist/src/layouts/ox-snack-bar.js.map +1 -1
- package/dist/src/reducers/snackbar.d.ts +6 -0
- package/dist/src/reducers/snackbar.js +8 -0
- package/dist/src/reducers/snackbar.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [10.3.3](https://github.com/hatiolab/operato/compare/v10.3.2...v10.3.3) (2026-08-31)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @operato/layout
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### [10.3.2](https://github.com/hatiolab/operato/compare/v10.3.1...v10.3.2) (2026-08-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### :rocket: New Features
|
|
18
|
+
|
|
19
|
+
* **layout:** 알림에 깊이를 만들고 그 구조로 토스트를 다시 짠다 ([6333945](https://github.com/hatiolab/operato/commit/6333945825a7bdca7019b2fd3fd39510beec0a15))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### :sparkles: Styling
|
|
23
|
+
|
|
24
|
+
* **layout:** 토스트 왼쪽 강조 띠 제거 — 레벨은 아이콘 색만으로 ([a6639c3](https://github.com/hatiolab/operato/commit/a6639c38eb5831bb6d1b38377021488a232dbd0e))
|
|
25
|
+
* **layout:** 토스트 타이포·색·정렬·줄바꿈을 테마 위계에 맞춘다 ([0d4070f](https://github.com/hatiolab/operato/commit/0d4070f66e904bb4aab88e260c5963daefe12ff8))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### :house: Code Refactoring
|
|
29
|
+
|
|
30
|
+
* **layout:** 토스트 AI 연결을 주입 방향으로 + 설정이 죽으면 감춘다 ([8dedafb](https://github.com/hatiolab/operato/commit/8dedafb184b74f7b99d1058f57a7f91fd3ba0f36))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
6
34
|
### [10.2.1](https://github.com/hatiolab/operato/compare/v10.2.0...v10.2.1) (2026-07-31)
|
|
7
35
|
|
|
8
36
|
|
|
@@ -1,22 +1,89 @@
|
|
|
1
1
|
import { Action } from 'redux';
|
|
2
2
|
export declare const OPEN_SNACKBAR = "OPEN_SNACKBAR";
|
|
3
3
|
export declare const CLOSE_SNACKBAR = "CLOSE_SNACKBAR";
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
* 알림의 세 층
|
|
6
|
+
* ------------
|
|
7
|
+
* 이전에는 message 한 줄뿐이어서 "무슨 일이 있었나 / 왜 / 기술적 원문"이 한 문장에 섞였다.
|
|
8
|
+
* 실제 호출 210건을 보면 18건이 err?.message 를 그대로 본문에 넣고 있었다.
|
|
9
|
+
*
|
|
10
|
+
* message 사용자가 읽을 한 줄. 무슨 일이 일어났는가.
|
|
11
|
+
* detail 왜·어디서. 사용자가 다음 행동을 정하는 데 필요한 만큼.
|
|
12
|
+
* ex 기술적 원문(예외·스택). 접힌 상태로 두고 필요한 사람만 펼친다.
|
|
13
|
+
*
|
|
14
|
+
* level 은 success 를 포함한다. 이전 타입에는 없어서(info|warn|error) 성공 알림이 레벨 없이
|
|
15
|
+
* 호출되고 있었다 — 210건 중 117건이 그렇고 대부분 "…successfully" 문구다. 성공을 표현할
|
|
16
|
+
* 자리가 없으니 개발자가 레벨을 비웠고, 결과적으로 성공과 무성격 알림이 같게 보였다.
|
|
17
|
+
*/
|
|
18
|
+
export type NotificationLevel = 'success' | 'info' | 'warn' | 'error';
|
|
5
19
|
export type Notification = {
|
|
6
20
|
message: string;
|
|
7
21
|
level?: NotificationLevel;
|
|
22
|
+
/** 왜·어디서 — 한 단계 낮은 강조로 표시된다. */
|
|
23
|
+
detail?: string;
|
|
8
24
|
option?: any;
|
|
25
|
+
/** 기술적 원문. 접힌 채로 전달되고, 펼치면 그대로 보인다. */
|
|
9
26
|
ex?: any;
|
|
10
27
|
};
|
|
28
|
+
/**
|
|
29
|
+
* 알림에서 곧바로 AI 도움으로 넘어가는 연결점.
|
|
30
|
+
*
|
|
31
|
+
* 방향은 **AI 어시스턴트 → 토스트 주입**이다. 토스트는 AI 를 알지 못하고, 찾아 나서지도 않는다.
|
|
32
|
+
* AI 를 제공하는 쪽이 "지금 도울 수 있다"고 판단했을 때 자기 함수를 넣어 준다.
|
|
33
|
+
*
|
|
34
|
+
* // AI 쪽에서
|
|
35
|
+
* registerNotifyAssistant(req => openAssistant(req)) // 쓸 수 있게 되면 주입
|
|
36
|
+
* registerNotifyAssistant(null) // 못 쓰게 되면 회수
|
|
37
|
+
*
|
|
38
|
+
* 가용 여부를 판단하는 책임도 주입하는 쪽에 있다. 설정 미비·권한 없음·백엔드 미응답처럼
|
|
39
|
+
* "AI 가 정상 동작하지 않는" 상태를 아는 것은 AI 쪽이지 토스트가 아니다. 그런 상태가 되면
|
|
40
|
+
* null 로 회수하면 되고, 그러면 토스트에서 버튼이 사라진다.
|
|
41
|
+
*
|
|
42
|
+
* 토스트는 주입된 것이 있는지만 본다. 그래서 AI 가 없는 앱, 설정이 죽은 앱에서는 이 기능이
|
|
43
|
+
* 화면에 아예 나타나지 않는다 — 눌러도 아무 일 없는 버튼이나, 열면 "쓸 수 없습니다"가 뜨는
|
|
44
|
+
* 버튼을 보여주지 않는다.
|
|
45
|
+
*/
|
|
46
|
+
export type NotifyAssistantRequest = {
|
|
47
|
+
level: NotificationLevel;
|
|
48
|
+
message: string;
|
|
49
|
+
detail?: string;
|
|
50
|
+
ex?: any;
|
|
51
|
+
};
|
|
52
|
+
export type NotifyAssistantProvider = {
|
|
53
|
+
ask: (request: NotifyAssistantRequest) => void;
|
|
54
|
+
/**
|
|
55
|
+
* 지금 쓸 수 있는가. **렌더 시점마다** 호출되므로 값을 캐시하지 말고 그때의 상태를 답한다.
|
|
56
|
+
*
|
|
57
|
+
* 주입 후에 설정이 꺼지거나 세션이 끊기는 일이 있고, 그때 AI 쪽이 회수를 놓칠 수도 있다.
|
|
58
|
+
* 이 함수가 있으면 회수를 놓쳐도 버튼이 뜨지 않는다 — 기존 앱에 주는 영향을 최소로 두기 위한
|
|
59
|
+
* 안전장치다. 예외를 던지면 "쓸 수 없음"으로 본다.
|
|
60
|
+
*
|
|
61
|
+
* 생략하면 주입되어 있는 동안 항상 쓸 수 있다고 본다.
|
|
62
|
+
*/
|
|
63
|
+
available?: () => boolean;
|
|
64
|
+
};
|
|
65
|
+
/** 함수만 주입하는 형태도 받는다(가용 여부를 따로 알릴 것이 없는 제공자). */
|
|
66
|
+
export type NotifyAssistant = ((request: NotifyAssistantRequest) => void) | NotifyAssistantProvider;
|
|
67
|
+
/** AI 쪽에서 주입한다. null 을 넣으면 회수되고 토스트에서 버튼이 사라진다. */
|
|
68
|
+
export declare function registerNotifyAssistant(assistant: NotifyAssistant | null): void;
|
|
69
|
+
/**
|
|
70
|
+
* 지금 실제로 쓸 수 있는 도움 함수. 주입이 없거나 available() 이 거짓이면 null.
|
|
71
|
+
* 토스트는 이 결과가 null 이 아닐 때만 버튼을 그린다.
|
|
72
|
+
*/
|
|
73
|
+
export declare function resolveNotifyAssistant(): ((request: NotifyAssistantRequest) => void) | null;
|
|
11
74
|
export declare function notify(notification: string | Notification): void;
|
|
12
75
|
export type SnackbarAction = {
|
|
13
76
|
type: 'OPEN_SNACKBAR' | 'CLOSE_SNACKBAR';
|
|
14
77
|
level?: NotificationLevel;
|
|
15
78
|
message?: string;
|
|
79
|
+
detail?: string;
|
|
80
|
+
ex?: any;
|
|
16
81
|
action?: any;
|
|
17
82
|
};
|
|
18
|
-
export declare const showSnackbar: (level: NotificationLevel, { message, action, timer }: {
|
|
83
|
+
export declare const showSnackbar: (level: NotificationLevel, { message, detail, ex, action, timer }: {
|
|
19
84
|
message: string;
|
|
85
|
+
detail?: string;
|
|
86
|
+
ex?: any;
|
|
20
87
|
action?: any;
|
|
21
88
|
timer?: number;
|
|
22
89
|
}) => (dispatch: (param: SnackbarAction) => Action<any>) => void;
|
|
@@ -1,24 +1,70 @@
|
|
|
1
1
|
export const OPEN_SNACKBAR = 'OPEN_SNACKBAR';
|
|
2
2
|
export const CLOSE_SNACKBAR = 'CLOSE_SNACKBAR';
|
|
3
3
|
var snackbarTimer;
|
|
4
|
+
/**
|
|
5
|
+
* 레벨별 기본 표시 시간(ms).
|
|
6
|
+
*
|
|
7
|
+
* error 는 -1 = 자동으로 닫지 않는다. 이전에는 모든 레벨이 5초라, 사용자가 눈을 돌린 사이
|
|
8
|
+
* 오류가 사라져 무엇이 잘못됐는지 알 수 없었다. 오류는 사람이 닫아야 사라지는 것이 맞다.
|
|
9
|
+
*/
|
|
10
|
+
const DEFAULT_TIMER = {
|
|
11
|
+
success: 4000,
|
|
12
|
+
info: 4000,
|
|
13
|
+
warn: 8000,
|
|
14
|
+
error: -1
|
|
15
|
+
};
|
|
16
|
+
let notifyAssistant = null;
|
|
17
|
+
/** AI 쪽에서 주입한다. null 을 넣으면 회수되고 토스트에서 버튼이 사라진다. */
|
|
18
|
+
export function registerNotifyAssistant(assistant) {
|
|
19
|
+
notifyAssistant = assistant;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* 지금 실제로 쓸 수 있는 도움 함수. 주입이 없거나 available() 이 거짓이면 null.
|
|
23
|
+
* 토스트는 이 결과가 null 이 아닐 때만 버튼을 그린다.
|
|
24
|
+
*/
|
|
25
|
+
export function resolveNotifyAssistant() {
|
|
26
|
+
const provider = notifyAssistant;
|
|
27
|
+
if (!provider)
|
|
28
|
+
return null;
|
|
29
|
+
if (typeof provider === 'function')
|
|
30
|
+
return provider;
|
|
31
|
+
if (typeof provider.ask !== 'function')
|
|
32
|
+
return null;
|
|
33
|
+
if (provider.available) {
|
|
34
|
+
try {
|
|
35
|
+
if (!provider.available())
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
catch (_a) {
|
|
39
|
+
/* 가용 여부를 판단조차 못하는 상태면 쓸 수 없는 것으로 본다 */
|
|
40
|
+
return null;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
return provider.ask;
|
|
44
|
+
}
|
|
4
45
|
export function notify(notification) {
|
|
5
46
|
if (typeof notification === 'string') {
|
|
6
47
|
return notify({ message: notification });
|
|
7
48
|
}
|
|
8
|
-
var { message, level, option, ex } = notification;
|
|
49
|
+
var { message, level, detail, option, ex } = notification;
|
|
9
50
|
document.dispatchEvent(new CustomEvent('notify', {
|
|
10
|
-
detail: { message, level, ex, option }
|
|
51
|
+
detail: { message, level, detail, ex, option }
|
|
11
52
|
}));
|
|
12
53
|
}
|
|
13
|
-
export const showSnackbar = (level, { message, action, timer
|
|
54
|
+
export const showSnackbar = (level, { message, detail, ex, action, timer }) => (dispatch) => {
|
|
55
|
+
var _a;
|
|
14
56
|
dispatch({
|
|
15
57
|
type: OPEN_SNACKBAR,
|
|
16
58
|
level,
|
|
17
59
|
message,
|
|
60
|
+
detail,
|
|
61
|
+
ex,
|
|
18
62
|
action
|
|
19
63
|
});
|
|
20
64
|
window.clearTimeout(snackbarTimer);
|
|
21
|
-
|
|
22
|
-
|
|
65
|
+
/* 호출자가 timer 를 주지 않으면 레벨별 기본값을 쓴다 */
|
|
66
|
+
const effective = (_a = timer !== null && timer !== void 0 ? timer : DEFAULT_TIMER[level]) !== null && _a !== void 0 ? _a : 4000;
|
|
67
|
+
if (effective != -1)
|
|
68
|
+
snackbarTimer = window.setTimeout(() => dispatch({ type: CLOSE_SNACKBAR }), effective);
|
|
23
69
|
};
|
|
24
70
|
//# sourceMappingURL=snackbar.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snackbar.js","sourceRoot":"","sources":["../../../src/actions/snackbar.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,aAAa,GAAG,eAAe,CAAA;AAC5C,MAAM,CAAC,MAAM,cAAc,GAAG,gBAAgB,CAAA;AAE9C,IAAI,aAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"snackbar.js","sourceRoot":"","sources":["../../../src/actions/snackbar.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,aAAa,GAAG,eAAe,CAAA;AAC5C,MAAM,CAAC,MAAM,cAAc,GAAG,gBAAgB,CAAA;AAE9C,IAAI,aAAqB,CAAA;AA2BzB;;;;;GAKG;AACH,MAAM,aAAa,GAAsC;IACvD,OAAO,EAAE,IAAI;IACb,IAAI,EAAE,IAAI;IACV,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,CAAC,CAAC;CACV,CAAA;AA0CD,IAAI,eAAe,GAA2B,IAAI,CAAA;AAElD,mDAAmD;AACnD,MAAM,UAAU,uBAAuB,CAAC,SAAiC;IACvE,eAAe,GAAG,SAAS,CAAA;AAC7B,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,sBAAsB;IACpC,MAAM,QAAQ,GAAG,eAAe,CAAA;IAChC,IAAI,CAAC,QAAQ;QAAE,OAAO,IAAI,CAAA;IAE1B,IAAI,OAAO,QAAQ,KAAK,UAAU;QAAE,OAAO,QAAQ,CAAA;IACnD,IAAI,OAAO,QAAQ,CAAC,GAAG,KAAK,UAAU;QAAE,OAAO,IAAI,CAAA;IAEnD,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;QACvB,IAAI,CAAC;YACH,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE;gBAAE,OAAO,IAAI,CAAA;QACxC,CAAC;QAAC,WAAM,CAAC;YACP,uCAAuC;YACvC,OAAO,IAAI,CAAA;QACb,CAAC;IACH,CAAC;IAED,OAAO,QAAQ,CAAC,GAAG,CAAA;AACrB,CAAC;AAED,MAAM,UAAU,MAAM,CAAC,YAAmC;IACxD,IAAI,OAAO,YAAY,KAAK,QAAQ,EAAE,CAAC;QACrC,OAAO,MAAM,CAAC,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC,CAAA;IAC1C,CAAC;IAED,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,YAA4B,CAAA;IAEzE,QAAQ,CAAC,aAAa,CACpB,IAAI,WAAW,CAAC,QAAQ,EAAE;QACxB,MAAM,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE;KAC/C,CAAC,CACH,CAAA;AACH,CAAC;AAWD,MAAM,CAAC,MAAM,YAAY,GACvB,CACE,KAAwB,EACxB,EACE,OAAO,EACP,MAAM,EACN,EAAE,EACF,MAAM,EACN,KAAK,EAON,EACD,EAAE,CACJ,CAAC,QAAgD,EAAE,EAAE;;IACnD,QAAQ,CAAC;QACP,IAAI,EAAE,aAAa;QACnB,KAAK;QACL,OAAO;QACP,MAAM;QACN,EAAE;QACF,MAAM;KACP,CAAC,CAAA;IACF,MAAM,CAAC,YAAY,CAAC,aAAa,CAAC,CAAA;IAElC,qCAAqC;IACrC,MAAM,SAAS,GAAG,MAAA,KAAK,aAAL,KAAK,cAAL,KAAK,GAAI,aAAa,CAAC,KAAK,CAAC,mCAAI,IAAI,CAAA;IAEvD,IAAI,SAAS,IAAI,CAAC,CAAC;QAAE,aAAa,GAAG,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,EAAE,IAAI,EAAE,cAAc,EAAE,CAAC,EAAE,SAAS,CAAC,CAAA;AAC7G,CAAC,CAAA","sourcesContent":["import { Action } from 'redux'\n\nexport const OPEN_SNACKBAR = 'OPEN_SNACKBAR'\nexport const CLOSE_SNACKBAR = 'CLOSE_SNACKBAR'\n\nvar snackbarTimer: number\n\n/**\n * 알림의 세 층\n * ------------\n * 이전에는 message 한 줄뿐이어서 \"무슨 일이 있었나 / 왜 / 기술적 원문\"이 한 문장에 섞였다.\n * 실제 호출 210건을 보면 18건이 err?.message 를 그대로 본문에 넣고 있었다.\n *\n * message 사용자가 읽을 한 줄. 무슨 일이 일어났는가.\n * detail 왜·어디서. 사용자가 다음 행동을 정하는 데 필요한 만큼.\n * ex 기술적 원문(예외·스택). 접힌 상태로 두고 필요한 사람만 펼친다.\n *\n * level 은 success 를 포함한다. 이전 타입에는 없어서(info|warn|error) 성공 알림이 레벨 없이\n * 호출되고 있었다 — 210건 중 117건이 그렇고 대부분 \"…successfully\" 문구다. 성공을 표현할\n * 자리가 없으니 개발자가 레벨을 비웠고, 결과적으로 성공과 무성격 알림이 같게 보였다.\n */\nexport type NotificationLevel = 'success' | 'info' | 'warn' | 'error'\nexport type Notification = {\n message: string\n level?: NotificationLevel\n /** 왜·어디서 — 한 단계 낮은 강조로 표시된다. */\n detail?: string\n option?: any\n /** 기술적 원문. 접힌 채로 전달되고, 펼치면 그대로 보인다. */\n ex?: any\n}\n\n/**\n * 레벨별 기본 표시 시간(ms).\n *\n * error 는 -1 = 자동으로 닫지 않는다. 이전에는 모든 레벨이 5초라, 사용자가 눈을 돌린 사이\n * 오류가 사라져 무엇이 잘못됐는지 알 수 없었다. 오류는 사람이 닫아야 사라지는 것이 맞다.\n */\nconst DEFAULT_TIMER: Record<NotificationLevel, number> = {\n success: 4000,\n info: 4000,\n warn: 8000,\n error: -1\n}\n\n/**\n * 알림에서 곧바로 AI 도움으로 넘어가는 연결점.\n *\n * 방향은 **AI 어시스턴트 → 토스트 주입**이다. 토스트는 AI 를 알지 못하고, 찾아 나서지도 않는다.\n * AI 를 제공하는 쪽이 \"지금 도울 수 있다\"고 판단했을 때 자기 함수를 넣어 준다.\n *\n * // AI 쪽에서\n * registerNotifyAssistant(req => openAssistant(req)) // 쓸 수 있게 되면 주입\n * registerNotifyAssistant(null) // 못 쓰게 되면 회수\n *\n * 가용 여부를 판단하는 책임도 주입하는 쪽에 있다. 설정 미비·권한 없음·백엔드 미응답처럼\n * \"AI 가 정상 동작하지 않는\" 상태를 아는 것은 AI 쪽이지 토스트가 아니다. 그런 상태가 되면\n * null 로 회수하면 되고, 그러면 토스트에서 버튼이 사라진다.\n *\n * 토스트는 주입된 것이 있는지만 본다. 그래서 AI 가 없는 앱, 설정이 죽은 앱에서는 이 기능이\n * 화면에 아예 나타나지 않는다 — 눌러도 아무 일 없는 버튼이나, 열면 \"쓸 수 없습니다\"가 뜨는\n * 버튼을 보여주지 않는다.\n */\nexport type NotifyAssistantRequest = {\n level: NotificationLevel\n message: string\n detail?: string\n ex?: any\n}\nexport type NotifyAssistantProvider = {\n ask: (request: NotifyAssistantRequest) => void\n /**\n * 지금 쓸 수 있는가. **렌더 시점마다** 호출되므로 값을 캐시하지 말고 그때의 상태를 답한다.\n *\n * 주입 후에 설정이 꺼지거나 세션이 끊기는 일이 있고, 그때 AI 쪽이 회수를 놓칠 수도 있다.\n * 이 함수가 있으면 회수를 놓쳐도 버튼이 뜨지 않는다 — 기존 앱에 주는 영향을 최소로 두기 위한\n * 안전장치다. 예외를 던지면 \"쓸 수 없음\"으로 본다.\n *\n * 생략하면 주입되어 있는 동안 항상 쓸 수 있다고 본다.\n */\n available?: () => boolean\n}\n/** 함수만 주입하는 형태도 받는다(가용 여부를 따로 알릴 것이 없는 제공자). */\nexport type NotifyAssistant = ((request: NotifyAssistantRequest) => void) | NotifyAssistantProvider\n\nlet notifyAssistant: NotifyAssistant | null = null\n\n/** AI 쪽에서 주입한다. null 을 넣으면 회수되고 토스트에서 버튼이 사라진다. */\nexport function registerNotifyAssistant(assistant: NotifyAssistant | null): void {\n notifyAssistant = assistant\n}\n\n/**\n * 지금 실제로 쓸 수 있는 도움 함수. 주입이 없거나 available() 이 거짓이면 null.\n * 토스트는 이 결과가 null 이 아닐 때만 버튼을 그린다.\n */\nexport function resolveNotifyAssistant(): ((request: NotifyAssistantRequest) => void) | null {\n const provider = notifyAssistant\n if (!provider) return null\n\n if (typeof provider === 'function') return provider\n if (typeof provider.ask !== 'function') return null\n\n if (provider.available) {\n try {\n if (!provider.available()) return null\n } catch {\n /* 가용 여부를 판단조차 못하는 상태면 쓸 수 없는 것으로 본다 */\n return null\n }\n }\n\n return provider.ask\n}\n\nexport function notify(notification: string | Notification): void {\n if (typeof notification === 'string') {\n return notify({ message: notification })\n }\n\n var { message, level, detail, option, ex } = notification as Notification\n\n document.dispatchEvent(\n new CustomEvent('notify', {\n detail: { message, level, detail, ex, option }\n })\n )\n}\n\nexport type SnackbarAction = {\n type: 'OPEN_SNACKBAR' | 'CLOSE_SNACKBAR'\n level?: NotificationLevel\n message?: string\n detail?: string\n ex?: any\n action?: any\n}\n\nexport const showSnackbar =\n (\n level: NotificationLevel,\n {\n message,\n detail,\n ex,\n action,\n timer\n }: {\n message: string\n detail?: string\n ex?: any\n action?: any\n timer?: number\n }\n ) =>\n (dispatch: (param: SnackbarAction) => Action<any>) => {\n dispatch({\n type: OPEN_SNACKBAR,\n level,\n message,\n detail,\n ex,\n action\n })\n window.clearTimeout(snackbarTimer)\n\n /* 호출자가 timer 를 주지 않으면 레벨별 기본값을 쓴다 */\n const effective = timer ?? DEFAULT_TIMER[level] ?? 4000\n\n if (effective != -1) snackbarTimer = window.setTimeout(() => dispatch({ type: CLOSE_SNACKBAR }), effective)\n }\n"]}
|
package/dist/src/initializer.js
CHANGED
|
@@ -26,22 +26,28 @@ document.addEventListener('open-popup', event => {
|
|
|
26
26
|
callback(popup);
|
|
27
27
|
});
|
|
28
28
|
document.addEventListener('notify', event => {
|
|
29
|
-
let { message, level, ex = '', option = {} } = event.detail;
|
|
30
|
-
|
|
29
|
+
let { message, level, detail, ex = '', option = {} } = event.detail;
|
|
30
|
+
/*
|
|
31
|
+
* 레벨을 주지 않은 호출이 210건 중 117건이다. 그대로 두면 성격 없는 알림이 되어 화면에서
|
|
32
|
+
* 성공·안내가 구분되지 않으므로 info 로 정규화한다. (성공 알림은 호출부에서 점차
|
|
33
|
+
* level: 'success' 로 옮긴다 — 기본값이 잡혀 있으면 그 전에도 화면은 일관된다.)
|
|
34
|
+
*/
|
|
35
|
+
const effectiveLevel = level || 'info';
|
|
36
|
+
switch (effectiveLevel) {
|
|
31
37
|
case 'error':
|
|
32
38
|
console.error(message, ex);
|
|
33
39
|
break;
|
|
34
40
|
case 'warn':
|
|
35
41
|
console.warn(message, ex);
|
|
36
42
|
break;
|
|
37
|
-
case 'info':
|
|
38
|
-
console.info(message);
|
|
39
|
-
break;
|
|
40
43
|
default:
|
|
44
|
+
console.info(message);
|
|
41
45
|
break;
|
|
42
46
|
}
|
|
43
|
-
store.dispatch(showSnackbar(
|
|
47
|
+
store.dispatch(showSnackbar(effectiveLevel, {
|
|
44
48
|
message,
|
|
49
|
+
detail,
|
|
50
|
+
ex,
|
|
45
51
|
...option
|
|
46
52
|
}));
|
|
47
53
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"initializer.js","sourceRoot":"","sources":["../../src/initializer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAA;AACpE,OAAO,EAAE,eAAe,EAAE,YAAY,EAAE,WAAW,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAE1G,OAAO,MAAM,MAAM,sBAAsB,CAAA;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpD,OAAO,QAAQ,MAAM,wBAAwB,CAAA;AAE7C,KAAK,CAAC,WAAW,CAAC;IAChB,MAAM;IACN,QAAQ;CACT,CAAC,CAAA;AAEF,QAAQ,CAAC,gBAAgB,CAAC,cAAc,EAAE,KAAK,CAAC,EAAE;IAChD,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAI,KAAqB,CAAC,MAAM,CAAA;IACvD,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAA;AAC5B,CAAC,CAAC,CAAA;AAEF,QAAQ,CAAC,gBAAgB,CAAC,eAAe,EAAE,KAAK,CAAC,EAAE;IACjD,MAAM,EAAE,IAAI,EAAE,GAAI,KAAqB,CAAC,MAAM,CAAA;IAC9C,YAAY,CAAC,IAAI,CAAC,CAAA;AACpB,CAAC,CAAC,CAAA;AAEF,QAAQ,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,KAAK,CAAC,EAAE;IAClD,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAI,KAAqB,CAAC,MAAM,CAAA;IACvD,aAAa,CAAC,IAAI,EAAE,OAAO,CAAC,CAAA;AAC9B,CAAC,CAAC,CAAA;AAEF,QAAQ,CAAC,gBAAgB,CAAC,YAAY,EAAE,KAAK,CAAC,EAAE;IAC9C,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAI,KAAqB,CAAC,MAAM,CAAA;IACrE,IAAI,KAAK,GAAG,SAAS,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;IACxC,IAAI,KAAK,IAAI,QAAQ;QAAE,QAAQ,CAAC,KAAK,CAAC,CAAA;AACxC,CAAC,CAAC,CAAA;AAEF,QAAQ,CAAC,gBAAgB,CAAC,QAAQ,EAAE,KAAK,CAAC,EAAE;IAC1C,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,GAAI,KAAqB,CAAC,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"initializer.js","sourceRoot":"","sources":["../../src/initializer.ts"],"names":[],"mappings":"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","sourcesContent":["import { REGISTER_NAVIGATION_CALLBACK, store } from '@operato/shell'\nimport { UPDATE_VIEWPART, closeOverlay, openOverlay, openPopup, toggleOverlay } from './actions/layout.js'\n\nimport layout from './reducers/layout.js'\nimport { showSnackbar } from './actions/snackbar.js'\nimport snackbar from './reducers/snackbar.js'\n\nstore.addReducers({\n layout,\n snackbar\n})\n\ndocument.addEventListener('open-overlay', event => {\n const { name, options } = (event as CustomEvent).detail\n openOverlay(name, options)\n})\n\ndocument.addEventListener('close-overlay', event => {\n const { name } = (event as CustomEvent).detail\n closeOverlay(name)\n})\n\ndocument.addEventListener('toggle-overlay', event => {\n const { name, options } = (event as CustomEvent).detail\n toggleOverlay(name, options)\n})\n\ndocument.addEventListener('open-popup', event => {\n const { template, options, callback } = (event as CustomEvent).detail\n var popup = openPopup(template, options)\n if (popup && callback) callback(popup)\n})\n\ndocument.addEventListener('notify', event => {\n let { message, level, detail, ex = '', option = {} } = (event as CustomEvent).detail\n\n /*\n * 레벨을 주지 않은 호출이 210건 중 117건이다. 그대로 두면 성격 없는 알림이 되어 화면에서\n * 성공·안내가 구분되지 않으므로 info 로 정규화한다. (성공 알림은 호출부에서 점차\n * level: 'success' 로 옮긴다 — 기본값이 잡혀 있으면 그 전에도 화면은 일관된다.)\n */\n const effectiveLevel = level || 'info'\n\n switch (effectiveLevel) {\n case 'error':\n console.error(message, ex)\n break\n case 'warn':\n console.warn(message, ex)\n break\n default:\n console.info(message)\n break\n }\n\n store.dispatch(\n showSnackbar(effectiveLevel, {\n message,\n detail,\n ex,\n ...(option as {\n action?: any\n timer?: number\n })\n }) as any\n )\n})\n\n/* overlay handling */\nvar overlayStack: any[] = []\nfunction getLastSequence() {\n return overlayStack.length > 0 ? overlayStack[overlayStack.length - 1].overlay.sequence : -1\n}\n\ndocument.addEventListener('keydown', event => {\n if (overlayStack.length > 0 && (event.key === 'Escape' || event.key === 'Esc')) {\n history.state?.overlay?.escapable && history.back()\n }\n})\n\nconst historyHandler = (location: string, event: Event) => {\n var navigated = event instanceof PopStateEvent\n\n var state = history.state\n var overlay = state?.overlay\n var sequence = overlay?.sequence || -1\n\n var lastSequence = getLastSequence()\n\n if (overlayStack.length > 0 && sequence < lastSequence) {\n /* overlay 관련 history가 아닌 경우. */\n do {\n let { overlay } = overlayStack.pop()\n store.dispatch({\n type: UPDATE_VIEWPART,\n name: overlay.name,\n override: { show: false }\n })\n\n lastSequence = getLastSequence()\n } while (sequence < lastSequence)\n }\n\n if (!navigated && overlay) {\n overlayStack.push({ ...state })\n\n store.dispatch({\n type: UPDATE_VIEWPART,\n name: overlay.name,\n override: { show: true }\n })\n }\n}\n\nstore.dispatch({\n type: REGISTER_NAVIGATION_CALLBACK,\n callback: historyHandler\n})\n\nexport default store\n"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import '@material/web/button/
|
|
1
|
+
import '@material/web/button/text-button.js';
|
|
2
2
|
import '@material/web/icon/icon.js';
|
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
var SnackBar_1;
|
|
2
2
|
import { __decorate } from "tslib";
|
|
3
|
-
import '@material/web/button/
|
|
3
|
+
import '@material/web/button/text-button.js';
|
|
4
4
|
import '@material/web/icon/icon.js';
|
|
5
5
|
import { css, html, LitElement, nothing } from 'lit';
|
|
6
6
|
import { customElement, property } from 'lit/decorators.js';
|
|
7
|
+
import { i18next } from '@operato/i18n';
|
|
7
8
|
import { SnackbarController } from '@operato/shell';
|
|
9
|
+
import { resolveNotifyAssistant } from '../actions/snackbar.js';
|
|
8
10
|
let SnackBar = SnackBar_1 = class SnackBar extends LitElement {
|
|
9
11
|
constructor() {
|
|
10
12
|
super(...arguments);
|
|
11
13
|
this._snackbar = new SnackbarController(this);
|
|
12
14
|
this.active = false;
|
|
15
|
+
/* 레벨을 호스트 속성으로 반영해 CSS 가 강조색을 고르게 한다 */
|
|
16
|
+
this.level = 'info';
|
|
13
17
|
// 스와이프 시작 X 좌표 (드래그 중이 아니면 null)
|
|
14
18
|
this.dragStartX = null;
|
|
15
19
|
this.dragX = 0;
|
|
@@ -65,37 +69,100 @@ let SnackBar = SnackBar_1 = class SnackBar extends LitElement {
|
|
|
65
69
|
this.style.setProperty('--snackbar-drag-x', `${x}px`);
|
|
66
70
|
this.style.setProperty('--snackbar-opacity', `${opacity}`);
|
|
67
71
|
}
|
|
72
|
+
/** 기술 원문을 사람이 읽을 수 있는 문자열로. Error 는 message+stack, 그 외는 JSON. */
|
|
73
|
+
formatEx(ex) {
|
|
74
|
+
if (!ex)
|
|
75
|
+
return '';
|
|
76
|
+
if (typeof ex === 'string')
|
|
77
|
+
return ex;
|
|
78
|
+
if (ex instanceof Error)
|
|
79
|
+
return ex.stack || `${ex.name}: ${ex.message}`;
|
|
80
|
+
try {
|
|
81
|
+
return JSON.stringify(ex, null, 2);
|
|
82
|
+
}
|
|
83
|
+
catch (_a) {
|
|
84
|
+
return String(ex);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
68
87
|
render() {
|
|
69
|
-
|
|
88
|
+
var _a;
|
|
89
|
+
const { level, message, detail, ex, action } = this._snackbar;
|
|
90
|
+
const tone = level || 'info';
|
|
91
|
+
const exText = this.formatEx(ex);
|
|
92
|
+
/*
|
|
93
|
+
* 주입된 도움 함수. AI 가 없는 앱이거나 설정이 죽어 있으면 null 이고, 그때는 버튼을 그리지
|
|
94
|
+
* 않는다 — 눌러도 아무 일 없는 버튼을 보여주지 않는다.
|
|
95
|
+
*/
|
|
96
|
+
const assistant = resolveNotifyAssistant();
|
|
70
97
|
return html `
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
98
|
+
<md-icon class=${tone} aria-hidden="true">${(_a = SnackBar_1.ICONS[tone]) !== null && _a !== void 0 ? _a : 'info'}</md-icon>
|
|
99
|
+
|
|
100
|
+
<div body>
|
|
101
|
+
<!-- 1층: 무슨 일이 일어났는가 -->
|
|
102
|
+
<div headline>${message}</div>
|
|
103
|
+
|
|
104
|
+
<!-- 2층: 왜·어디서. 낮은 강조로 구분한다 -->
|
|
105
|
+
${detail ? html `<div supporting>${detail}</div>` : nothing}
|
|
106
|
+
|
|
107
|
+
<!-- 3층: 기술 원문. 접힌 채 두고 필요한 사람만 펼친다 -->
|
|
108
|
+
${exText
|
|
109
|
+
? html `
|
|
110
|
+
<details technical>
|
|
111
|
+
<summary>${i18next.t('text.technical detail')}</summary>
|
|
112
|
+
<pre>${exText}</pre>
|
|
113
|
+
</details>
|
|
114
|
+
`
|
|
81
115
|
: nothing}
|
|
82
|
-
|
|
83
|
-
|
|
116
|
+
|
|
117
|
+
${(action === null || action === void 0 ? void 0 : action.label) || (assistant && (tone === 'error' || tone === 'warn'))
|
|
84
118
|
? html `
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
119
|
+
<div actions>
|
|
120
|
+
${(action === null || action === void 0 ? void 0 : action.label)
|
|
121
|
+
? html `
|
|
122
|
+
<md-text-button
|
|
123
|
+
@click=${() => {
|
|
124
|
+
var _a;
|
|
125
|
+
this._snackbar.close();
|
|
126
|
+
(_a = action.callback) === null || _a === void 0 ? void 0 : _a.call(action);
|
|
127
|
+
}}
|
|
128
|
+
>${action.label}</md-text-button
|
|
129
|
+
>
|
|
130
|
+
`
|
|
131
|
+
: nothing}
|
|
132
|
+
<!--
|
|
133
|
+
오류·경고에서 곧바로 AI 도움으로 넘어간다. 핸들러가 등록된 앱에서만 나타나므로
|
|
134
|
+
눌러도 아무 일 없는 버튼이 생기지 않는다.
|
|
135
|
+
-->
|
|
136
|
+
${assistant && (tone === 'error' || tone === 'warn')
|
|
137
|
+
? html `
|
|
138
|
+
<md-text-button
|
|
139
|
+
@click=${() => {
|
|
140
|
+
assistant({ level: tone, message, detail, ex });
|
|
141
|
+
this._snackbar.close();
|
|
142
|
+
}}
|
|
143
|
+
>
|
|
144
|
+
<md-icon slot="icon">auto_awesome</md-icon>
|
|
145
|
+
${i18next.t('text.ask ai')}
|
|
146
|
+
</md-text-button>
|
|
147
|
+
`
|
|
148
|
+
: nothing}
|
|
149
|
+
</div>
|
|
150
|
+
`
|
|
151
|
+
: nothing}
|
|
152
|
+
</div>
|
|
153
|
+
|
|
154
|
+
<md-icon
|
|
155
|
+
close
|
|
156
|
+
role="button"
|
|
157
|
+
tabindex="0"
|
|
158
|
+
title=${i18next.t('text.close')}
|
|
159
|
+
@click=${() => this._snackbar.close()}
|
|
160
|
+
>close</md-icon
|
|
161
|
+
>
|
|
95
162
|
`;
|
|
96
163
|
}
|
|
97
164
|
stateChanged(state) {
|
|
98
|
-
var {
|
|
165
|
+
var { snackbarOpened } = state.snackbar || {};
|
|
99
166
|
// 새로 열릴 때 이전 스와이프 잔상 초기화
|
|
100
167
|
if (snackbarOpened && !this.active) {
|
|
101
168
|
this.dragStartX = null;
|
|
@@ -106,6 +173,7 @@ let SnackBar = SnackBar_1 = class SnackBar extends LitElement {
|
|
|
106
173
|
}
|
|
107
174
|
willUpdate() {
|
|
108
175
|
this.active = this._snackbar.opened;
|
|
176
|
+
this.level = this._snackbar.level || 'info';
|
|
109
177
|
}
|
|
110
178
|
};
|
|
111
179
|
SnackBar.styles = css `
|
|
@@ -120,23 +188,46 @@ SnackBar.styles = css `
|
|
|
120
188
|
*
|
|
121
189
|
* 앱이 필요하면 아래 var 로 조정한다.
|
|
122
190
|
*/
|
|
123
|
-
|
|
191
|
+
/*
|
|
192
|
+
* 글자색은 한 기준(--ox-snack-bar-color)에서 단계를 파생시킨다. 임의의 rgba 를 층마다
|
|
193
|
+
* 따로 적으면 앱이 색을 바꿀 때 한 층만 바뀌어 위계가 깨진다.
|
|
194
|
+
* 1층 기준색 · 2층 72% · 3층 60%
|
|
195
|
+
*/
|
|
196
|
+
--ox-snack-bar-background: rgba(28, 28, 30, 0.96);
|
|
124
197
|
--ox-snack-bar-color: rgba(255, 255, 255, 0.95);
|
|
198
|
+
--ox-snack-bar-supporting-color: color-mix(in srgb, var(--ox-snack-bar-color) 72%, transparent);
|
|
199
|
+
--ox-snack-bar-technical-color: color-mix(in srgb, var(--ox-snack-bar-color) 60%, transparent);
|
|
125
200
|
--ox-snack-bar-radius: var(--md-sys-shape-corner-medium, 8px);
|
|
126
|
-
--ox-snack-bar-padding: 12px;
|
|
127
|
-
|
|
201
|
+
--ox-snack-bar-padding: 12px 14px;
|
|
202
|
+
/*
|
|
203
|
+
* 방향이 있는 그림자여야 떠 있는 느낌이 난다. 이전 값(0 0 10px)은 사방으로 번져
|
|
204
|
+
* 표면이 화면에 붙어 있는 것처럼 보였다. Material elevation 3 에 준한다.
|
|
205
|
+
*/
|
|
206
|
+
--ox-snack-bar-shadow: 0 6px 16px rgba(0, 0, 0, 0.32), 0 2px 6px rgba(0, 0, 0, 0.24);
|
|
207
|
+
/*
|
|
208
|
+
* 레벨 강조색은 **아이콘에만** 쓴다. 배경은 네 레벨 공통(어두운 표면)으로 두었다 —
|
|
209
|
+
* 토스트는 어느 화면 위에도 뜨므로 배경이 레벨마다 흔들리면 안 되고, 띠·패턴 같은 장식을
|
|
210
|
+
* 더하면 짧은 알림에 비해 번잡해진다. 성격은 아이콘 하나로 충분히 전달된다.
|
|
211
|
+
*/
|
|
212
|
+
--ox-snack-bar-accent: var(--status-info-color, #398ace);
|
|
128
213
|
|
|
129
|
-
display:
|
|
214
|
+
display: flex;
|
|
215
|
+
align-items: flex-start;
|
|
216
|
+
gap: 10px;
|
|
130
217
|
position: fixed;
|
|
131
218
|
top: 99%;
|
|
132
219
|
left: 0;
|
|
133
220
|
right: 0;
|
|
221
|
+
overflow: hidden;
|
|
134
222
|
border-radius: var(--ox-snack-bar-radius);
|
|
135
223
|
padding: var(--ox-snack-bar-padding);
|
|
136
224
|
color: var(--ox-snack-bar-color);
|
|
137
225
|
background-color: var(--ox-snack-bar-background);
|
|
138
226
|
box-shadow: var(--ox-snack-bar-shadow);
|
|
139
|
-
|
|
227
|
+
/* 왼쪽 정렬 — 이전에는 center 라 두 줄 이상이 되면 줄마다 시작점이 달라 읽기가 나빴다 */
|
|
228
|
+
text-align: left;
|
|
229
|
+
/* 문장 단위로 균형있게 끊는다(지원 브라우저에서만 적용, 그 외 무시) */
|
|
230
|
+
text-wrap: pretty;
|
|
140
231
|
touch-action: pan-y;
|
|
141
232
|
will-change: transform, opacity;
|
|
142
233
|
transform: translate3d(0, 0, 0);
|
|
@@ -145,12 +236,6 @@ SnackBar.styles = css `
|
|
|
145
236
|
visibility: hidden;
|
|
146
237
|
}
|
|
147
238
|
|
|
148
|
-
md-filled-button {
|
|
149
|
-
/* 호스트 테마가 없는 환경(Storybook·단독)에서도 무너지지 않도록 fallback 을 둔다 */
|
|
150
|
-
margin-top: var(--spacing-medium, 8px);
|
|
151
|
-
text-transform: capitalize;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
239
|
:host([active]) {
|
|
155
240
|
visibility: visible;
|
|
156
241
|
transform: translate3d(var(--snackbar-drag-x, 0), -100%, 0);
|
|
@@ -163,33 +248,140 @@ SnackBar.styles = css `
|
|
|
163
248
|
}
|
|
164
249
|
|
|
165
250
|
md-icon {
|
|
166
|
-
|
|
167
|
-
--md-icon-size:
|
|
168
|
-
|
|
251
|
+
flex: none;
|
|
252
|
+
--md-icon-size: 20px;
|
|
253
|
+
/*
|
|
254
|
+
* 아이콘을 headline 첫 줄의 **행 상자 높이**에 맞춘다. 이전에는 margin-top 을 눈대중으로
|
|
255
|
+
* 1px 준 것이라 폰트가 바뀌면 어긋났다. 행간과 같은 높이를 주고 그 안에서 가운데 두면
|
|
256
|
+
* 타입스케일이 달라져도 함께 움직인다.
|
|
257
|
+
*/
|
|
258
|
+
height: var(--md-sys-typescale-title-small-line-height, 1.25rem);
|
|
259
|
+
display: flex;
|
|
260
|
+
align-items: center;
|
|
261
|
+
color: var(--ox-snack-bar-accent);
|
|
169
262
|
}
|
|
170
263
|
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
color: var(--ox-snack-bar-
|
|
264
|
+
md-icon[close] {
|
|
265
|
+
cursor: pointer;
|
|
266
|
+
color: var(--ox-snack-bar-supporting-color);
|
|
267
|
+
--md-icon-size: 18px;
|
|
268
|
+
}
|
|
269
|
+
md-icon[close]:hover {
|
|
270
|
+
color: var(--ox-snack-bar-color);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
[body] {
|
|
274
|
+
flex: 1;
|
|
275
|
+
min-width: 0;
|
|
174
276
|
}
|
|
175
277
|
|
|
176
|
-
|
|
177
|
-
|
|
278
|
+
/*
|
|
279
|
+
* 세 층의 크기·굵기는 임의 px 이 아니라 테마의 타입스케일에서 가져온다.
|
|
280
|
+
* 앱 폰트가 바뀌어도 위계가 유지되고, 다른 화면의 본문과 리듬이 맞는다.
|
|
281
|
+
*
|
|
282
|
+
* 1층 title-small (0.875rem / 1.25rem, 500) — 무슨 일이 일어났는가
|
|
283
|
+
* 2층 body-small (0.75rem / 1rem, 400) — 왜·어디서
|
|
284
|
+
* 3층 label-small (0.6875rem) — 기술 원문
|
|
285
|
+
*/
|
|
286
|
+
[headline] {
|
|
287
|
+
font-family: var(--md-sys-typescale-title-small-font, var(--theme-font, inherit));
|
|
288
|
+
font-size: var(--md-sys-typescale-title-small-size, 0.875rem);
|
|
289
|
+
line-height: var(--md-sys-typescale-title-small-line-height, 1.25rem);
|
|
290
|
+
font-weight: var(--md-sys-typescale-title-small-weight, 500);
|
|
291
|
+
/*
|
|
292
|
+
* 단어 중간을 끊지 않는다. anywhere 는 필요 없는 곳에서도 글자를 쪼개 읽기가 나빠진다 —
|
|
293
|
+
* 긴 토큰(URL·ID)만 끊기게 break-word 를 쓴다. 기술 원문에서만 anywhere 를 쓴다.
|
|
294
|
+
*/
|
|
295
|
+
overflow-wrap: break-word;
|
|
178
296
|
}
|
|
179
297
|
|
|
180
|
-
|
|
181
|
-
|
|
298
|
+
[supporting] {
|
|
299
|
+
margin-top: 2px;
|
|
300
|
+
font-family: var(--md-sys-typescale-body-small-font, var(--theme-font, inherit));
|
|
301
|
+
font-size: var(--md-sys-typescale-body-small-size, 0.75rem);
|
|
302
|
+
line-height: var(--md-sys-typescale-body-small-line-height, 1rem);
|
|
303
|
+
font-weight: var(--md-sys-typescale-body-small-weight, 400);
|
|
304
|
+
color: var(--ox-snack-bar-supporting-color);
|
|
305
|
+
overflow-wrap: break-word;
|
|
306
|
+
/* 길어도 토스트가 화면을 삼키지 않게 — 3줄에서 자른다 */
|
|
307
|
+
display: -webkit-box;
|
|
308
|
+
-webkit-box-orient: vertical;
|
|
309
|
+
-webkit-line-clamp: 3;
|
|
310
|
+
overflow: hidden;
|
|
182
311
|
}
|
|
183
312
|
|
|
184
|
-
|
|
185
|
-
|
|
313
|
+
/* 3층 — 기술 원문. 접힌 상태가 기본이고 필요한 사람만 펼친다 */
|
|
314
|
+
[technical] {
|
|
315
|
+
margin-top: 6px;
|
|
316
|
+
font-size: var(--md-sys-typescale-label-small-size, 0.6875rem);
|
|
317
|
+
line-height: var(--md-sys-typescale-label-small-line-height, 1rem);
|
|
318
|
+
}
|
|
319
|
+
[technical] summary {
|
|
320
|
+
cursor: pointer;
|
|
321
|
+
color: var(--ox-snack-bar-supporting-color);
|
|
322
|
+
list-style: none;
|
|
323
|
+
}
|
|
324
|
+
[technical] summary::-webkit-details-marker {
|
|
325
|
+
display: none;
|
|
326
|
+
}
|
|
327
|
+
[technical] summary::before {
|
|
328
|
+
content: '▸';
|
|
329
|
+
display: inline-block;
|
|
330
|
+
margin-right: 4px;
|
|
331
|
+
transition: transform 0.15s;
|
|
332
|
+
}
|
|
333
|
+
[technical][open] summary::before {
|
|
334
|
+
transform: rotate(90deg);
|
|
335
|
+
}
|
|
336
|
+
[technical] summary:hover {
|
|
337
|
+
color: var(--ox-snack-bar-color);
|
|
338
|
+
}
|
|
339
|
+
[technical] pre {
|
|
340
|
+
margin: 6px 0 0;
|
|
341
|
+
padding: 8px;
|
|
342
|
+
max-height: 180px;
|
|
343
|
+
overflow: auto;
|
|
344
|
+
border-radius: 4px;
|
|
345
|
+
background-color: color-mix(in srgb, var(--ox-snack-bar-color) 8%, transparent);
|
|
346
|
+
color: var(--ox-snack-bar-technical-color);
|
|
347
|
+
font-family: 'SF Mono', Consolas, monospace;
|
|
348
|
+
font-size: var(--md-sys-typescale-label-small-size, 0.6875rem);
|
|
349
|
+
line-height: 1.5;
|
|
186
350
|
white-space: pre-wrap;
|
|
351
|
+
/* 원문은 긴 토큰이 흔하므로 여기서는 어디서든 끊는 것이 맞다 */
|
|
352
|
+
overflow-wrap: anywhere;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
[actions] {
|
|
356
|
+
display: flex;
|
|
357
|
+
gap: 4px;
|
|
358
|
+
margin: 6px 0 0 -8px;
|
|
359
|
+
--md-text-button-label-text-color: var(--ox-snack-bar-accent);
|
|
360
|
+
--md-text-button-label-text-size: var(--md-sys-typescale-label-large-size, 0.875rem);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/*
|
|
364
|
+
* 레벨별 강조색 — 프레임워크 상태 색을 그대로 재사용한다.
|
|
365
|
+
* 레벨은 호스트 속성으로 반영한다(:has() 에 의존하지 않는다).
|
|
366
|
+
*/
|
|
367
|
+
:host([level='success']) {
|
|
368
|
+
--ox-snack-bar-accent: var(--ox-snack-bar-success-color, var(--status-success-color, #35a24a));
|
|
369
|
+
}
|
|
370
|
+
:host([level='info']) {
|
|
371
|
+
--ox-snack-bar-accent: var(--ox-snack-bar-info-color, var(--status-info-color, #398ace));
|
|
372
|
+
}
|
|
373
|
+
:host([level='warn']) {
|
|
374
|
+
--ox-snack-bar-accent: var(--ox-snack-bar-warn-color, var(--status-warning-color, #ee8d03));
|
|
375
|
+
}
|
|
376
|
+
:host([level='error']) {
|
|
377
|
+
--ox-snack-bar-accent: var(--ox-snack-bar-error-color, var(--status-danger-color, #d14946));
|
|
187
378
|
}
|
|
188
379
|
|
|
189
380
|
@media (min-width: 460px) {
|
|
190
381
|
:host {
|
|
382
|
+
/* 80% 는 큰 화면에서 한 줄이 지나치게 길어져 읽기 리듬이 깨진다 */
|
|
191
383
|
min-width: 320px;
|
|
192
|
-
max-width:
|
|
384
|
+
max-width: 480px;
|
|
193
385
|
margin: auto;
|
|
194
386
|
width: fit-content;
|
|
195
387
|
}
|
|
@@ -197,9 +389,19 @@ SnackBar.styles = css `
|
|
|
197
389
|
`;
|
|
198
390
|
// 이 거리(px) 이상 스와이프하면 닫힘 처리
|
|
199
391
|
SnackBar.DISMISS_THRESHOLD = 80;
|
|
392
|
+
/** 레벨별 아이콘. 성격을 한눈에 알리는 첫 신호. */
|
|
393
|
+
SnackBar.ICONS = {
|
|
394
|
+
success: 'check_circle',
|
|
395
|
+
info: 'info',
|
|
396
|
+
warn: 'warning',
|
|
397
|
+
error: 'error'
|
|
398
|
+
};
|
|
200
399
|
__decorate([
|
|
201
400
|
property({ type: Boolean, reflect: true })
|
|
202
401
|
], SnackBar.prototype, "active", void 0);
|
|
402
|
+
__decorate([
|
|
403
|
+
property({ type: String, reflect: true })
|
|
404
|
+
], SnackBar.prototype, "level", void 0);
|
|
203
405
|
__decorate([
|
|
204
406
|
property({ type: Object })
|
|
205
407
|
], SnackBar.prototype, "action", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ox-snack-bar.js","sourceRoot":"","sources":["../../../src/layouts/ox-snack-bar.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/web/button/filled-button.js'\nimport '@material/web/icon/icon.js'\n\nimport { css, html, LitElement, nothing } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\nimport { SnackbarController } from '@operato/shell'\n\n@customElement('ox-snack-bar')\nclass SnackBar extends LitElement {\n static styles = css`\n :host {\n /*\n * 토스트는 화면 위에 잠깐 떠서 주의를 끄는 요소이므로 **테마와 무관하게 어두운 표면**을 유지한다\n * (Material 스낵바 관례).\n *\n * 이전에는 --md-sys-color-inverse-surface 를 썼는데, inverse-* 는 스펙상 \"현재 테마의 반대\"라\n * 라이트에서는 어둡지만 **다크에서 밝게 반전**되어 눈에 튀었다.\n * → 반투명 어두운 값을 기본값으로 두면 어떤 브랜드 팔레트에서도 안정적이고, .dark 패치도 불필요하다.\n *\n * 앱이 필요하면 아래 var 로 조정한다.\n */\n --ox-snack-bar-background: rgba(0, 0, 0, 0.85);\n --ox-snack-bar-color: rgba(255, 255, 255, 0.95);\n --ox-snack-bar-radius: var(--md-sys-shape-corner-medium, 8px);\n --ox-snack-bar-padding: 12px;\n --ox-snack-bar-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n\n display: block;\n position: fixed;\n top: 99%;\n left: 0;\n right: 0;\n border-radius: var(--ox-snack-bar-radius);\n padding: var(--ox-snack-bar-padding);\n color: var(--ox-snack-bar-color);\n background-color: var(--ox-snack-bar-background);\n box-shadow: var(--ox-snack-bar-shadow);\n text-align: center;\n touch-action: pan-y;\n will-change: transform, opacity;\n transform: translate3d(0, 0, 0);\n transition-property: visibility, transform, opacity;\n transition-duration: 0.2s;\n visibility: hidden;\n }\n\n md-filled-button {\n /* 호스트 테마가 없는 환경(Storybook·단독)에서도 무너지지 않도록 fallback 을 둔다 */\n margin-top: var(--spacing-medium, 8px);\n text-transform: capitalize;\n }\n\n :host([active]) {\n visibility: visible;\n transform: translate3d(var(--snackbar-drag-x, 0), -100%, 0);\n opacity: var(--snackbar-opacity, 1);\n }\n\n /* 스와이프 중에는 손가락을 즉시 따라오도록 transition 제거 */\n :host([dragging]) {\n transition: none;\n }\n\n md-icon {\n vertical-align: middle;\n --md-icon-size: 1.8em;\n height: fit-content;\n }\n\n /* 상태 아이콘 색 — 어두운 표면 위에 놓이므로 앱이 조정할 수 있게 노출한다(기본값은 기존 값 유지) */\n .info {\n color: var(--ox-snack-bar-info-color, var(--status-info-color));\n }\n\n .warn {\n color: var(--ox-snack-bar-warn-color, var(--status-warning-color));\n }\n\n .error {\n color: var(--ox-snack-bar-error-color, var(--status-danger-color));\n }\n\n pre {\n font-family: inherit;\n white-space: pre-wrap;\n }\n\n @media (min-width: 460px) {\n :host {\n min-width: 320px;\n max-width: 80%;\n margin: auto;\n width: fit-content;\n }\n }\n `\n\n private _snackbar = new SnackbarController(this)\n\n @property({ type: Boolean, reflect: true }) active: boolean = false\n @property({ type: Object }) action: any\n\n // 스와이프 시작 X 좌표 (드래그 중이 아니면 null)\n private dragStartX: number | null = null\n private dragX: number = 0\n // 이 거리(px) 이상 스와이프하면 닫힘 처리\n private static readonly DISMISS_THRESHOLD = 80\n\n connectedCallback() {\n super.connectedCallback()\n // Pointer Events가 터치/마우스를 모두 커버 (스크롤 구분은 touch-action: pan-y가 담당)\n this.addEventListener('pointerdown', this.onDragStart)\n this.addEventListener('pointermove', this.onDragMove)\n this.addEventListener('pointerup', this.onDragEnd)\n }\n\n // CSS 변수로 스와이프 위치/투명도 반영\n private applyDrag(x: number, opacity: number = 1) {\n this.style.setProperty('--snackbar-drag-x', `${x}px`)\n this.style.setProperty('--snackbar-opacity', `${opacity}`)\n }\n\n private onDragStart = (e: PointerEvent) => {\n if (!this.active) return\n this.dragStartX = e.clientX\n this.dragX = 0\n this.setAttribute('dragging', '')\n }\n\n private onDragMove = (e: PointerEvent) => {\n if (this.dragStartX === null) return\n this.dragX = e.clientX - this.dragStartX\n // 스와이프 거리에 따라 점점 투명하게\n const opacity = Math.max(0, 1 - Math.abs(this.dragX) / (SnackBar.DISMISS_THRESHOLD * 2.5))\n this.applyDrag(this.dragX, opacity)\n }\n\n private onDragEnd = () => {\n if (this.dragStartX === null) return\n const moved = Math.abs(this.dragX)\n this.dragStartX = null\n this.removeAttribute('dragging')\n\n if (moved >= SnackBar.DISMISS_THRESHOLD) {\n // 스와이프한 방향으로 밀어내며 닫기\n this.applyDrag(this.dragX > 0 ? window.innerWidth : -window.innerWidth, 0)\n window.setTimeout(() => {\n // transition을 끈 채로 닫아서 아래로 떨어지는 기본 닫기 애니메이션을 숨김\n this.setAttribute('dragging', '')\n this._snackbar.close()\n requestAnimationFrame(() => {\n this.applyDrag(0)\n this.removeAttribute('dragging')\n })\n }, 200)\n } else {\n // 임계값 미달이면 원위치로 복귀\n this.applyDrag(0)\n }\n }\n\n render() {\n const { level, message, action } = this._snackbar\n\n return html`\n ${level\n ? html` <md-icon class=${level}\n >${level == 'info'\n ? html` notification_important `\n : level == 'warn'\n ? html` warning `\n : level == 'error'\n ? html` error `\n : html``}</md-icon\n >`\n : nothing}\n <pre>${message}</pre>\n ${action && action.label\n ? html`\n <md-filled-button\n @click=${() => {\n this._snackbar.close()\n action.callback?.()\n }}\n >${action.label}</md-filled-button\n >\n `\n : html``}\n `\n }\n\n stateChanged(state: any) {\n var { level, message, snackbarOpened, action } = state.snackbar || {}\n\n // 새로 열릴 때 이전 스와이프 잔상 초기화\n if (snackbarOpened && !this.active) {\n this.dragStartX = null\n this.dragX = 0\n this.removeAttribute('dragging')\n this.applyDrag(0)\n }\n }\n\n protected willUpdate() {\n this.active = this._snackbar.opened\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ox-snack-bar.js","sourceRoot":"","sources":["../../../src/layouts/ox-snack-bar.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/web/button/text-button.js'\nimport '@material/web/icon/icon.js'\n\nimport { css, html, LitElement, nothing } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\nimport { i18next } from '@operato/i18n'\nimport { SnackbarController } from '@operato/shell'\n\nimport { resolveNotifyAssistant } from '../actions/snackbar.js'\n\n@customElement('ox-snack-bar')\nclass SnackBar extends LitElement {\n static styles = css`\n :host {\n /*\n * 토스트는 화면 위에 잠깐 떠서 주의를 끄는 요소이므로 **테마와 무관하게 어두운 표면**을 유지한다\n * (Material 스낵바 관례).\n *\n * 이전에는 --md-sys-color-inverse-surface 를 썼는데, inverse-* 는 스펙상 \"현재 테마의 반대\"라\n * 라이트에서는 어둡지만 **다크에서 밝게 반전**되어 눈에 튀었다.\n * → 반투명 어두운 값을 기본값으로 두면 어떤 브랜드 팔레트에서도 안정적이고, .dark 패치도 불필요하다.\n *\n * 앱이 필요하면 아래 var 로 조정한다.\n */\n /*\n * 글자색은 한 기준(--ox-snack-bar-color)에서 단계를 파생시킨다. 임의의 rgba 를 층마다\n * 따로 적으면 앱이 색을 바꿀 때 한 층만 바뀌어 위계가 깨진다.\n * 1층 기준색 · 2층 72% · 3층 60%\n */\n --ox-snack-bar-background: rgba(28, 28, 30, 0.96);\n --ox-snack-bar-color: rgba(255, 255, 255, 0.95);\n --ox-snack-bar-supporting-color: color-mix(in srgb, var(--ox-snack-bar-color) 72%, transparent);\n --ox-snack-bar-technical-color: color-mix(in srgb, var(--ox-snack-bar-color) 60%, transparent);\n --ox-snack-bar-radius: var(--md-sys-shape-corner-medium, 8px);\n --ox-snack-bar-padding: 12px 14px;\n /*\n * 방향이 있는 그림자여야 떠 있는 느낌이 난다. 이전 값(0 0 10px)은 사방으로 번져\n * 표면이 화면에 붙어 있는 것처럼 보였다. Material elevation 3 에 준한다.\n */\n --ox-snack-bar-shadow: 0 6px 16px rgba(0, 0, 0, 0.32), 0 2px 6px rgba(0, 0, 0, 0.24);\n /*\n * 레벨 강조색은 **아이콘에만** 쓴다. 배경은 네 레벨 공통(어두운 표면)으로 두었다 —\n * 토스트는 어느 화면 위에도 뜨므로 배경이 레벨마다 흔들리면 안 되고, 띠·패턴 같은 장식을\n * 더하면 짧은 알림에 비해 번잡해진다. 성격은 아이콘 하나로 충분히 전달된다.\n */\n --ox-snack-bar-accent: var(--status-info-color, #398ace);\n\n display: flex;\n align-items: flex-start;\n gap: 10px;\n position: fixed;\n top: 99%;\n left: 0;\n right: 0;\n overflow: hidden;\n border-radius: var(--ox-snack-bar-radius);\n padding: var(--ox-snack-bar-padding);\n color: var(--ox-snack-bar-color);\n background-color: var(--ox-snack-bar-background);\n box-shadow: var(--ox-snack-bar-shadow);\n /* 왼쪽 정렬 — 이전에는 center 라 두 줄 이상이 되면 줄마다 시작점이 달라 읽기가 나빴다 */\n text-align: left;\n /* 문장 단위로 균형있게 끊는다(지원 브라우저에서만 적용, 그 외 무시) */\n text-wrap: pretty;\n touch-action: pan-y;\n will-change: transform, opacity;\n transform: translate3d(0, 0, 0);\n transition-property: visibility, transform, opacity;\n transition-duration: 0.2s;\n visibility: hidden;\n }\n\n :host([active]) {\n visibility: visible;\n transform: translate3d(var(--snackbar-drag-x, 0), -100%, 0);\n opacity: var(--snackbar-opacity, 1);\n }\n\n /* 스와이프 중에는 손가락을 즉시 따라오도록 transition 제거 */\n :host([dragging]) {\n transition: none;\n }\n\n md-icon {\n flex: none;\n --md-icon-size: 20px;\n /*\n * 아이콘을 headline 첫 줄의 **행 상자 높이**에 맞춘다. 이전에는 margin-top 을 눈대중으로\n * 1px 준 것이라 폰트가 바뀌면 어긋났다. 행간과 같은 높이를 주고 그 안에서 가운데 두면\n * 타입스케일이 달라져도 함께 움직인다.\n */\n height: var(--md-sys-typescale-title-small-line-height, 1.25rem);\n display: flex;\n align-items: center;\n color: var(--ox-snack-bar-accent);\n }\n\n md-icon[close] {\n cursor: pointer;\n color: var(--ox-snack-bar-supporting-color);\n --md-icon-size: 18px;\n }\n md-icon[close]:hover {\n color: var(--ox-snack-bar-color);\n }\n\n [body] {\n flex: 1;\n min-width: 0;\n }\n\n /*\n * 세 층의 크기·굵기는 임의 px 이 아니라 테마의 타입스케일에서 가져온다.\n * 앱 폰트가 바뀌어도 위계가 유지되고, 다른 화면의 본문과 리듬이 맞는다.\n *\n * 1층 title-small (0.875rem / 1.25rem, 500) — 무슨 일이 일어났는가\n * 2층 body-small (0.75rem / 1rem, 400) — 왜·어디서\n * 3층 label-small (0.6875rem) — 기술 원문\n */\n [headline] {\n font-family: var(--md-sys-typescale-title-small-font, var(--theme-font, inherit));\n font-size: var(--md-sys-typescale-title-small-size, 0.875rem);\n line-height: var(--md-sys-typescale-title-small-line-height, 1.25rem);\n font-weight: var(--md-sys-typescale-title-small-weight, 500);\n /*\n * 단어 중간을 끊지 않는다. anywhere 는 필요 없는 곳에서도 글자를 쪼개 읽기가 나빠진다 —\n * 긴 토큰(URL·ID)만 끊기게 break-word 를 쓴다. 기술 원문에서만 anywhere 를 쓴다.\n */\n overflow-wrap: break-word;\n }\n\n [supporting] {\n margin-top: 2px;\n font-family: var(--md-sys-typescale-body-small-font, var(--theme-font, inherit));\n font-size: var(--md-sys-typescale-body-small-size, 0.75rem);\n line-height: var(--md-sys-typescale-body-small-line-height, 1rem);\n font-weight: var(--md-sys-typescale-body-small-weight, 400);\n color: var(--ox-snack-bar-supporting-color);\n overflow-wrap: break-word;\n /* 길어도 토스트가 화면을 삼키지 않게 — 3줄에서 자른다 */\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 3;\n overflow: hidden;\n }\n\n /* 3층 — 기술 원문. 접힌 상태가 기본이고 필요한 사람만 펼친다 */\n [technical] {\n margin-top: 6px;\n font-size: var(--md-sys-typescale-label-small-size, 0.6875rem);\n line-height: var(--md-sys-typescale-label-small-line-height, 1rem);\n }\n [technical] summary {\n cursor: pointer;\n color: var(--ox-snack-bar-supporting-color);\n list-style: none;\n }\n [technical] summary::-webkit-details-marker {\n display: none;\n }\n [technical] summary::before {\n content: '▸';\n display: inline-block;\n margin-right: 4px;\n transition: transform 0.15s;\n }\n [technical][open] summary::before {\n transform: rotate(90deg);\n }\n [technical] summary:hover {\n color: var(--ox-snack-bar-color);\n }\n [technical] pre {\n margin: 6px 0 0;\n padding: 8px;\n max-height: 180px;\n overflow: auto;\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ox-snack-bar-color) 8%, transparent);\n color: var(--ox-snack-bar-technical-color);\n font-family: 'SF Mono', Consolas, monospace;\n font-size: var(--md-sys-typescale-label-small-size, 0.6875rem);\n line-height: 1.5;\n white-space: pre-wrap;\n /* 원문은 긴 토큰이 흔하므로 여기서는 어디서든 끊는 것이 맞다 */\n overflow-wrap: anywhere;\n }\n\n [actions] {\n display: flex;\n gap: 4px;\n margin: 6px 0 0 -8px;\n --md-text-button-label-text-color: var(--ox-snack-bar-accent);\n --md-text-button-label-text-size: var(--md-sys-typescale-label-large-size, 0.875rem);\n }\n\n /*\n * 레벨별 강조색 — 프레임워크 상태 색을 그대로 재사용한다.\n * 레벨은 호스트 속성으로 반영한다(:has() 에 의존하지 않는다).\n */\n :host([level='success']) {\n --ox-snack-bar-accent: var(--ox-snack-bar-success-color, var(--status-success-color, #35a24a));\n }\n :host([level='info']) {\n --ox-snack-bar-accent: var(--ox-snack-bar-info-color, var(--status-info-color, #398ace));\n }\n :host([level='warn']) {\n --ox-snack-bar-accent: var(--ox-snack-bar-warn-color, var(--status-warning-color, #ee8d03));\n }\n :host([level='error']) {\n --ox-snack-bar-accent: var(--ox-snack-bar-error-color, var(--status-danger-color, #d14946));\n }\n\n @media (min-width: 460px) {\n :host {\n /* 80% 는 큰 화면에서 한 줄이 지나치게 길어져 읽기 리듬이 깨진다 */\n min-width: 320px;\n max-width: 480px;\n margin: auto;\n width: fit-content;\n }\n }\n `\n\n private _snackbar = new SnackbarController(this)\n\n @property({ type: Boolean, reflect: true }) active: boolean = false\n /* 레벨을 호스트 속성으로 반영해 CSS 가 강조색을 고르게 한다 */\n @property({ type: String, reflect: true }) level: string = 'info'\n @property({ type: Object }) action: any\n\n // 스와이프 시작 X 좌표 (드래그 중이 아니면 null)\n private dragStartX: number | null = null\n private dragX: number = 0\n // 이 거리(px) 이상 스와이프하면 닫힘 처리\n private static readonly DISMISS_THRESHOLD = 80\n\n connectedCallback() {\n super.connectedCallback()\n // Pointer Events가 터치/마우스를 모두 커버 (스크롤 구분은 touch-action: pan-y가 담당)\n this.addEventListener('pointerdown', this.onDragStart)\n this.addEventListener('pointermove', this.onDragMove)\n this.addEventListener('pointerup', this.onDragEnd)\n }\n\n // CSS 변수로 스와이프 위치/투명도 반영\n private applyDrag(x: number, opacity: number = 1) {\n this.style.setProperty('--snackbar-drag-x', `${x}px`)\n this.style.setProperty('--snackbar-opacity', `${opacity}`)\n }\n\n private onDragStart = (e: PointerEvent) => {\n if (!this.active) return\n this.dragStartX = e.clientX\n this.dragX = 0\n this.setAttribute('dragging', '')\n }\n\n private onDragMove = (e: PointerEvent) => {\n if (this.dragStartX === null) return\n this.dragX = e.clientX - this.dragStartX\n // 스와이프 거리에 따라 점점 투명하게\n const opacity = Math.max(0, 1 - Math.abs(this.dragX) / (SnackBar.DISMISS_THRESHOLD * 2.5))\n this.applyDrag(this.dragX, opacity)\n }\n\n private onDragEnd = () => {\n if (this.dragStartX === null) return\n const moved = Math.abs(this.dragX)\n this.dragStartX = null\n this.removeAttribute('dragging')\n\n if (moved >= SnackBar.DISMISS_THRESHOLD) {\n // 스와이프한 방향으로 밀어내며 닫기\n this.applyDrag(this.dragX > 0 ? window.innerWidth : -window.innerWidth, 0)\n window.setTimeout(() => {\n // transition을 끈 채로 닫아서 아래로 떨어지는 기본 닫기 애니메이션을 숨김\n this.setAttribute('dragging', '')\n this._snackbar.close()\n requestAnimationFrame(() => {\n this.applyDrag(0)\n this.removeAttribute('dragging')\n })\n }, 200)\n } else {\n // 임계값 미달이면 원위치로 복귀\n this.applyDrag(0)\n }\n }\n\n /** 레벨별 아이콘. 성격을 한눈에 알리는 첫 신호. */\n private static readonly ICONS: Record<string, string> = {\n success: 'check_circle',\n info: 'info',\n warn: 'warning',\n error: 'error'\n }\n\n /** 기술 원문을 사람이 읽을 수 있는 문자열로. Error 는 message+stack, 그 외는 JSON. */\n private formatEx(ex: any): string {\n if (!ex) return ''\n if (typeof ex === 'string') return ex\n if (ex instanceof Error) return ex.stack || `${ex.name}: ${ex.message}`\n try {\n return JSON.stringify(ex, null, 2)\n } catch {\n return String(ex)\n }\n }\n\n render() {\n const { level, message, detail, ex, action } = this._snackbar\n const tone = level || 'info'\n const exText = this.formatEx(ex)\n /*\n * 주입된 도움 함수. AI 가 없는 앱이거나 설정이 죽어 있으면 null 이고, 그때는 버튼을 그리지\n * 않는다 — 눌러도 아무 일 없는 버튼을 보여주지 않는다.\n */\n const assistant = resolveNotifyAssistant()\n\n return html`\n <md-icon class=${tone} aria-hidden=\"true\">${SnackBar.ICONS[tone] ?? 'info'}</md-icon>\n\n <div body>\n <!-- 1층: 무슨 일이 일어났는가 -->\n <div headline>${message}</div>\n\n <!-- 2층: 왜·어디서. 낮은 강조로 구분한다 -->\n ${detail ? html`<div supporting>${detail}</div>` : nothing}\n\n <!-- 3층: 기술 원문. 접힌 채 두고 필요한 사람만 펼친다 -->\n ${exText\n ? html`\n <details technical>\n <summary>${i18next.t('text.technical detail')}</summary>\n <pre>${exText}</pre>\n </details>\n `\n : nothing}\n\n ${action?.label || (assistant && (tone === 'error' || tone === 'warn'))\n ? html`\n <div actions>\n ${action?.label\n ? html`\n <md-text-button\n @click=${() => {\n this._snackbar.close()\n action.callback?.()\n }}\n >${action.label}</md-text-button\n >\n `\n : nothing}\n <!--\n 오류·경고에서 곧바로 AI 도움으로 넘어간다. 핸들러가 등록된 앱에서만 나타나므로\n 눌러도 아무 일 없는 버튼이 생기지 않는다.\n -->\n ${assistant && (tone === 'error' || tone === 'warn')\n ? html`\n <md-text-button\n @click=${() => {\n assistant({ level: tone as any, message, detail, ex })\n this._snackbar.close()\n }}\n >\n <md-icon slot=\"icon\">auto_awesome</md-icon>\n ${i18next.t('text.ask ai')}\n </md-text-button>\n `\n : nothing}\n </div>\n `\n : nothing}\n </div>\n\n <md-icon\n close\n role=\"button\"\n tabindex=\"0\"\n title=${i18next.t('text.close')}\n @click=${() => this._snackbar.close()}\n >close</md-icon\n >\n `\n }\n\n stateChanged(state: any) {\n var { snackbarOpened } = state.snackbar || {}\n\n // 새로 열릴 때 이전 스와이프 잔상 초기화\n if (snackbarOpened && !this.active) {\n this.dragStartX = null\n this.dragX = 0\n this.removeAttribute('dragging')\n this.applyDrag(0)\n }\n }\n\n protected willUpdate() {\n this.active = this._snackbar.opened\n this.level = this._snackbar.level || 'info'\n }\n}\n"]}
|
|
@@ -3,16 +3,22 @@ declare const snackbar: (state: {
|
|
|
3
3
|
snackbarOpened: boolean;
|
|
4
4
|
level: string;
|
|
5
5
|
message: string;
|
|
6
|
+
detail: string;
|
|
7
|
+
ex: any;
|
|
6
8
|
action: {};
|
|
7
9
|
} | undefined, action: SnackbarAction) => {
|
|
8
10
|
snackbarOpened: boolean;
|
|
9
11
|
level: string;
|
|
10
12
|
message: string;
|
|
13
|
+
detail: string;
|
|
14
|
+
ex: any;
|
|
11
15
|
action: {};
|
|
12
16
|
} | {
|
|
13
17
|
snackbarOpened: boolean;
|
|
14
18
|
level: import("../index.js").NotificationLevel;
|
|
15
19
|
message: string | undefined;
|
|
20
|
+
detail: string;
|
|
21
|
+
ex: any;
|
|
16
22
|
action: any;
|
|
17
23
|
};
|
|
18
24
|
export default snackbar;
|
|
@@ -3,6 +3,8 @@ const INITIAL_STATE = {
|
|
|
3
3
|
snackbarOpened: false,
|
|
4
4
|
level: '',
|
|
5
5
|
message: '',
|
|
6
|
+
detail: '',
|
|
7
|
+
ex: undefined,
|
|
6
8
|
action: {}
|
|
7
9
|
};
|
|
8
10
|
const snackbar = (state = INITIAL_STATE, action) => {
|
|
@@ -13,6 +15,12 @@ const snackbar = (state = INITIAL_STATE, action) => {
|
|
|
13
15
|
snackbarOpened: true,
|
|
14
16
|
level: action.level || 'info',
|
|
15
17
|
message: action.message,
|
|
18
|
+
/*
|
|
19
|
+
* 새 알림이 이전 알림의 detail·ex 를 물려받으면 안 된다. 값이 없으면 명시적으로 비운다
|
|
20
|
+
* (…state 만 펼치면 직전 오류의 기술 원문이 다음 성공 알림에 붙어 남는다).
|
|
21
|
+
*/
|
|
22
|
+
detail: action.detail || '',
|
|
23
|
+
ex: action.ex,
|
|
16
24
|
action: {
|
|
17
25
|
...action.action
|
|
18
26
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snackbar.js","sourceRoot":"","sources":["../../../src/reducers/snackbar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,aAAa,EAAkB,MAAM,wBAAwB,CAAA;AAEtF,MAAM,aAAa,GAAG;IACpB,cAAc,EAAE,KAAK;IACrB,KAAK,EAAE,EAAE;IACT,OAAO,EAAE,EAAE;IACX,MAAM,EAAE,EAAE;CACX,CAAA;AAED,MAAM,QAAQ,GAAG,CAAC,KAAK,GAAG,aAAa,EAAE,MAAsB,EAAE,EAAE;IACjE,QAAQ,MAAM,CAAC,IAAI,EAAE,CAAC;QACpB,KAAK,aAAa;YAChB,OAAO;gBACL,GAAG,KAAK;gBACR,cAAc,EAAE,IAAI;gBACpB,KAAK,EAAE,MAAM,CAAC,KAAK,IAAI,MAAM;gBAC7B,OAAO,EAAE,MAAM,CAAC,OAAO;gBACvB,MAAM,EAAE;oBACN,GAAG,MAAM,CAAC,MAAM;iBACjB;aACF,CAAA;QACH,KAAK,cAAc;YACjB,OAAO;gBACL,GAAG,KAAK;gBACR,cAAc,EAAE,KAAK;aACtB,CAAA;QACH;YACE,OAAO,KAAK,CAAA;IAChB,CAAC;AACH,CAAC,CAAA;AAED,eAAe,QAAQ,CAAA","sourcesContent":["import { CLOSE_SNACKBAR, OPEN_SNACKBAR, SnackbarAction } from '../actions/snackbar.js'\n\nconst INITIAL_STATE = {\n snackbarOpened: false,\n level: '',\n message: '',\n action: {}\n}\n\nconst snackbar = (state = INITIAL_STATE, action: SnackbarAction) => {\n switch (action.type) {\n case OPEN_SNACKBAR:\n return {\n ...state,\n snackbarOpened: true,\n level: action.level || 'info',\n message: action.message,\n action: {\n ...action.action\n }\n }\n case CLOSE_SNACKBAR:\n return {\n ...state,\n snackbarOpened: false\n }\n default:\n return state\n }\n}\n\nexport default snackbar\n"]}
|
|
1
|
+
{"version":3,"file":"snackbar.js","sourceRoot":"","sources":["../../../src/reducers/snackbar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,aAAa,EAAkB,MAAM,wBAAwB,CAAA;AAEtF,MAAM,aAAa,GAAG;IACpB,cAAc,EAAE,KAAK;IACrB,KAAK,EAAE,EAAE;IACT,OAAO,EAAE,EAAE;IACX,MAAM,EAAE,EAAE;IACV,EAAE,EAAE,SAAgB;IACpB,MAAM,EAAE,EAAE;CACX,CAAA;AAED,MAAM,QAAQ,GAAG,CAAC,KAAK,GAAG,aAAa,EAAE,MAAsB,EAAE,EAAE;IACjE,QAAQ,MAAM,CAAC,IAAI,EAAE,CAAC;QACpB,KAAK,aAAa;YAChB,OAAO;gBACL,GAAG,KAAK;gBACR,cAAc,EAAE,IAAI;gBACpB,KAAK,EAAE,MAAM,CAAC,KAAK,IAAI,MAAM;gBAC7B,OAAO,EAAE,MAAM,CAAC,OAAO;gBACvB;;;mBAGG;gBACH,MAAM,EAAE,MAAM,CAAC,MAAM,IAAI,EAAE;gBAC3B,EAAE,EAAE,MAAM,CAAC,EAAE;gBACb,MAAM,EAAE;oBACN,GAAG,MAAM,CAAC,MAAM;iBACjB;aACF,CAAA;QACH,KAAK,cAAc;YACjB,OAAO;gBACL,GAAG,KAAK;gBACR,cAAc,EAAE,KAAK;aACtB,CAAA;QACH;YACE,OAAO,KAAK,CAAA;IAChB,CAAC;AACH,CAAC,CAAA;AAED,eAAe,QAAQ,CAAA","sourcesContent":["import { CLOSE_SNACKBAR, OPEN_SNACKBAR, SnackbarAction } from '../actions/snackbar.js'\n\nconst INITIAL_STATE = {\n snackbarOpened: false,\n level: '',\n message: '',\n detail: '',\n ex: undefined as any,\n action: {}\n}\n\nconst snackbar = (state = INITIAL_STATE, action: SnackbarAction) => {\n switch (action.type) {\n case OPEN_SNACKBAR:\n return {\n ...state,\n snackbarOpened: true,\n level: action.level || 'info',\n message: action.message,\n /*\n * 새 알림이 이전 알림의 detail·ex 를 물려받으면 안 된다. 값이 없으면 명시적으로 비운다\n * (…state 만 펼치면 직전 오류의 기술 원문이 다음 성공 알림에 붙어 남는다).\n */\n detail: action.detail || '',\n ex: action.ex,\n action: {\n ...action.action\n }\n }\n case CLOSE_SNACKBAR:\n return {\n ...state,\n snackbarOpened: false\n }\n default:\n return state\n }\n}\n\nexport default snackbar\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../shell/dist/src/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/custom-alert.d.ts","../../shell/dist/src/connect-mixin.d.ts","../../shell/dist/src/controllers/app-controller.d.ts","../../shell/dist/src/controllers/context-controller.d.ts","../../shell/dist/src/controllers/font-controller.d.ts","../../shell/dist/src/controllers/layout-controller.d.ts","../../shell/dist/src/controllers/menu-controller.d.ts","../../shell/dist/src/controllers/route-controller.d.ts","../../shell/dist/src/controllers/snackbar-controller.d.ts","../../shell/dist/src/controllers/index.d.ts","../../shell/dist/src/index.d.ts","../../popup/dist/src/ox-popup.d.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/labs/behaviors/form-associated.d.ts","../../../node_modules/@material/web/labs/behaviors/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/filled-button.d.ts","../../../node_modules/@material/web/button/filled-button.d.ts","../../../node_modules/@material/web/button/internal/outlined-button.d.ts","../../../node_modules/@material/web/button/outlined-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../src/actions/layout.ts","../src/reducers/layout.ts","../src/actions/snackbar.ts","../src/reducers/snackbar.ts","../src/initializer.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.d.ts","../src/layouts/ox-snack-bar.ts","../src/components/ox-resize-splitter.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit/development/directives/if-defined.d.ts","../src/layouts/ox-header-bar.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/form-field-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/box-padding-editor-styles.d.ts","../../styles/dist/src/gradient-direction-styles.d.ts","../../styles/dist/src/property-grid-styles.d.ts","../../styles/dist/src/table-event-styles.d.ts","../../styles/dist/src/inspector-styles.d.ts","../../styles/dist/src/line-styles.d.ts","../../styles/dist/src/index.d.ts","../src/layouts/ox-nav-bar.ts","../src/layouts/ox-aside-bar.ts","../src/layouts/ox-footer-bar.ts","../src/layouts/ox-page-header-bar.ts","../src/layouts/ox-page-footer-bar.ts","../src/components/ox-split-pane.ts","../src/index.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/dispatcher1-wrapper.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/ffi.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/iter.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/zlib/iter.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[157,222,230,235,238,240,241,242,255],[118,157,222,230,235,238,240,241,242,255],[67,118,157,222,230,235,238,240,241,242,255],[67,118,126,157,222,230,235,238,240,241,242,255],[120,157,222,230,235,238,240,241,242,255],[65,66,157,222,230,235,238,240,241,242,255],[73,105,157,222,230,235,238,240,241,242,255],[70,73,97,99,100,101,102,103,157,222,230,235,238,240,241,242,255],[70,94,104,157,222,230,235,238,240,241,242,255],[70,104,157,222,230,235,238,240,241,242,255],[73,107,157,222,230,235,238,240,241,242,255],[73,93,157,222,230,235,238,240,241,242,255],[70,73,157,222,230,235,238,240,241,242,255],[73,95,157,222,230,235,238,240,241,242,255],[73,96,157,222,230,235,238,240,241,242,255],[73,88,157,222,230,235,238,240,241,242,255],[73,157,222,230,235,238,240,241,242,255],[73,100,157,222,230,235,238,240,241,242,255],[73,100,101,157,222,230,235,238,240,241,242,255],[70,73,95,157,222,230,235,238,240,241,242,255],[73,98,157,222,230,235,238,240,241,242,255],[157,219,220,222,230,235,238,240,241,242,255],[157,221,222,230,235,238,240,241,242,255],[222,230,235,238,240,241,242,255],[157,222,230,235,238,240,241,242,255,264],[157,222,223,228,230,233,235,238,240,241,242,244,255,260,273],[157,222,223,224,230,233,235,238,240,241,242,255],[157,222,225,230,235,238,240,241,242,255,274],[157,222,226,227,230,235,238,240,241,242,246,255],[157,222,227,230,235,238,240,241,242,255,260,270],[157,222,228,230,233,235,238,240,241,242,244,255],[157,221,222,229,230,235,238,240,241,242,255],[157,222,230,231,235,238,240,241,242,255],[157,222,230,232,233,235,238,240,241,242,255],[157,221,222,230,233,235,238,240,241,242,255],[157,222,230,233,235,236,238,240,241,242,255,260,273],[157,222,230,233,235,236,238,240,241,242,255,260,262,264],[157,209,222,230,233,235,237,238,240,241,242,244,255,260,273],[157,222,230,233,235,237,238,240,241,242,244,255,260,270,273],[157,222,230,235,237,238,239,240,241,242,255,260,270,273],[156,157,158,159,160,161,162,163,164,165,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281],[157,222,230,233,235,238,240,241,242,255],[157,222,230,235,238,240,242,255],[157,222,230,235,238,240,241,242,243,255,273],[157,222,230,233,235,238,240,241,242,244,255,260],[157,222,230,235,238,240,241,242,246,255],[157,222,230,235,238,240,241,242,247,255],[157,222,230,233,235,238,240,241,242,250,255],[157,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280],[157,222,230,235,238,240,241,242,252,255],[157,222,230,235,238,240,241,242,253,255],[157,222,227,230,235,238,240,241,242,244,255,264],[157,222,230,233,235,238,240,241,242,255,256],[157,222,230,235,238,240,241,242,255,257,274,277],[157,222,230,233,235,238,240,241,242,255,260,262,263,264],[157,222,230,235,238,240,241,242,255,261,264],[157,222,230,233,235,238,240,241,242,255,260,262],[157,222,230,233,235,238,240,241,242,255,260,263,264],[157,222,230,235,238,240,241,242,255,264,274],[157,222,230,235,238,240,241,242,255,265],[157,219,222,230,235,238,240,241,242,255,260,267,273],[157,222,230,235,238,240,241,242,255,260,266],[157,222,230,233,235,238,240,241,242,255,268,269],[157,222,230,235,238,240,241,242,255,268,269],[157,222,227,230,235,238,240,241,242,244,255,260,270],[157,222,230,235,238,240,241,242,255,271],[157,222,230,235,238,240,241,242,244,255,272],[157,222,230,235,237,238,240,241,242,253,255,273],[157,222,230,235,238,240,241,242,255,274,275],[157,222,227,230,235,238,240,241,242,255,275],[157,222,230,235,238,240,241,242,255,260,276],[157,222,230,235,238,240,241,242,243,255,277],[157,222,230,235,238,240,241,242,255,278],[157,222,225,230,235,238,240,241,242,255],[157,222,227,230,235,238,240,241,242,255],[157,222,230,235,238,240,241,242,255,274],[157,209,222,230,235,238,240,241,242,255],[157,222,230,235,238,240,241,242,255,273],[157,222,230,235,238,240,241,242,255,279],[157,222,230,235,238,240,241,242,250,255],[157,222,230,235,238,240,241,242,255,269],[157,209,222,230,233,235,236,238,240,241,242,250,255,260,264,273,276,277,279],[157,222,230,235,238,240,241,242,255,260,280],[157,222,230,235,238,240,241,242,255,262,281],[67,70,157,222,230,235,238,240,241,242,255],[70,157,222,230,235,238,240,241,242,255],[68,69,157,222,230,235,238,240,241,242,255],[119,120,121,122,123,124,125,126,127,157,222,230,235,238,240,241,242,255],[131,157,222,230,235,238,240,241,242,255],[67,70,71,72,157,222,230,235,238,240,241,242,255],[49,157,222,230,235,238,240,241,242,255],[157,172,175,178,179,222,230,235,238,240,241,242,255,273],[157,175,222,230,235,238,240,241,242,255,260,273],[157,175,179,222,230,235,238,240,241,242,255,273],[157,222,230,235,238,240,241,242,255,260],[157,169,222,230,235,238,240,241,242,255],[157,173,222,230,235,238,240,241,242,255],[157,171,172,175,222,230,235,238,240,241,242,255,273],[157,222,230,235,238,240,241,242,244,255,270],[157,222,230,235,238,240,241,242,255,282],[157,169,222,230,235,238,240,241,242,255,282],[157,171,175,222,230,235,238,240,241,242,244,255,273],[157,166,167,168,170,174,222,230,233,235,238,240,241,242,255,260,273],[157,175,222,230,235,238,240,241,242,255],[157,175,184,193,222,230,235,238,240,241,242,255],[157,167,173,222,230,235,238,240,241,242,255],[157,175,203,204,222,230,235,238,240,241,242,255],[157,167,170,175,222,230,235,238,240,241,242,255,264,273,282],[157,171,175,222,230,235,238,240,241,242,255,273],[157,166,222,230,235,238,240,241,242,255],[157,169,170,171,173,174,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,205,206,207,208,222,230,235,238,240,241,242,255],[157,175,196,199,222,230,235,238,240,241,242,255],[157,175,184,186,187,222,230,235,238,240,241,242,255],[157,173,175,186,188,222,230,235,238,240,241,242,255],[157,174,222,230,235,238,240,241,242,255],[157,167,169,175,222,230,235,238,240,241,242,255],[157,175,179,186,188,222,230,235,238,240,241,242,255],[157,179,222,230,235,238,240,241,242,255],[157,173,175,178,222,230,235,238,240,241,242,255,273],[157,167,171,175,184,222,230,235,238,240,241,242,255],[157,175,196,222,230,235,238,240,241,242,255],[157,188,222,230,235,238,240,241,242,255],[157,167,171,175,179,222,230,235,238,240,241,242,255],[157,169,175,203,222,230,235,238,240,241,242,255,264,279,282],[50,73,86,112,157,222,230,235,238,240,241,242,255],[50,57,157,222,230,235,238,240,241,242,255],[50,73,128,157,222,230,235,238,240,241,242,255],[50,112,113,115,117,129,133,149,150,151,152,153,154,157,222,230,235,238,240,241,242,255],[50,86,113,114,115,116,157,222,230,235,238,240,241,242,255],[50,73,86,110,113,128,130,132,148,157,222,230,235,238,240,241,242,255],[50,73,86,110,113,128,130,132,157,222,230,235,238,240,241,242,255],[50,73,86,89,106,128,157,222,230,235,238,240,241,242,255],[50,113,157,222,230,235,238,240,241,242,255],[50,115,157,222,230,235,238,240,241,242,255],[87,90,91,92,109,111,157,222,230,235,238,240,241,242,255],[73,110,157,222,230,235,238,240,241,242,255],[70,73,89,157,222,230,235,238,240,241,242,255],[70,73,87,89,157,222,230,235,238,240,241,242,255],[70,73,87,157,222,230,235,238,240,241,242,255],[70,73,91,157,222,230,235,238,240,241,242,255],[70,73,89,106,108,157,222,230,235,238,240,241,242,255],[60,61,62,63,157,222,230,235,238,240,241,242,255],[57,157,222,230,235,238,240,241,242,255],[78,79,80,81,82,83,84,157,222,230,235,238,240,241,242,255],[56,59,64,74,75,76,77,85,157,222,230,235,238,240,241,242,255],[57,58,157,222,230,235,238,240,241,242,255],[51,52,53,54,55,157,222,230,235,238,240,241,242,255],[52,53,157,222,230,235,238,240,241,242,255],[51,52,54,157,222,230,235,238,240,241,242,255],[134,135,136,137,138,139,140,141,142,143,144,145,146,147,157,222,230,235,238,240,241,242,255]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","df32d43311e85715e2a573239a4bbc5b78ebaf29af2af5fa8c85370197997515","3a792bbf677343364a1d9b7197c6e4e512764f17364efd656b1a3598f2a9e820","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","e576aa80090f8b6020355ca8d7f4184067c84389f4b92125be29e03b1f6c5194",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true,"impliedFormat":1},"487213b1bcbdaa470cf59a4cea3f8a939b9222e74b455fe0fd2f0dc2346cc3c0",{"version":"8a9e962b8c98aa48377773c40ac7a3e530fb3354cec48fdb59d8e2df3a624a0c","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","8e33e65ce7fcd3cb20e29505452daa51543003d5db597f1aca2a51ff9043c8a7","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","ad3ee9f7d14ad8b7ae8094d0f1a2276656f7a970827d4030d1dead7c2d765f75",{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"a0f82d2f9450bd147a8c137798d9501bd49b7c9e118f75b07b76709ff39b6b55","affectsGlobalScope":true,"impliedFormat":99},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"e09db3291e6b440f7debed2227d8357e80c95987a0d0d67ac17521d8f7b11bdb","impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},"9c7568f9c75cf6a7d35dc9f18c5971cd5b21344c686c7cce56b3558d3305d40f","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","3e62a55b950132d6eeacc607b7a1bff990d5484347b2be5a1f54db51af30ff25","8b86f33b7e06e2f0a3bf4703cf9d8b0baab016e36b83f2a33dac184f061e17ea","88c205bacab539d8e844b80a1ec76fc649fbc731f12dfd7cca160976b5ddfd5a","565d32dce0b8761e7cfafe40c56a8a0fab0bb9e7bb35a31d9712643b3c8dbbc4","4bde12afd6fdd6e52d7316e00adfbccd70becc3ebd9c4f647d07caef53a474ae","a7e588bdba05f1fb78f83e50ee62c93565134d3b996babf2697c2b43fcf17ce0","218a0f93d7091c68718ec4260f41f3a61b5ecb7e786a8c04e296292ff41db8f0","cf45487aeb18b31f1001b99d06793986ac3e6840b0602f9cf3756a2724348bf4","629d342ef4b4cff61a58569076b63eb99c56e7f8f5fdce2ea96b867de7a99bd8","1a68f44e90ac5c261a3157004a7ec18759982b91fd725537d6db919d83601dd1","bb9f78774fda656644386e88b8522ddf5da7b9a2eeaf1df18dc4f5bef7bb8bbb",{"version":"75069a2a1e380502ff9a1074b8ee61f5e84f31973e5f81b444e6993e5633c72b","affectsGlobalScope":true},{"version":"b93e2680295ac83b52846bcd76dd6d06507d3da1738ebe564a1e99543993b3b4","impliedFormat":99},{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true,"impliedFormat":99},"8aff91f00938aa90ce829f4d577903d6826fa19e8edc583f7bb64ef1a6b4ae3b","986165ecc3a59d4b6a272a92f7ca4fd7a0762c63a674abd2c1efa0bea64da604","3e7b241ec38126d95f9e37c49a631c00cff006a888276e2d02920c6443c8b593",{"version":"6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241","impliedFormat":99},{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true,"impliedFormat":99},{"version":"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"6161d12fc14a8e0cf492f9d49372a1189b1fe005662cb7fe6630352a6b0bb04e","impliedFormat":99},{"version":"7d3c06d4ad79d86c6f7518b77d335b324bc218a7cd8b3e15579c4b584b7307f9","impliedFormat":99},{"version":"65f5bc7ff74eeabe9925da575924601248471033c27bf0384643ea03cad2b57d","impliedFormat":99},{"version":"d08d474654640266d6ac03f51ee04d72438b78ea377b9dc4678c480ce0477e1a","impliedFormat":99},{"version":"929f21090183949e93fd99327d292bff76f781895d5252eb43319b2c3e014528","affectsGlobalScope":true,"impliedFormat":99},{"version":"f9f3097a031827350b6befd870e9da3ec0953b7269497c1a7c5dc840223d2fb3","impliedFormat":99},{"version":"d56278ed347a6685abc6da6b49277da36db3ddce86bd298c03b48a5f9c6d145c","affectsGlobalScope":true,"impliedFormat":99},"6e498d0ced89509c5e15beb4b8185aff55b0633260179dfa454af0ed3ef6867e","74c2d01743bd615ed4a3eaac451feb14967fa8ad01099ed2971e32d1adca6ae3","3ea339efb8893d053812a11e51eee3fb49b66e2b853f167b3167565ac9460553","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41",{"version":"274be6c470fbdb4139da9c4021df47093721ce1ce570186f1bd2221c0b788a67","signature":"81ca54beeb924c5601f429901f0ef2ee616e4291a203ebb42f235d84c6ff0e40"},{"version":"401273e47f31f4b081b3fb7cecec311a5da0a8937ba2a0b0d3b1a0bed3bb587d","signature":"898ccf6290d1318beaf3f5946b9db9f7281180c9678349cc9a1791d39e5f8b4a"},{"version":"a76becaaada0ab284c738a1dcbcd37f9db9e8245336233b91bb82aa6dad24ca1","signature":"c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6"},{"version":"0dbba367e039c2ed11185cad0b60a8df09a59eacc78977b76d7576e5a031d151","signature":"bb2e92a78ea2e89f86ac3735f56174bea51536dcd853b2b71396c0dbfa5df2b4"},{"version":"f2e4eab2ca48d7ae9742f15913a0f03e5c94d94b4807250cc774fbd2397bbc2a","signature":"60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7"},{"version":"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","impliedFormat":99},{"version":"3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","impliedFormat":99},{"version":"99bdf729529cdbf12e2bf76ea751b662011133dcf9e35abcb3def47bb02f7b0a","impliedFormat":99},{"version":"732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","impliedFormat":99},{"version":"039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","impliedFormat":99},{"version":"1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","impliedFormat":99},{"version":"a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","impliedFormat":99},{"version":"5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","impliedFormat":99},{"version":"101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","impliedFormat":99},{"version":"d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},{"version":"5e1ea6815557014415a6779c2d58f7e91125b3d2faed242471cb8ee1aa4449da","signature":"904d1d0706427169b37660f296fff6457b55c7f5589656b98e10d34b8fea3806"},{"version":"579de4b08e00380fe4e4c4b87443ef651aef8a457dbb0d4c7e412790d505d8f4","signature":"5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013"},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7","impliedFormat":99},{"version":"3faf76ac2f1b93a0a4ad55ebb76533cec24110f5b2126a0142203d06d26182d7","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","d428a9fbb7cc014b69651793373edf9be9b0bba7c3e7f720d2a294dd1a50d7c5","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","4c559568877f16745410a69bbbf0e2b131a228c819d581048f4d1ba7115b1b36","c89d663edb7c20cfab677286571dc8f4f09878119d7ecd010895133995f12532","9d04b912e18e966fca08158f28e5c41bfb2fa864187d926e04d737aa83a96e17","2ad4fcfa075cde73e5ae78491531cef44cec9fb9a880be8335afd98c444528cf","881cb6bb1e6384a9943b8c6f1cd3a0f215a683b032130f700e0d87bc9a990727","e2d895b9561b0b9a350c970475ff268e4e0fc44436e107a916889a0a93d3389b","a4d2a75e18acf1ba3d5c7963bcab7e79ceea6ae8af90324b0d9243c0bf439578",{"version":"71374d52dd6078e5fa696c4a70feae78f119b5fed2c3f8f9112360676b2d2c6b","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"17defba52ae2ea3209d09c190daedaa937b0cab692662c922f31c36c221dee8d","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"11aec3dea46d11f4a1b3e51d58e6073d05bab79af93092f1f9b8fbb27beec083","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"8c00214bd8fc7db146747b60a8cf5cab8e6e95d6d0d169207bd418ad445a9195","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"2e037693cb04845b60c57dcc45e0bf95b4615bf24139a4d7395b6899dcf536c1","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"9e6f5e88423afc3ecaf5ea6dbf4293cc26d51c3067a2d30ec763488691fec44f","signature":"86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63"},{"version":"628bf83ab0e3e489f25c9fb03dd989af0320374a17bebd35a41dc6b226b7d31b","signature":"d2a35e0fac40e510839fdc737b1c16cd476150f7edef48a79553a8585b23f30b"},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"3ac40516c33b87f751f7507346933081a26cdb8a3e11a6b3aa07d23f803c85db","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"829bc57ee8f287b490ab5bbc5a962fca57e432c1e38ec680ecd3ecaf12800613","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"3a3ff14da53d5013f3e6d8c4ad55225e3649c08786c4421ce639c00d8d589b7d","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"d243db6b25788f439e7e2f03c05688e92f46764351673bb0e7b2f3631232e186","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"9ac977503f15bf13ca7c82ad9a32a782f42d43e474824e8b3bffe228fd5f2639","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"7cb4f431a4591b0e23002bed805dc871a874dfed6b9a3994dce68a6df73e6739","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"2e6fca0024dd8a076a886d9ec031a936ea59ad878a25b944820495d92f8381dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"177459cba484e2f1e08872a3d2fdbca3162d9d43ca5ec9dc0c946835b55f74be","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"010eccc3ce4a7ea2e546f6e58cf18c891a50fd3e2a3089f07b3b844230d19a12","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"98fc7231d6c846a8ed19bdef026ddffe5e2182cc818be74899287421ad370a87","impliedFormat":1},{"version":"3a40b5d34e014017539acb92f04cf2bc0aa71e49efb33c66039df93be97842a1","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"79a85c64bf083c5f4dd7074e804d1000c0c47301b84d48417a224decd681be30","impliedFormat":1},{"version":"9f1e3a76d5f509b5579e567de522b402cb79e201c4f47dcd014451c0580b290d","impliedFormat":1},{"version":"4f1fd541f720030367b5d7ebfea7ae5f9edc8481422993b9a363f459c5412437","impliedFormat":1},{"version":"70f3f8b2dcaf7388f26731a59c79437813e3620b594903525a303cb2a7901016","impliedFormat":1},{"version":"62e8f884c3bc6dff6189b6e662ebe8b238a645938f2df7a97b8a82fca56773a4","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"57a0d1b3d59063d4af2d3f8aac27cfe3c20a0f5d1faf0f8598ccf0b779637939","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"93ecf87143cac7b9d05cffc1d6bdc075b7e4fdd48ff05f1fad85043f6ae678d3","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"6f200afcb82b3e9a54bed6db23f2edf2508cd266801257312c0f124b47f2bdb9","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"39338f84e8c4d0e3de7b3c4a7024fb3925f42100eed5cbe73be58902799dff4d","impliedFormat":1},{"version":"fbf83eb33bf5e329527add92acc65da59323876c702ddccf5f4bf1e848c92369","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"515318bc6e656f75e9e34db625316bfafbafd800dfb1642574af93735a24ad38","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"03b7804d69cecd66850abada858ed6d4a59001f8c228a9fe212306ee860a4ff6","impliedFormat":1},{"version":"5b26c4dd672d88336bb929787c9bfb55119e80ba89ec6dc923da1c063892843e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"987fd1f85dc36f4b2c927aa3db814ac6b452e970f4f55d24ed4ecbb7df09be00","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"b4769767f13a1692a66186e01c3aa186ff808d5ff72ed36eda8c37738fb2ac92","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"683edfc4f2b411ebe04729cb6dc09ddd26fbac2c57771a6d7c55964af776e176","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"e47f532d6e1617833f13a5b0710c0089d402c89c2f2b54f324e5a20e418d287a","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"7ec8d7d483f7394f9da611b10d3a0e402f76ff5c991261e6ce43a15f81ca4258","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"82c3cc48c692438e41b94d936b8acd75ca97b18c50fa1af8a0715eb9d07d18cd","impliedFormat":1},{"version":"045a210189ec63c5488410b33f9fca53d77d051599d0d6506d8048551399c5f3","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"632c45ccb4cdc2c3a80c7a36a63dd7763016e59cac5e07bfb3e37e3548957028","impliedFormat":1},{"version":"c9a2daf6cd1eb854cd5b9e424247c5e306692055738c2effd35f7871d942b76e","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"e50a7130339a951e6da9e968ed5521b0997a5b0479e148914087213839b5474c","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[[113,117],129,130,133,[149,155]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"referencedMap":[[65,1],[118,1],[119,2],[122,3],[120,3],[124,3],[127,4],[126,3],[125,3],[123,3],[121,5],[66,1],[67,6],[106,7],[104,8],[105,9],[107,10],[108,11],[94,12],[93,13],[96,14],[97,15],[89,16],[88,13],[95,17],[101,18],[102,19],[103,19],[100,1],[98,20],[99,21],[283,1],[219,22],[220,22],[221,23],[157,24],[222,25],[223,26],[224,27],[225,28],[226,29],[227,30],[228,31],[229,32],[230,33],[231,33],[232,34],[233,35],[234,1],[235,36],[236,37],[158,1],[156,1],[237,38],[238,39],[239,40],[282,41],[240,42],[241,43],[242,42],[243,44],[244,45],[246,46],[247,47],[248,47],[249,47],[250,48],[251,49],[252,50],[253,51],[254,52],[255,53],[256,53],[257,54],[258,1],[259,1],[260,55],[261,56],[262,57],[263,58],[264,59],[265,60],[266,61],[267,62],[268,63],[269,64],[270,65],[271,66],[272,67],[273,68],[274,69],[275,70],[276,71],[277,72],[278,73],[159,42],[160,1],[161,74],[162,75],[163,1],[164,76],[165,1],[210,77],[211,78],[212,79],[213,79],[214,80],[215,1],[216,25],[217,81],[218,78],[279,82],[280,83],[281,84],[69,1],[245,1],[71,85],[68,86],[131,86],[72,1],[70,87],[128,88],[132,89],[73,90],[57,1],[50,91],[49,1],[47,1],[48,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[46,1],[184,92],[198,93],[181,94],[199,95],[208,96],[172,97],[173,98],[171,99],[207,100],[202,101],[206,102],[175,103],[185,104],[195,105],[174,106],[205,107],[169,108],[170,101],[176,104],[177,1],[183,109],[180,104],[167,110],[209,111],[200,112],[188,113],[187,104],[189,114],[192,115],[186,116],[190,117],[203,100],[178,118],[179,119],[193,120],[168,95],[197,121],[196,104],[182,119],[191,122],[194,123],[201,1],[166,1],[204,124],[113,125],[115,126],[130,127],[154,127],[155,128],[117,129],[150,130],[151,131],[133,131],[149,130],[153,131],[152,131],[129,132],[114,133],[116,134],[112,135],[111,136],[110,137],[90,138],[91,139],[92,140],[87,13],[109,141],[60,1],[62,1],[63,1],[64,142],[61,1],[74,17],[77,143],[78,17],[79,17],[80,17],[85,144],[81,17],[82,17],[83,17],[84,17],[76,1],[86,145],[58,143],[75,1],[59,146],[51,1],[56,147],[54,148],[53,149],[55,1],[52,1],[142,17],[140,17],[137,1],[139,17],[141,17],[138,17],[143,17],[134,17],[148,150],[146,17],[147,17],[144,17],[135,17],[136,17],[145,17]],"version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../shell/dist/src/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/custom-alert.d.ts","../../shell/dist/src/connect-mixin.d.ts","../../shell/dist/src/controllers/app-controller.d.ts","../../shell/dist/src/controllers/context-controller.d.ts","../../shell/dist/src/controllers/font-controller.d.ts","../../shell/dist/src/controllers/layout-controller.d.ts","../../shell/dist/src/controllers/menu-controller.d.ts","../../shell/dist/src/controllers/route-controller.d.ts","../../shell/dist/src/controllers/snackbar-controller.d.ts","../../shell/dist/src/controllers/index.d.ts","../../shell/dist/src/index.d.ts","../../popup/dist/src/ox-popup.d.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/labs/behaviors/form-associated.d.ts","../../../node_modules/@material/web/labs/behaviors/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/filled-button.d.ts","../../../node_modules/@material/web/button/filled-button.d.ts","../../../node_modules/@material/web/button/internal/outlined-button.d.ts","../../../node_modules/@material/web/button/outlined-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../src/actions/layout.ts","../src/reducers/layout.ts","../src/actions/snackbar.ts","../src/reducers/snackbar.ts","../src/initializer.ts","../../../node_modules/@material/web/button/internal/text-button.d.ts","../../../node_modules/@material/web/button/text-button.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.d.ts","../../../node_modules/i18next/typescript/helpers.d.ts","../../../node_modules/i18next/typescript/options.d.ts","../../../node_modules/i18next/typescript/t.d.ts","../../../node_modules/i18next/index.d.ts","../../../node_modules/i18next/index.d.mts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../src/layouts/ox-snack-bar.ts","../src/components/ox-resize-splitter.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit/development/directives/if-defined.d.ts","../src/layouts/ox-header-bar.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/form-field-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/box-padding-editor-styles.d.ts","../../styles/dist/src/gradient-direction-styles.d.ts","../../styles/dist/src/property-grid-styles.d.ts","../../styles/dist/src/table-event-styles.d.ts","../../styles/dist/src/inspector-styles.d.ts","../../styles/dist/src/line-styles.d.ts","../../styles/dist/src/index.d.ts","../src/layouts/ox-nav-bar.ts","../src/layouts/ox-aside-bar.ts","../src/layouts/ox-footer-bar.ts","../src/layouts/ox-page-header-bar.ts","../src/layouts/ox-page-footer-bar.ts","../src/components/ox-split-pane.ts","../src/index.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/dispatcher1-wrapper.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/ffi.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/iter.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/zlib/iter.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[169,234,242,247,250,252,253,254,267],[120,169,234,242,247,250,252,253,254,267],[67,120,169,234,242,247,250,252,253,254,267],[67,120,128,169,234,242,247,250,252,253,254,267],[122,169,234,242,247,250,252,253,254,267],[65,66,169,234,242,247,250,252,253,254,267],[73,105,169,234,242,247,250,252,253,254,267],[70,73,97,99,100,101,102,103,169,234,242,247,250,252,253,254,267],[70,94,104,169,234,242,247,250,252,253,254,267],[70,104,169,234,242,247,250,252,253,254,267],[104,169,234,242,247,250,252,253,254,267],[73,107,169,234,242,247,250,252,253,254,267],[73,118,169,234,242,247,250,252,253,254,267],[73,93,169,234,242,247,250,252,253,254,267],[70,73,169,234,242,247,250,252,253,254,267],[73,95,169,234,242,247,250,252,253,254,267],[73,96,169,234,242,247,250,252,253,254,267],[73,88,169,234,242,247,250,252,253,254,267],[73,169,234,242,247,250,252,253,254,267],[73,100,169,234,242,247,250,252,253,254,267],[73,100,101,169,234,242,247,250,252,253,254,267],[70,73,95,169,234,242,247,250,252,253,254,267],[73,98,169,234,242,247,250,252,253,254,267],[169,231,232,234,242,247,250,252,253,254,267],[169,233,234,242,247,250,252,253,254,267],[234,242,247,250,252,253,254,267],[169,234,242,247,250,252,253,254,267,276],[169,234,235,240,242,245,247,250,252,253,254,256,267,272,285],[169,234,235,236,242,245,247,250,252,253,254,267],[169,234,237,242,247,250,252,253,254,267,286],[169,234,238,239,242,247,250,252,253,254,258,267],[169,234,239,242,247,250,252,253,254,267,272,282],[169,234,240,242,245,247,250,252,253,254,256,267],[169,233,234,241,242,247,250,252,253,254,267],[169,234,242,243,247,250,252,253,254,267],[169,234,242,244,245,247,250,252,253,254,267],[169,233,234,242,245,247,250,252,253,254,267],[169,234,242,245,247,248,250,252,253,254,267,272,285],[169,234,242,245,247,248,250,252,253,254,267,272,274,276],[169,221,234,242,245,247,249,250,252,253,254,256,267,272,285],[169,234,242,245,247,249,250,252,253,254,256,267,272,282,285],[169,234,242,247,249,250,251,252,253,254,267,272,282,285],[168,169,170,171,172,173,174,175,176,177,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293],[169,234,242,245,247,250,252,253,254,267],[169,234,242,247,250,252,254,267],[169,234,242,247,250,252,253,254,255,267,285],[169,234,242,245,247,250,252,253,254,256,267,272],[169,234,242,247,250,252,253,254,258,267],[169,234,242,247,250,252,253,254,259,267],[169,234,242,245,247,250,252,253,254,262,267],[169,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292],[169,234,242,247,250,252,253,254,264,267],[169,234,242,247,250,252,253,254,265,267],[169,234,239,242,247,250,252,253,254,256,267,276],[169,234,242,245,247,250,252,253,254,267,268],[169,234,242,247,250,252,253,254,267,269,286,289],[169,234,242,245,247,250,252,253,254,267,272,274,275,276],[169,234,242,247,250,252,253,254,267,273,276],[169,234,242,245,247,250,252,253,254,267,272,274],[169,234,242,245,247,250,252,253,254,267,272,275,276],[169,234,242,247,250,252,253,254,267,276,286],[169,234,242,247,250,252,253,254,267,277],[169,231,234,242,247,250,252,253,254,267,272,279,285],[169,234,242,247,250,252,253,254,267,272,278],[169,234,242,245,247,250,252,253,254,267,280,281],[169,234,242,247,250,252,253,254,267,280,281],[169,234,239,242,247,250,252,253,254,256,267,272,282],[169,234,242,247,250,252,253,254,267,283],[169,234,242,247,250,252,253,254,256,267,284],[169,234,242,247,249,250,252,253,254,265,267,285],[169,234,242,247,250,252,253,254,267,286,287],[169,234,239,242,247,250,252,253,254,267,287],[169,234,242,247,250,252,253,254,267,272,288],[169,234,242,247,250,252,253,254,255,267,289],[169,234,242,247,250,252,253,254,267,290],[169,234,237,242,247,250,252,253,254,267],[169,234,239,242,247,250,252,253,254,267],[169,234,242,247,250,252,253,254,267,286],[169,221,234,242,247,250,252,253,254,267],[169,234,242,247,250,252,253,254,267,285],[169,234,242,247,250,252,253,254,267,291],[169,234,242,247,250,252,253,254,262,267],[169,234,242,247,250,252,253,254,267,281],[169,221,234,242,245,247,248,250,252,253,254,262,267,272,276,285,288,289,291],[169,234,242,247,250,252,253,254,267,272,292],[169,234,242,247,250,252,253,254,267,274,293],[131,132,133,134,169,234,242,247,250,252,253,254,267],[131,132,133,169,234,242,247,250,252,253,254,267],[131,169,234,242,247,250,252,253,254,267],[131,132,169,234,242,247,250,252,253,254,267],[67,70,169,234,242,247,250,252,253,254,267],[70,169,234,242,247,250,252,253,254,267],[68,69,169,234,242,247,250,252,253,254,267],[121,122,123,124,125,126,127,128,129,169,234,242,247,250,252,253,254,267],[143,169,234,242,247,250,252,253,254,267],[67,70,71,72,169,234,242,247,250,252,253,254,267],[49,169,234,242,247,250,252,253,254,267],[169,184,187,190,191,234,242,247,250,252,253,254,267,285],[169,187,234,242,247,250,252,253,254,267,272,285],[169,187,191,234,242,247,250,252,253,254,267,285],[169,234,242,247,250,252,253,254,267,272],[169,181,234,242,247,250,252,253,254,267],[169,185,234,242,247,250,252,253,254,267],[169,183,184,187,234,242,247,250,252,253,254,267,285],[169,234,242,247,250,252,253,254,256,267,282],[169,234,242,247,250,252,253,254,267,294],[169,181,234,242,247,250,252,253,254,267,294],[169,183,187,234,242,247,250,252,253,254,256,267,285],[169,178,179,180,182,186,234,242,245,247,250,252,253,254,267,272,285],[169,187,234,242,247,250,252,253,254,267],[169,187,196,205,234,242,247,250,252,253,254,267],[169,179,185,234,242,247,250,252,253,254,267],[169,187,215,216,234,242,247,250,252,253,254,267],[169,179,182,187,234,242,247,250,252,253,254,267,276,285,294],[169,183,187,234,242,247,250,252,253,254,267,285],[169,178,234,242,247,250,252,253,254,267],[169,181,182,183,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,234,242,247,250,252,253,254,267],[169,187,208,211,234,242,247,250,252,253,254,267],[169,187,196,198,199,234,242,247,250,252,253,254,267],[169,185,187,198,200,234,242,247,250,252,253,254,267],[169,186,234,242,247,250,252,253,254,267],[169,179,181,187,234,242,247,250,252,253,254,267],[169,187,191,198,200,234,242,247,250,252,253,254,267],[169,191,234,242,247,250,252,253,254,267],[169,185,187,190,234,242,247,250,252,253,254,267,285],[169,179,183,187,196,234,242,247,250,252,253,254,267],[169,187,208,234,242,247,250,252,253,254,267],[169,200,234,242,247,250,252,253,254,267],[169,179,183,187,191,234,242,247,250,252,253,254,267],[169,181,187,215,234,242,247,250,252,253,254,267,276,291,294],[135,169,234,242,247,250,252,253,254,267],[136,137,138,139,169,234,242,247,250,252,253,254,267],[73,135,169,234,242,247,250,252,253,254,267],[50,73,86,112,169,234,242,247,250,252,253,254,267],[50,57,169,234,242,247,250,252,253,254,267],[50,73,130,169,234,242,247,250,252,253,254,267],[50,112,113,115,117,141,145,161,162,163,164,165,166,169,234,242,247,250,252,253,254,267],[50,86,113,114,115,116,169,234,242,247,250,252,253,254,267],[50,73,86,110,113,130,142,144,160,169,234,242,247,250,252,253,254,267],[50,73,86,110,113,130,142,144,169,234,242,247,250,252,253,254,267],[50,73,86,89,115,119,130,140,169,234,242,247,250,252,253,254,267],[50,113,169,234,242,247,250,252,253,254,267],[50,115,169,234,242,247,250,252,253,254,267],[87,90,91,92,109,111,169,234,242,247,250,252,253,254,267],[73,110,169,234,242,247,250,252,253,254,267],[70,73,89,169,234,242,247,250,252,253,254,267],[70,73,87,89,169,234,242,247,250,252,253,254,267],[70,73,87,169,234,242,247,250,252,253,254,267],[70,73,91,169,234,242,247,250,252,253,254,267],[70,73,89,106,108,169,234,242,247,250,252,253,254,267],[60,61,62,63,169,234,242,247,250,252,253,254,267],[57,169,234,242,247,250,252,253,254,267],[78,79,80,81,82,83,84,169,234,242,247,250,252,253,254,267],[56,59,64,74,75,76,77,85,169,234,242,247,250,252,253,254,267],[57,58,169,234,242,247,250,252,253,254,267],[51,52,53,54,55,169,234,242,247,250,252,253,254,267],[52,53,169,234,242,247,250,252,253,254,267],[51,52,54,169,234,242,247,250,252,253,254,267],[146,147,148,149,150,151,152,153,154,155,156,157,158,159,169,234,242,247,250,252,253,254,267]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","df32d43311e85715e2a573239a4bbc5b78ebaf29af2af5fa8c85370197997515","3a792bbf677343364a1d9b7197c6e4e512764f17364efd656b1a3598f2a9e820","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","e576aa80090f8b6020355ca8d7f4184067c84389f4b92125be29e03b1f6c5194",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true,"impliedFormat":1},"487213b1bcbdaa470cf59a4cea3f8a939b9222e74b455fe0fd2f0dc2346cc3c0",{"version":"8a9e962b8c98aa48377773c40ac7a3e530fb3354cec48fdb59d8e2df3a624a0c","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","8e33e65ce7fcd3cb20e29505452daa51543003d5db597f1aca2a51ff9043c8a7","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","ad3ee9f7d14ad8b7ae8094d0f1a2276656f7a970827d4030d1dead7c2d765f75",{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"a0f82d2f9450bd147a8c137798d9501bd49b7c9e118f75b07b76709ff39b6b55","affectsGlobalScope":true,"impliedFormat":99},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"e09db3291e6b440f7debed2227d8357e80c95987a0d0d67ac17521d8f7b11bdb","impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},"9c7568f9c75cf6a7d35dc9f18c5971cd5b21344c686c7cce56b3558d3305d40f","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","3e62a55b950132d6eeacc607b7a1bff990d5484347b2be5a1f54db51af30ff25","8b86f33b7e06e2f0a3bf4703cf9d8b0baab016e36b83f2a33dac184f061e17ea","88c205bacab539d8e844b80a1ec76fc649fbc731f12dfd7cca160976b5ddfd5a","565d32dce0b8761e7cfafe40c56a8a0fab0bb9e7bb35a31d9712643b3c8dbbc4","4bde12afd6fdd6e52d7316e00adfbccd70becc3ebd9c4f647d07caef53a474ae","a7e588bdba05f1fb78f83e50ee62c93565134d3b996babf2697c2b43fcf17ce0","218a0f93d7091c68718ec4260f41f3a61b5ecb7e786a8c04e296292ff41db8f0","cf45487aeb18b31f1001b99d06793986ac3e6840b0602f9cf3756a2724348bf4","81f0a95843ae6e5a006addc4b5c217b075057ff82c9bc319655de21a13ba9f10","1a68f44e90ac5c261a3157004a7ec18759982b91fd725537d6db919d83601dd1","bb9f78774fda656644386e88b8522ddf5da7b9a2eeaf1df18dc4f5bef7bb8bbb",{"version":"75069a2a1e380502ff9a1074b8ee61f5e84f31973e5f81b444e6993e5633c72b","affectsGlobalScope":true},{"version":"b93e2680295ac83b52846bcd76dd6d06507d3da1738ebe564a1e99543993b3b4","impliedFormat":99},{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true,"impliedFormat":99},"8aff91f00938aa90ce829f4d577903d6826fa19e8edc583f7bb64ef1a6b4ae3b","986165ecc3a59d4b6a272a92f7ca4fd7a0762c63a674abd2c1efa0bea64da604","3e7b241ec38126d95f9e37c49a631c00cff006a888276e2d02920c6443c8b593",{"version":"6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241","impliedFormat":99},{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true,"impliedFormat":99},{"version":"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"6161d12fc14a8e0cf492f9d49372a1189b1fe005662cb7fe6630352a6b0bb04e","impliedFormat":99},{"version":"7d3c06d4ad79d86c6f7518b77d335b324bc218a7cd8b3e15579c4b584b7307f9","impliedFormat":99},{"version":"65f5bc7ff74eeabe9925da575924601248471033c27bf0384643ea03cad2b57d","impliedFormat":99},{"version":"d08d474654640266d6ac03f51ee04d72438b78ea377b9dc4678c480ce0477e1a","impliedFormat":99},{"version":"929f21090183949e93fd99327d292bff76f781895d5252eb43319b2c3e014528","affectsGlobalScope":true,"impliedFormat":99},{"version":"f9f3097a031827350b6befd870e9da3ec0953b7269497c1a7c5dc840223d2fb3","impliedFormat":99},{"version":"d56278ed347a6685abc6da6b49277da36db3ddce86bd298c03b48a5f9c6d145c","affectsGlobalScope":true,"impliedFormat":99},"6e498d0ced89509c5e15beb4b8185aff55b0633260179dfa454af0ed3ef6867e","74c2d01743bd615ed4a3eaac451feb14967fa8ad01099ed2971e32d1adca6ae3","3ea339efb8893d053812a11e51eee3fb49b66e2b853f167b3167565ac9460553","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41",{"version":"274be6c470fbdb4139da9c4021df47093721ce1ce570186f1bd2221c0b788a67","signature":"81ca54beeb924c5601f429901f0ef2ee616e4291a203ebb42f235d84c6ff0e40"},{"version":"401273e47f31f4b081b3fb7cecec311a5da0a8937ba2a0b0d3b1a0bed3bb587d","signature":"898ccf6290d1318beaf3f5946b9db9f7281180c9678349cc9a1791d39e5f8b4a"},{"version":"56f104d7ada1b2fb2d43bba47c4d539c0d58b8f2a2a4804f963213311c1ea5f0","signature":"07d5eb23abd7084841b9e51a04fe6b9ffd0b5f5eb04bcee3447fd958aab634b7"},{"version":"9abddebbf81007381a464c6afa97f4b51df4d568e96143655855ed7adb8c01a1","signature":"e518cce2fabe330fde3dc6be7db260104cbd04c80f708f3825c3aa8bffae48b6"},{"version":"aec3072c59491efe0e049c127b5ac6ca3618c621ca76f6af8694e79730dd5e89","signature":"60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7"},{"version":"0f28503979e769f6ee6e55350f621dc00e300f15688d52b02edc62d837d29b1d","impliedFormat":99},{"version":"fe869c79d427e84d916011d082def68a793c3c13e157079fec399f250418bd50","affectsGlobalScope":true,"impliedFormat":99},{"version":"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","impliedFormat":99},{"version":"3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","impliedFormat":99},{"version":"99bdf729529cdbf12e2bf76ea751b662011133dcf9e35abcb3def47bb02f7b0a","impliedFormat":99},{"version":"732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","impliedFormat":99},{"version":"039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","impliedFormat":99},{"version":"1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","impliedFormat":99},{"version":"a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","impliedFormat":99},{"version":"5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","impliedFormat":99},{"version":"101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","impliedFormat":99},{"version":"d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},{"version":"e30accdbef6f904f20354b6f598d7f2f7ff29094fc5410c33f63b29b4832172a","impliedFormat":1},{"version":"3786a961459023ec78bb575e5ea74f504d3ffc61ae82a305c959a4d94d7d70eb","impliedFormat":1},{"version":"de83915a380bdd6d7ddf075e3f60fe347db64ad4d06822835724ac601cb61daf","impliedFormat":1},{"version":"4d39c150715cb238da715e5c3fbeac2e2b2d0ef3f23c632996dd59ae35ba1f45","impliedFormat":1},{"version":"e9f80c5934982b97886eadab6684c073344a588d1758b12fba2d0184e6f450a2","impliedFormat":99},"0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","231d829c892caeb88dd469e0847bf9d14e29c82b8b158b381ec866c868adf9af","886bcc73e8cf74ebec1bd14a5cc5b8dfa28276210df634e6f81c844b1eef767b",{"version":"3ae91f160c5c48c852c513727762d01eab21eff1b215169a7e4457153dbb12db","signature":"3c523c4338a858825c62005f03ff49eeaf8290bdda52a8b8554be555bab7a077"},{"version":"579de4b08e00380fe4e4c4b87443ef651aef8a457dbb0d4c7e412790d505d8f4","signature":"5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013"},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7","impliedFormat":99},{"version":"3faf76ac2f1b93a0a4ad55ebb76533cec24110f5b2126a0142203d06d26182d7","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","d428a9fbb7cc014b69651793373edf9be9b0bba7c3e7f720d2a294dd1a50d7c5","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","4c559568877f16745410a69bbbf0e2b131a228c819d581048f4d1ba7115b1b36","c89d663edb7c20cfab677286571dc8f4f09878119d7ecd010895133995f12532","9d04b912e18e966fca08158f28e5c41bfb2fa864187d926e04d737aa83a96e17","2ad4fcfa075cde73e5ae78491531cef44cec9fb9a880be8335afd98c444528cf","881cb6bb1e6384a9943b8c6f1cd3a0f215a683b032130f700e0d87bc9a990727","e2d895b9561b0b9a350c970475ff268e4e0fc44436e107a916889a0a93d3389b","a4d2a75e18acf1ba3d5c7963bcab7e79ceea6ae8af90324b0d9243c0bf439578",{"version":"71374d52dd6078e5fa696c4a70feae78f119b5fed2c3f8f9112360676b2d2c6b","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"17defba52ae2ea3209d09c190daedaa937b0cab692662c922f31c36c221dee8d","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"11aec3dea46d11f4a1b3e51d58e6073d05bab79af93092f1f9b8fbb27beec083","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"8c00214bd8fc7db146747b60a8cf5cab8e6e95d6d0d169207bd418ad445a9195","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"2e037693cb04845b60c57dcc45e0bf95b4615bf24139a4d7395b6899dcf536c1","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"9e6f5e88423afc3ecaf5ea6dbf4293cc26d51c3067a2d30ec763488691fec44f","signature":"86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63"},{"version":"628bf83ab0e3e489f25c9fb03dd989af0320374a17bebd35a41dc6b226b7d31b","signature":"d2a35e0fac40e510839fdc737b1c16cd476150f7edef48a79553a8585b23f30b"},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"3ac40516c33b87f751f7507346933081a26cdb8a3e11a6b3aa07d23f803c85db","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"829bc57ee8f287b490ab5bbc5a962fca57e432c1e38ec680ecd3ecaf12800613","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"3a3ff14da53d5013f3e6d8c4ad55225e3649c08786c4421ce639c00d8d589b7d","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"d243db6b25788f439e7e2f03c05688e92f46764351673bb0e7b2f3631232e186","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"9ac977503f15bf13ca7c82ad9a32a782f42d43e474824e8b3bffe228fd5f2639","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"7cb4f431a4591b0e23002bed805dc871a874dfed6b9a3994dce68a6df73e6739","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"2e6fca0024dd8a076a886d9ec031a936ea59ad878a25b944820495d92f8381dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"177459cba484e2f1e08872a3d2fdbca3162d9d43ca5ec9dc0c946835b55f74be","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"010eccc3ce4a7ea2e546f6e58cf18c891a50fd3e2a3089f07b3b844230d19a12","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"98fc7231d6c846a8ed19bdef026ddffe5e2182cc818be74899287421ad370a87","impliedFormat":1},{"version":"3a40b5d34e014017539acb92f04cf2bc0aa71e49efb33c66039df93be97842a1","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"79a85c64bf083c5f4dd7074e804d1000c0c47301b84d48417a224decd681be30","impliedFormat":1},{"version":"9f1e3a76d5f509b5579e567de522b402cb79e201c4f47dcd014451c0580b290d","impliedFormat":1},{"version":"4f1fd541f720030367b5d7ebfea7ae5f9edc8481422993b9a363f459c5412437","impliedFormat":1},{"version":"70f3f8b2dcaf7388f26731a59c79437813e3620b594903525a303cb2a7901016","impliedFormat":1},{"version":"62e8f884c3bc6dff6189b6e662ebe8b238a645938f2df7a97b8a82fca56773a4","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"57a0d1b3d59063d4af2d3f8aac27cfe3c20a0f5d1faf0f8598ccf0b779637939","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"93ecf87143cac7b9d05cffc1d6bdc075b7e4fdd48ff05f1fad85043f6ae678d3","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"6f200afcb82b3e9a54bed6db23f2edf2508cd266801257312c0f124b47f2bdb9","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"39338f84e8c4d0e3de7b3c4a7024fb3925f42100eed5cbe73be58902799dff4d","impliedFormat":1},{"version":"fbf83eb33bf5e329527add92acc65da59323876c702ddccf5f4bf1e848c92369","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"515318bc6e656f75e9e34db625316bfafbafd800dfb1642574af93735a24ad38","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"03b7804d69cecd66850abada858ed6d4a59001f8c228a9fe212306ee860a4ff6","impliedFormat":1},{"version":"5b26c4dd672d88336bb929787c9bfb55119e80ba89ec6dc923da1c063892843e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"987fd1f85dc36f4b2c927aa3db814ac6b452e970f4f55d24ed4ecbb7df09be00","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"b4769767f13a1692a66186e01c3aa186ff808d5ff72ed36eda8c37738fb2ac92","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"683edfc4f2b411ebe04729cb6dc09ddd26fbac2c57771a6d7c55964af776e176","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"e47f532d6e1617833f13a5b0710c0089d402c89c2f2b54f324e5a20e418d287a","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"7ec8d7d483f7394f9da611b10d3a0e402f76ff5c991261e6ce43a15f81ca4258","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"82c3cc48c692438e41b94d936b8acd75ca97b18c50fa1af8a0715eb9d07d18cd","impliedFormat":1},{"version":"045a210189ec63c5488410b33f9fca53d77d051599d0d6506d8048551399c5f3","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"632c45ccb4cdc2c3a80c7a36a63dd7763016e59cac5e07bfb3e37e3548957028","impliedFormat":1},{"version":"c9a2daf6cd1eb854cd5b9e424247c5e306692055738c2effd35f7871d942b76e","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"e50a7130339a951e6da9e968ed5521b0997a5b0479e148914087213839b5474c","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[[113,117],141,142,145,[161,167]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"referencedMap":[[65,1],[120,1],[121,2],[124,3],[122,3],[126,3],[129,4],[128,3],[127,3],[125,3],[123,5],[66,1],[67,6],[106,7],[104,8],[105,9],[107,10],[118,11],[108,12],[119,13],[94,14],[93,15],[96,16],[97,17],[89,18],[88,15],[95,19],[101,20],[102,21],[103,21],[100,1],[98,22],[99,23],[295,1],[231,24],[232,24],[233,25],[169,26],[234,27],[235,28],[236,29],[237,30],[238,31],[239,32],[240,33],[241,34],[242,35],[243,35],[244,36],[245,37],[246,1],[247,38],[248,39],[170,1],[168,1],[249,40],[250,41],[251,42],[294,43],[252,44],[253,45],[254,44],[255,46],[256,47],[258,48],[259,49],[260,49],[261,49],[262,50],[263,51],[264,52],[265,53],[266,54],[267,55],[268,55],[269,56],[270,1],[271,1],[272,57],[273,58],[274,59],[275,60],[276,61],[277,62],[278,63],[279,64],[280,65],[281,66],[282,67],[283,68],[284,69],[285,70],[286,71],[287,72],[288,73],[289,74],[290,75],[171,44],[172,1],[173,76],[174,77],[175,1],[176,78],[177,1],[222,79],[223,80],[224,81],[225,81],[226,82],[227,1],[228,27],[229,83],[230,80],[291,84],[292,85],[293,86],[69,1],[257,1],[135,87],[134,88],[131,1],[132,89],[133,90],[71,91],[68,92],[143,92],[72,1],[70,93],[130,94],[144,95],[73,96],[57,1],[50,97],[49,1],[47,1],[48,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[46,1],[196,98],[210,99],[193,100],[211,101],[220,102],[184,103],[185,104],[183,105],[219,106],[214,107],[218,108],[187,109],[197,110],[207,111],[186,112],[217,113],[181,114],[182,107],[188,110],[189,1],[195,115],[192,110],[179,116],[221,117],[212,118],[200,119],[199,110],[201,120],[204,121],[198,122],[202,123],[215,106],[190,124],[191,125],[205,126],[180,101],[209,127],[208,110],[194,125],[203,128],[206,129],[213,1],[178,1],[216,130],[136,131],[140,132],[137,133],[139,15],[138,15],[113,134],[115,135],[142,136],[166,136],[167,137],[117,138],[162,139],[163,140],[145,140],[161,139],[165,140],[164,140],[141,141],[114,142],[116,143],[112,144],[111,145],[110,146],[90,147],[91,148],[92,149],[87,15],[109,150],[60,1],[62,1],[63,1],[64,151],[61,1],[74,19],[77,152],[78,19],[79,19],[80,19],[85,153],[81,19],[82,19],[83,19],[84,19],[76,1],[86,154],[58,152],[75,1],[59,155],[51,1],[56,156],[54,157],[53,158],[55,1],[52,1],[154,19],[152,19],[149,1],[151,19],[153,19],[150,19],[155,19],[146,19],[160,159],[158,19],[159,19],[156,19],[147,19],[148,19],[157,19]],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/layout",
|
|
3
3
|
"description": "Webcomponent layout following open-wc recommendations",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "10.
|
|
5
|
+
"version": "10.3.3",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
@@ -63,9 +63,10 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@material/web": "^2.0.0",
|
|
66
|
-
"@operato/
|
|
67
|
-
"@operato/
|
|
68
|
-
"@operato/
|
|
66
|
+
"@operato/i18n": "^10.0.0",
|
|
67
|
+
"@operato/popup": "^10.3.3",
|
|
68
|
+
"@operato/shell": "^10.3.3",
|
|
69
|
+
"@operato/styles": "^10.3.3",
|
|
69
70
|
"@operato/utils": "^10.0.0",
|
|
70
71
|
"lit": "^3.1.2"
|
|
71
72
|
},
|
|
@@ -101,5 +102,5 @@
|
|
|
101
102
|
"prettier --write"
|
|
102
103
|
]
|
|
103
104
|
},
|
|
104
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "34848ab355ce7d7853071c45cda0eb278c719315"
|
|
105
106
|
}
|