@stoplight/ui-kit 3.0.0-beta.4 → 3.0.0-beta.40
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/AutoSizer/index.js +3 -2
- package/AutoSizer/index.js.map +1 -1
- package/CodeEditor/index.d.ts +2 -0
- package/CodeEditor/index.js +7 -5
- package/CodeEditor/index.js.map +1 -1
- package/CodeEditor/utils/highlightCode.js +2 -1
- package/CodeEditor/utils/highlightCode.js.map +1 -1
- package/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.d.ts +8 -0
- package/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.js +51 -0
- package/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.js.map +1 -0
- package/CodeViewer/components/BlockCodeViewer/ObservableSet.d.ts +5 -0
- package/CodeViewer/components/BlockCodeViewer/ObservableSet.js +24 -0
- package/CodeViewer/components/BlockCodeViewer/ObservableSet.js.map +1 -0
- package/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.d.ts +12 -0
- package/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.js +59 -0
- package/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.js.map +1 -0
- package/CodeViewer/components/BlockCodeViewer/consts.d.ts +1 -0
- package/{TableOfContents/types.js → CodeViewer/components/BlockCodeViewer/consts.js} +2 -1
- package/CodeViewer/components/BlockCodeViewer/consts.js.map +1 -0
- package/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.d.ts +7 -0
- package/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.js +29 -0
- package/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.js.map +1 -0
- package/CodeViewer/components/BlockCodeViewer/index.d.ts +2 -0
- package/CodeViewer/components/BlockCodeViewer/index.js +5 -0
- package/CodeViewer/components/BlockCodeViewer/index.js.map +1 -0
- package/CodeViewer/components/InlineCodeViewer.d.ts +5 -0
- package/CodeViewer/components/InlineCodeViewer.js +11 -0
- package/CodeViewer/components/InlineCodeViewer.js.map +1 -0
- package/CodeViewer/index.d.ts +1 -2
- package/CodeViewer/index.js +7 -16
- package/CodeViewer/index.js.map +1 -1
- package/CodeViewer/utils/astToReact.d.ts +3 -0
- package/CodeViewer/utils/astToReact.js +16 -0
- package/CodeViewer/utils/astToReact.js.map +1 -0
- package/CodeViewer/utils/lineNumberify.d.ts +2 -0
- package/CodeViewer/utils/lineNumberify.js +94 -0
- package/CodeViewer/utils/lineNumberify.js.map +1 -0
- package/CodeViewer/utils/parseCode.d.ts +2 -0
- package/CodeViewer/utils/parseCode.js +58 -0
- package/CodeViewer/utils/parseCode.js.map +1 -0
- package/Dropdown/Dropdown.js +2 -2
- package/Dropdown/Dropdown.js.map +1 -1
- package/FAIcon/index.js +3 -2
- package/FAIcon/index.js.map +1 -1
- package/FormButton/index.js +1 -1
- package/FormButton/index.js.map +1 -1
- package/FormError/index.js +2 -1
- package/FormError/index.js.map +1 -1
- package/FormInput/index.js +1 -1
- package/FormInput/index.js.map +1 -1
- package/ScrollContainer/index.js +3 -3
- package/ScrollContainer/index.js.map +1 -1
- package/ScrollList/index.js +12 -6
- package/ScrollList/index.js.map +1 -1
- package/SecretInput/index.js +1 -1
- package/SecretInput/index.js.map +1 -1
- package/SimpleTabs/Tab.js +3 -3
- package/SimpleTabs/Tab.js.map +1 -1
- package/SimpleTabs/TabList.js +3 -3
- package/SimpleTabs/TabList.js.map +1 -1
- package/SimpleTabs/TabPanel.js +3 -3
- package/SimpleTabs/TabPanel.js.map +1 -1
- package/TableOfContents/index.d.ts +61 -10
- package/TableOfContents/index.js +171 -62
- package/TableOfContents/index.js.map +1 -1
- package/ThemeContainer/index.js +4 -3
- package/ThemeContainer/index.js.map +1 -1
- package/_hooks/useIsMobile.js +2 -1
- package/_hooks/useIsMobile.js.map +1 -1
- package/_hooks/useValidateSchema.js +2 -1
- package/_hooks/useValidateSchema.js.map +1 -1
- package/classes.d.ts +3 -1
- package/classes.js +1 -1
- package/classes.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/index.js.map +1 -1
- package/package.json +10 -8
- package/styles/_blueprint.scss +4 -4
- package/styles/_components.scss +3 -0
- package/styles/blueprint/_variables.scss +3 -1
- package/styles/blueprint/select/blueprint-select.scss +8 -0
- package/styles/blueprint/select/components/_index.scss +6 -0
- package/styles/blueprint/select/components/omnibar/_omnibar.scss +63 -0
- package/styles/blueprint/select/components/select/_multi-select.scss +17 -0
- package/styles/blueprint/select/components/select/_select.scss +31 -0
- package/styles/blueprint/src/_reset.scss +43 -0
- package/styles/blueprint/src/_typography.scss +459 -0
- package/styles/blueprint/src/accessibility/_focus-states.scss +17 -0
- package/styles/blueprint/src/blueprint-hi-contrast.scss +22 -0
- package/styles/blueprint/src/blueprint.scss +16 -0
- package/styles/blueprint/src/common/_color-aliases.scss +43 -0
- package/styles/blueprint/src/common/_colors.scss +116 -0
- package/styles/blueprint/src/common/_flex.scss +49 -0
- package/styles/blueprint/src/common/_mixins.scss +128 -0
- package/styles/blueprint/src/common/_react-transition.scss +117 -0
- package/styles/blueprint/src/common/_variables.scss +131 -0
- package/styles/blueprint/src/components/_index.scss +38 -0
- package/styles/blueprint/src/components/alert/_alert.scss +33 -0
- package/styles/blueprint/src/components/breadcrumbs/_breadcrumbs.scss +142 -0
- package/styles/blueprint/src/components/button/_button-group.scss +240 -0
- package/styles/blueprint/src/components/button/_button.scss +206 -0
- package/styles/blueprint/src/components/button/_common.scss +507 -0
- package/styles/blueprint/src/components/callout/_callout.scss +99 -0
- package/styles/blueprint/src/components/card/_card.scss +91 -0
- package/styles/blueprint/src/components/collapse/_collapse.scss +20 -0
- package/styles/blueprint/src/components/context-menu/_context-menu.scss +10 -0
- package/styles/blueprint/src/components/dialog/_dialog.scss +146 -0
- package/styles/blueprint/src/components/divider/_divider.scss +19 -0
- package/styles/blueprint/src/components/drawer/_drawer.scss +232 -0
- package/styles/blueprint/src/components/editable-text/_editable-text.scss +156 -0
- package/styles/blueprint/src/components/forms/_common.scss +239 -0
- package/styles/blueprint/src/components/forms/_control-group.scss +276 -0
- package/styles/blueprint/src/components/forms/_controls.scss +526 -0
- package/styles/blueprint/src/components/forms/_file-input.scss +155 -0
- package/styles/blueprint/src/components/forms/_form-group.scss +111 -0
- package/styles/blueprint/src/components/forms/_index.scss +20 -0
- package/styles/blueprint/src/components/forms/_input-group.scss +247 -0
- package/styles/blueprint/src/components/forms/_input.scss +115 -0
- package/styles/blueprint/src/components/forms/_label.scss +114 -0
- package/styles/blueprint/src/components/forms/_numeric-input.scss +40 -0
- package/styles/blueprint/src/components/hotkeys/_hotkeys.scss +50 -0
- package/styles/blueprint/src/components/html-select/_common.scss +52 -0
- package/styles/blueprint/src/components/html-select/_html-select.scss +104 -0
- package/styles/blueprint/src/components/html-table/_html-table.scss +208 -0
- package/styles/blueprint/src/components/icon/_icon.scss +79 -0
- package/styles/blueprint/src/components/menu/_common.scss +172 -0
- package/styles/blueprint/src/components/menu/_menu.scss +197 -0
- package/styles/blueprint/src/components/menu/_submenu.scss +41 -0
- package/styles/blueprint/src/components/navbar/_navbar.scss +117 -0
- package/styles/blueprint/src/components/non-ideal-state/_non-ideal-state.scss +43 -0
- package/styles/blueprint/src/components/overflow-list/_overflow-list.scss +13 -0
- package/styles/blueprint/src/components/overlay/_overlay.scss +94 -0
- package/styles/blueprint/src/components/panel-stack/_panel-stack.scss +103 -0
- package/styles/blueprint/src/components/popover/_common.scss +171 -0
- package/styles/blueprint/src/components/popover/_popover.scss +127 -0
- package/styles/blueprint/src/components/portal/_portal.scss +15 -0
- package/styles/blueprint/src/components/progress-bar/_common.scss +9 -0
- package/styles/blueprint/src/components/progress-bar/_progress-bar.scss +98 -0
- package/styles/blueprint/src/components/skeleton/_common.scss +8 -0
- package/styles/blueprint/src/components/skeleton/_skeleton.scss +64 -0
- package/styles/blueprint/src/components/slider/_common.scss +48 -0
- package/styles/blueprint/src/components/slider/_slider.scss +216 -0
- package/styles/blueprint/src/components/spinner/_spinner.scss +65 -0
- package/styles/blueprint/src/components/tabs/_tabs.scss +199 -0
- package/styles/blueprint/src/components/tag/_common.scss +202 -0
- package/styles/blueprint/src/components/tag/_tag.scss +75 -0
- package/styles/blueprint/src/components/tag-input/_tag-input.scss +165 -0
- package/styles/blueprint/src/components/toast/_toast.scss +203 -0
- package/styles/blueprint/src/components/tooltip/_common.scss +11 -0
- package/styles/blueprint/src/components/tooltip/_tooltip.scss +61 -0
- package/styles/blueprint/src/components/tree/_tree.scss +194 -0
- package/styles/components/Code/_base.scss +104 -25
- package/styles/components/TableOfContents/_base.scss +50 -43
- package/styles/tailwind/_base.scss +15423 -10455
- package/styles/tailwind/tailwind.config.js +1 -0
- package/CodeViewer/types.d.ts +0 -9
- package/CodeViewer/types.js +0 -3
- package/CodeViewer/types.js.map +0 -1
- package/TableOfContents/types.d.ts +0 -14
- package/TableOfContents/types.js.map +0 -1
- package/withErrorBoundary.d.ts +0 -104
- package/withErrorBoundary.js +0 -51
- package/withErrorBoundary.js.map +0 -1
package/CodeViewer/types.d.ts
DELETED
package/CodeViewer/types.js
DELETED
package/CodeViewer/types.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/CodeViewer/types.ts"],"names":[],"mappings":""}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { IconName } from '@blueprintjs/icons';
|
|
2
|
-
export interface IContentsNode {
|
|
3
|
-
name: string;
|
|
4
|
-
depth: number;
|
|
5
|
-
isActive?: boolean;
|
|
6
|
-
href?: string;
|
|
7
|
-
meta?: string;
|
|
8
|
-
type?: 'divider' | 'group' | 'item';
|
|
9
|
-
icon?: IconName;
|
|
10
|
-
}
|
|
11
|
-
export declare type IconMapType = 'group' | 'divider' | 'item';
|
|
12
|
-
export declare type NodeIconMapping = {
|
|
13
|
-
[type in IconMapType]?: IconName;
|
|
14
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/TableOfContents/types.ts"],"names":[],"mappings":""}
|
package/withErrorBoundary.d.ts
DELETED
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export declare type FallbackComponent = React.ComponentType<{
|
|
3
|
-
error: Error | null;
|
|
4
|
-
}>;
|
|
5
|
-
export interface IErrorBoundary {
|
|
6
|
-
FallbackComponent?: FallbackComponent;
|
|
7
|
-
}
|
|
8
|
-
export declare function withErrorBoundary<T extends IErrorBoundary>(WrappedComponent: React.ComponentType<Omit<T, 'FallbackComponent'>>, props?: Array<keyof T>, displayName?: string): {
|
|
9
|
-
new (props: Readonly<T>): {
|
|
10
|
-
state: {
|
|
11
|
-
error: null;
|
|
12
|
-
};
|
|
13
|
-
componentDidUpdate(prevProps: Readonly<T>): void;
|
|
14
|
-
render(): JSX.Element;
|
|
15
|
-
context: any;
|
|
16
|
-
setState<K extends "error">(state: {
|
|
17
|
-
error: Error | null;
|
|
18
|
-
} | ((prevState: Readonly<{
|
|
19
|
-
error: Error | null;
|
|
20
|
-
}>, props: Readonly<T>) => {
|
|
21
|
-
error: Error | null;
|
|
22
|
-
} | Pick<{
|
|
23
|
-
error: Error | null;
|
|
24
|
-
}, K> | null) | Pick<{
|
|
25
|
-
error: Error | null;
|
|
26
|
-
}, K> | null, callback?: (() => void) | undefined): void;
|
|
27
|
-
forceUpdate(callback?: (() => void) | undefined): void;
|
|
28
|
-
readonly props: Readonly<T> & Readonly<{
|
|
29
|
-
children?: React.ReactNode;
|
|
30
|
-
}>;
|
|
31
|
-
refs: {
|
|
32
|
-
[key: string]: React.ReactInstance;
|
|
33
|
-
};
|
|
34
|
-
componentDidMount?(): void;
|
|
35
|
-
shouldComponentUpdate?(nextProps: Readonly<T>, nextState: Readonly<{
|
|
36
|
-
error: Error | null;
|
|
37
|
-
}>, nextContext: any): boolean;
|
|
38
|
-
componentWillUnmount?(): void;
|
|
39
|
-
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
40
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<T>, prevState: Readonly<{
|
|
41
|
-
error: Error | null;
|
|
42
|
-
}>): any;
|
|
43
|
-
componentWillMount?(): void;
|
|
44
|
-
UNSAFE_componentWillMount?(): void;
|
|
45
|
-
componentWillReceiveProps?(nextProps: Readonly<T>, nextContext: any): void;
|
|
46
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<T>, nextContext: any): void;
|
|
47
|
-
componentWillUpdate?(nextProps: Readonly<T>, nextState: Readonly<{
|
|
48
|
-
error: Error | null;
|
|
49
|
-
}>, nextContext: any): void;
|
|
50
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<T>, nextState: Readonly<{
|
|
51
|
-
error: Error | null;
|
|
52
|
-
}>, nextContext: any): void;
|
|
53
|
-
};
|
|
54
|
-
new (props: T, context?: any): {
|
|
55
|
-
state: {
|
|
56
|
-
error: null;
|
|
57
|
-
};
|
|
58
|
-
componentDidUpdate(prevProps: Readonly<T>): void;
|
|
59
|
-
render(): JSX.Element;
|
|
60
|
-
context: any;
|
|
61
|
-
setState<K extends "error">(state: {
|
|
62
|
-
error: Error | null;
|
|
63
|
-
} | ((prevState: Readonly<{
|
|
64
|
-
error: Error | null;
|
|
65
|
-
}>, props: Readonly<T>) => {
|
|
66
|
-
error: Error | null;
|
|
67
|
-
} | Pick<{
|
|
68
|
-
error: Error | null;
|
|
69
|
-
}, K> | null) | Pick<{
|
|
70
|
-
error: Error | null;
|
|
71
|
-
}, K> | null, callback?: (() => void) | undefined): void;
|
|
72
|
-
forceUpdate(callback?: (() => void) | undefined): void;
|
|
73
|
-
readonly props: Readonly<T> & Readonly<{
|
|
74
|
-
children?: React.ReactNode;
|
|
75
|
-
}>;
|
|
76
|
-
refs: {
|
|
77
|
-
[key: string]: React.ReactInstance;
|
|
78
|
-
};
|
|
79
|
-
componentDidMount?(): void;
|
|
80
|
-
shouldComponentUpdate?(nextProps: Readonly<T>, nextState: Readonly<{
|
|
81
|
-
error: Error | null;
|
|
82
|
-
}>, nextContext: any): boolean;
|
|
83
|
-
componentWillUnmount?(): void;
|
|
84
|
-
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
85
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<T>, prevState: Readonly<{
|
|
86
|
-
error: Error | null;
|
|
87
|
-
}>): any;
|
|
88
|
-
componentWillMount?(): void;
|
|
89
|
-
UNSAFE_componentWillMount?(): void;
|
|
90
|
-
componentWillReceiveProps?(nextProps: Readonly<T>, nextContext: any): void;
|
|
91
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<T>, nextContext: any): void;
|
|
92
|
-
componentWillUpdate?(nextProps: Readonly<T>, nextState: Readonly<{
|
|
93
|
-
error: Error | null;
|
|
94
|
-
}>, nextContext: any): void;
|
|
95
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<T>, nextState: Readonly<{
|
|
96
|
-
error: Error | null;
|
|
97
|
-
}>, nextContext: any): void;
|
|
98
|
-
};
|
|
99
|
-
displayName: string | undefined;
|
|
100
|
-
getDerivedStateFromError(error: Error): {
|
|
101
|
-
error: Error;
|
|
102
|
-
};
|
|
103
|
-
contextType?: React.Context<any> | undefined;
|
|
104
|
-
};
|
package/withErrorBoundary.js
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
const lodash_1 = require("lodash");
|
|
5
|
-
const React = require("react");
|
|
6
|
-
const FallbackComponent = ({ error }) => {
|
|
7
|
-
return (React.createElement("div", { className: "p-4" },
|
|
8
|
-
React.createElement("b", null, "Error"),
|
|
9
|
-
error && `: ${error.message}`));
|
|
10
|
-
};
|
|
11
|
-
function withErrorBoundary(WrappedComponent, props, displayName) {
|
|
12
|
-
var _a;
|
|
13
|
-
return _a = class ErrorBoundary extends React.PureComponent {
|
|
14
|
-
constructor() {
|
|
15
|
-
super(...arguments);
|
|
16
|
-
this.state = {
|
|
17
|
-
error: null,
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
componentDidUpdate(prevProps) {
|
|
21
|
-
if (this.state.error !== null) {
|
|
22
|
-
if (!props || !props.length) {
|
|
23
|
-
if (!lodash_1.isEqual(this.props, prevProps)) {
|
|
24
|
-
this.setState({ error: null });
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
else {
|
|
28
|
-
for (const prop of props) {
|
|
29
|
-
if (!lodash_1.isEqual(this.props[prop], prevProps[prop])) {
|
|
30
|
-
this.setState({ error: null });
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
static getDerivedStateFromError(error) {
|
|
37
|
-
return { error };
|
|
38
|
-
}
|
|
39
|
-
render() {
|
|
40
|
-
const _a = this.props, { FallbackComponent: Fallback = FallbackComponent } = _a, props = tslib_1.__rest(_a, ["FallbackComponent"]);
|
|
41
|
-
if (this.state.error) {
|
|
42
|
-
return React.createElement(Fallback, { error: this.state.error });
|
|
43
|
-
}
|
|
44
|
-
return React.createElement(WrappedComponent, Object.assign({}, props));
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
_a.displayName = displayName,
|
|
48
|
-
_a;
|
|
49
|
-
}
|
|
50
|
-
exports.withErrorBoundary = withErrorBoundary;
|
|
51
|
-
//# sourceMappingURL=withErrorBoundary.js.map
|
package/withErrorBoundary.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"withErrorBoundary.js","sourceRoot":"","sources":["../src/withErrorBoundary.tsx"],"names":[],"mappings":";;;AAAA,mCAAiC;AACjC,+BAA+B;AAE/B,MAAM,iBAAiB,GAAsB,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE;IACzD,OAAO,CACL,6BAAK,SAAS,EAAC,KAAK;QAClB,uCAAY;QACX,KAAK,IAAI,KAAK,KAAK,CAAC,OAAO,EAAE,CAC1B,CACP,CAAC;AACJ,CAAC,CAAC;AAQF,SAAgB,iBAAiB,CAC/B,gBAAmE,EACnE,KAAsB,EACtB,WAAoB;;IAEpB,YAAO,MAAM,aAAc,SAAQ,KAAK,CAAC,aAAyC;YAA3E;;gBACE,UAAK,GAAG;oBACb,KAAK,EAAE,IAAI;iBACZ,CAAC;YAiCJ,CAAC;YA7BQ,kBAAkB,CAAC,SAAsB;gBAC9C,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,KAAK,IAAI,EAAE;oBAC7B,IAAI,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE;wBAC3B,IAAI,CAAC,gBAAO,CAAC,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,EAAE;4BACnC,IAAI,CAAC,QAAQ,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;yBAChC;qBACF;yBAAM;wBACL,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE;4BACxB,IAAI,CAAC,gBAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC,EAAE;gCAC/C,IAAI,CAAC,QAAQ,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;6BAChC;yBACF;qBACF;iBACF;YACH,CAAC;YAGM,MAAM,CAAC,wBAAwB,CAAC,KAAY;gBACjD,OAAO,EAAE,KAAK,EAAE,CAAC;YACnB,CAAC;YAEM,MAAM;gBACX,MAAM,eAA0E,EAA1E,EAAE,iBAAiB,EAAE,QAAQ,GAAG,iBAAiB,OAAyB,EAAvB,iDAAuB,CAAC;gBACjF,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE;oBACpB,OAAO,oBAAC,QAAQ,IAAC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,GAAI,CAAC;iBAC9C;gBAED,OAAO,oBAAC,gBAAgB,oBAAK,KAAK,EAAI,CAAC;YACzC,CAAC;SACF;QA/Be,cAAW,GAAG,WAAY;WA+BxC;AACJ,CAAC;AA1CD,8CA0CC"}
|